/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ================= Heading ================= */
.tittle-heading{
    text-align: center;
    padding-bottom: 30px;
}
.tittle-heading .why-badge {
    display: inline-block;
    background: #f484231c;
    color: #dbad1a;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 18px;
}

.tittle-heading h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #053120;
}

.tittle-heading h2 span {
    color: #dbad1a;
}


/* ================= PROMO TOP BAR ================= */
.promo-bar {
    background: linear-gradient(20deg, #053120, #dbad1a);
    padding: 7px 0;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.promo-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.promo-btn {
    background: #ffffff;
    color: #053120;
    padding: 5px 14px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.promo-btn:hover {
    background: #f1f1f1;
    color: #0f9d58;
}

/* ================= NAVBAR ================= */
.navbar {
    background: #ffffff;
}

.navbar-brand img {
    max-height: 55px;
}

.nav-link {
    font-weight: 500;
    color: #333333 !important;
    padding: 8px 12px;
}

.nav-link:hover {
    color: #dbad1a !important;
}

.nav-link.active {
    color: #dbad1a !important;
}

/* ================= DROPDOWN MENU ================= */
.services-dropdown {
    position: relative;
}

.custom-dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    border: none;
    display: block;
    z-index: 1000;
}

/* Show dropdown on hover */
.services-dropdown:hover .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.custom-dropdown .dropdown-item {
    padding: 10px 20px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.custom-dropdown .dropdown-item:hover {
    background: #dbad1a;
    color: #fff;
}

/* Rotate arrow */
.services-dropdown:hover i {
    transform: rotate(180deg);
}

.services-dropdown i {
    transition: transform 0.3s ease;
}


/* ================= FREE SIGNUP BUTTON ================= */
.btn-border {
    position: relative;
    padding: 8px 22px;
    border-radius: 50px;
    background: #053120;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #dbad1a;
    display: inline-block;
    white-space: nowrap;
}

.btn-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 2px solid #dbad1a;
    animation: borderRun 2s linear infinite;
}

@keyframes borderRun {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    50% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 0 0 100%);
    }
}

.btn-border:hover {
    background: transparent;
    color: #053120;
}

/* ================= NAVBAR BUTTON ALIGNMENT ================= */
.navbar .btn-border {
    margin-left: 10px;
}

/* ================= STICKY NAVBAR ================= */
.navbar {
    position: relative;
    transition: all 0.4s ease;
}

/* Sticky state */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    animation: stickySlide 0.4s ease forwards;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Slide animation */
@keyframes stickySlide {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Body spacing to prevent jump */
body.has-sticky-nav {
    padding-top: 70px; /* navbar height */
}


/* ================= OFFCANVAS (MOBILE MENU) ================= */
.offcanvas {
    max-width: 75%;
}

.offcanvas-header img {
    height: 35px;
}

.offcanvas-body .nav-link {
    font-size: 16px;
    padding: 10px 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {

    /* Hide top bar */
    .top-bar {
        display: none;
    }

    /* Center menu items in mobile */
    .navbar-nav {
        text-align: left;
    }

    /* Button spacing in mobile menu */
    .navbar .btn-border {
        margin-top: 10px;
    }
}


/* ================================
   HERO  Section Code
================================ */
.mobile-hero-slider{
    padding: 20px 0px;
}
.hero-wrapper {
    position: relative;
    overflow: hidden;
}



/* ================================
   OWL NAVIGATION
================================ */
.nav-btn {
    color: #fff;
    font-size: 31px;
    
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
}

/* .nav-btn:hover {
    background: #f48323;
} */

.owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.owl-nav button {
    background: none !important;
    border: none !important;
}

.nav-btn{
        color: #dbad1a;
    }
.banner-img{
    max-height: 450px;
}

.hero-mobile-section{
    border-top: 1px solid #ececec;
}

/* ================================
   RESPONSIVE DESIGN
================================ */

/* Tablet */
@media (max-width: 991px) {
    .owl-nav {
        top: 40%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .nav-btn {
        
        line-height: 45px;
        font-size: 25px;
    }

}


/* ------------------------------------------- */
/* ================= CONTACT SECTION ================= */

.contact-section{
    background:#f5f5f5;
    
    font-family:Arial, sans-serif;
}

.contact-wrapper{
    min-height:650px;
}

/* LEFT SIDE */
.contact-left{
    background:#f5f5f5;

    height:100%;
}

.contact-title{
    font-size:30px;
    font-weight:800;
    color:#053120;
    margin-bottom:20px;
}

.contact-text{
    color:#7d7d7d;
    font-size:16px;
    line-height:28px;
    max-width:420px;
    margin-bottom:50px;
}

/* INPUT */
.custom-input{
    border:none;
    border-bottom:2px solid #e1e1e1;
    border-radius:0;
    background:transparent;
    padding:14px 0;
    font-size:15px;
    color:#111;
    box-shadow:none !important;
}

.custom-input:focus{
    border-color:#dbad1a;
    background:transparent;
}

textarea.custom-input{
    resize:none;
}

/* BUTTON */
.send-btn{
    width:100%;
    max-width:320px;
    height:55px;
    border:none;
    background:#053120;
    color:#fff;
    letter-spacing:5px;
    font-size:13px;
    font-weight:700;
    transition:0.3s;
    border-radius: 50px;
}

.send-btn:hover{
    background:#fff;
    border: 1px solid #053120;
    color:#053120;
}

/* RIGHT SIDE */
.contact-right{
    position:relative;
    height:100%;
    min-height:650px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* BLACK BOX */
.info-box{
    background:#053120;
    color:#fff;
    width:100%;
    max-width:520px;
    padding:30px 40px;
    position:relative;
    z-index:5;
}

/* YELLOW SHAPES */
.yellow-top{
    position:absolute;
    top:50px;
    right:0;
    width:100px;
    height:100px;
    background:#dbad1a;
}

.yellow-bottom{
    position:absolute;
    bottom:50px;
    right:0;
    width:100px;
    height:100px;
    background:#dbad1a;
}



/* INFO */
.info-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:45px;
}

.info-item{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:35px;
}

.info-item i{
    font-size:24px;
    color:#fff;
    min-width:28px;
}

.info-item span{
    font-size:16px;
    color:#d5d5d5;
}

/* SOCIAL */
.social-icons{
    margin-top:50px;
    display:flex;
    gap:20px;
}

.social-icons a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:#dbad1a;
    color:#111;
    border-color:#dbad1a;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .contact-left{
        padding:0px 20px;
    }

    .contact-title{
        font-size:28px;
    }

    .info-box{
        max-width:100%;
        margin:40px 20px;
        padding:60px 35px;
    }

    .contact-right{
        min-height:auto;
        padding:40px 0;
    }

    .yellow-top{
        width:120px;
        height:120px;
    }

    .yellow-bottom{
        width:120px;
        height:120px;
    }

   
}

@media(max-width:576px){

    .contact-left{
        padding:0px 20px;
    }

    .contact-title{
        font-size:20px;
    }

    .info-title{
        font-size:19px;
    }

    .info-item{
        gap:14px;
    }

    .info-item span{
        font-size:14px;
    }

    .send-btn{
        max-width:100%;
    }

    .yellow-top,
    .yellow-bottom{
        width:90px;
        height:90px;
    }

    .yellow-small{
        width:25px;
        height:25px;
    }
}


/* ================= PROCESS SECTION ================= */

.index-process-section{
    background: #fff;
    padding:20px 0;
    
}

/* TOP */
.index-process-top{
    margin-bottom:50px;
    gap:40px;
}

.index-process-heading{
    max-width:480px;
}

.index-process-subtitle{
    display:flex;
    align-items:center;
    gap:10px;
    color:#bfc7ff;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:18px;
}

.index-process-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#0d8cff;
    display:inline-block;
}

.index-process-heading h2{
    color:#fff;
    font-size:58px;
    line-height:1.1;
    font-weight:700;
    margin:0;
}

.index-process-line{
    flex:1;
    height:1px;
    background:rgba(255,255,255,0.3);
    min-width:200px;
}

/* CARDS */
.index-process-card{
    background:#053120;
    border-radius:28px;
    padding:20px 28px;
    
    display:flex;
    flex-direction:column;
    transition:0.4s;
}

.index-process-card:hover{
    transform:translateY(-8px);
    
}

.index-process-card h3{
    color:#ffffff;
    font-size:38px;
    font-weight:500;
    margin-bottom:20px;
}

.index-process-card h4{
    color:#fff;
    font-size:22px;
    line-height:1.4;
    font-weight:600;
   
}

.index-process-card p{
    color:#d3d7ff;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

/* BOTTOM */
.index-process-bottom{
    margin-top:20px;
    background:#053120;
    border-radius:28px;
    padding:18px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

/* USERS */
.index-process-users{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.index-process-images{
    display:flex;
    align-items:center;
}

.index-process-images img{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;
    margin-left:-12px;
}

.index-process-images img:first-child{
    margin-left:0;
}

.index-process-users p{
    color:#fff;
    font-size:20px;
    margin:0;
}

.index-process-users span{
    font-weight:700;
}

/* BUTTON */
.index-process-btn{
    background:#fff;
    color:#053120;
    padding:10px 28px 10px 12px;
    border-radius:60px;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
    font-weight:600;
    transition:0.4s;
}

.index-process-btn span{
    width:55px;
    height:55px;
    background:#dbad1a;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
}

.index-process-btn:hover{
    transform:translateY(-3px);
    color:#0c1c73;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .index-process-heading h2{
        font-size:44px;
    }

    .index-process-card{
        min-height:auto;
    }

    .index-process-card h4{
        margin-bottom:50px;
    }

    .index-process-bottom{
        justify-content:center;
        text-align:center;
    }

    .index-process-users{
        justify-content:center;
    }
}

@media(max-width:576px){

    .index-process-section{
        padding:70px 0;
    }

    .index-process-heading h2{
        font-size:36px;
    }

    .index-process-card{
        padding:35px 24px;
        border-radius:22px;
    }

    .index-process-card h3{
        font-size:30px;
    }

    .index-process-card h4{
        font-size:20px;
        margin-bottom:40px;
    }

    .index-process-users p{
        font-size:16px;
        line-height:1.6;
    }

    .index-process-btn{
        width:100%;
        justify-content:center;
        font-size:18px;
    }
}

/* ================= CLINT SECTION ================= */
.client-section{
    background:#dbad1a;
    overflow:hidden;
}

.logo-slider{
    width:100%;
    overflow:hidden;
}

.logo-track{
    display:flex;
    animation: scroll 25s linear infinite;
    width:max-content;
}

.logo-slider:hover .logo-track{
    animation-play-state: paused;
}

.logo-item{
    flex:0 0 auto;
    width:250px;
    padding:15px;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* SAME HEIGHT FOR ALL IMAGES */
.logo-item img{
    height:110px;          /* Fixed Same Height */
    width:200px;
    object-fit:contain;
    background:#fff;
    padding:15px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

/* Animation */
@keyframes scroll{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-50%); }
}

/* Responsive */
@media(max-width:768px){
    .logo-item{
        width:250px;
    }
    .logo-item img{
        height:110px;
    }
}

@media(max-width:480px){
    .logo-item{
        width:250px;
    }
    .logo-item img{
        height:110px;
    }
}

/* ================= Messaging Platform SECTION ================= */

.omni-section{
    background:#ffffff;
}

.omni-badge{
    background:#cde3d9;
    color:#0f5132;
    font-weight:600;
    letter-spacing:1px;
    padding:8px 15px;
    font-size:14px;
}

.omni-title{
    font-size:35px;
    font-weight:700;
    color:#000;
    line-height:1.2;
}

.omni-text{
    font-size:18px;
    color:#555;
    line-height:1.7;
}

.omni-btn{
    background:#053120;
    color:#fff;
    padding:12px 28px;
    font-size:18px;
    font-weight:600;
    border-radius:10px;
    transition:0.3s ease;
}

.omni-btn:hover{
    background:#fff;
    color:#053120;
    border: 1px solid #053120;
}

.omni-img{
    max-width:100%;
    border-radius:20px;
    /* box-shadow:0 10px 30px rgba(0,0,0,0.08); */
}

/* Responsive */
@media (max-width:991px){
    .omni-title{
        font-size:26px;
    }
    .omni-text{
        font-size:16px;
    }
}

@media (max-width:576px){
    .omni-title{
        font-size:18px;
    }
    .omni-btn{
        width:100%;
        text-align:center;
    }
}

/* ================= ABOUT SECTION ================= */
.about-section {
    background: #ffffff;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT */
.about-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.circle-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 2px dashed #ddd;
}

/* MAIN IMAGE (STATIC) */
.main-circle {

    overflow: hidden;

}

.main-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* RIGHT SIDE */
.about-right {
    flex: 1;
}

.about-tag {
    color: #ff6a00;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
}

.about-right h2 {
    font-size: 36px;
    margin: 10px 0;
}

.about-text {
    margin: 15px 0 20px;
    color: #555;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 8px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 25px 0;
}

.about-stats h3 {
    font-size: 32px;
    color: #ff6a00;
}

.about-btn {
    padding: 14px 28px;
    background: #ff6a00;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 991px) {
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-right {
        max-width: 100%;
    }

    .about-right h2 {
        font-size: 30px;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }

    .about-stats div {
        min-width: 120px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    /* Circle resize */
    .circle-wrapper {
        width: 280px;
        height: 280px;
    }

    

    .orbit {
        width: 35px;
        height: 35px;
    }

    /* Text sizing */
    .about-right h2 {
        font-size: 26px;
    }

    .about-text {
        font-size: 14px;
    }

    .about-right h4 {
        font-size: 18px;
    }

    /* List alignment */
    .about-list {
        text-align: left;
        display: inline-block;
    }

    /* Stats stacked nicely */
    .about-stats {
        gap: 20px;
    }

    .about-stats h3 {
        font-size: 24px;
    }

    .about-stats span {
        font-size: 13px;
    }

    /* Button full width */
    .about-btn {
        display: inline-block;
        width: 100%;
        max-width: 260px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .circle-wrapper {
        width: 240px;
        height: 240px;
    }

    .orbit {
        width: 30px;
        height: 30px;
    }
}



/* ================= SERVICES SECTION ================= */

.services-section{
    background:#f8f9fa;
}

/* Card */
.service-card{
    background:#fff;
    border-radius:20px;
    transition:all 0.4s ease;
    position:relative;
    overflow:hidden;
}

.service-card:hover{
    transform:translateY(-8px);
    
}

/* Image Wrapper */
.service-img-wrapper{
    position:relative;
    height:320px;
}

.service-img-wrapper img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:contain;
    transition:opacity 0.5s ease, transform 0.5s ease;
}

/* Default Image */
.img-hover{
    opacity:0;
}

/* Hover Image Effect */
.service-card:hover .img-default{
    opacity:0;
    transform:scale(0.95);
}

.service-card:hover .img-hover{
    opacity:1;
    transform:scale(1);
}

/* Title */
.service-title{
    font-weight:600;
    font-size:20px;
    color: #053120 !important;
}

/* Button */
.learn-btn{
    text-decoration: none;
    color:#dbad1a;
    font-weight:600;
    transition:all 0.3s ease;
}

.learn-btn:hover{
    color:#053120;
}

/* Responsive */
@media(max-width:768px){
    .service-img-wrapper{
        height:160px;
    }
    .service-title{
        font-size:18px;
    }
}

@media(max-width:576px){
    .service-card{
        padding:25px 15px;
    }
}

/* ================= COUNTER SECTION ================= */
.stats-section {
  background: #f5f5f5;
}

.main-title {
  color: #053120;
  font-size: 2.2rem;
}

.sub-title {
  color: #6c757d;
  font-size: 1.1rem;
}

/* STAT BOX */
.stat-box {
  border-left: 3px solid #dbad1a;
  padding-left: 15px;
  text-align: left;
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #053120;
}

.stat-box p {
  color: #6c757d;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-title {
    font-size: 1.6rem;
  }

  .stat-box {
    text-align: center;
    border-left: none;
    border-top: 3px solid #1f7a5c;
    padding-top: 10px;
  }
}

/* ================= integration ================= */
.integration-section{
    background: #fdf3d35e;
}

/* Image */
.integration-img-wrapper{
    border-radius:30px;
    overflow:hidden;
}

.integration-img{
    border-radius:30px;
    width:100%;
    transition:transform 0.4s ease;
    max-height: 450px;
}

.integration-img:hover{
    transform:scale(1.05);
}

/* Badge */
.integration-badge{
    background:#a8cbb8;
    color:#0f5132;
    font-weight:600;
    padding:8px 18px;
    font-size:14px;
    letter-spacing:1px;
}

/* Title */
.integration-title{
    font-size:40px;
    font-weight:700;
    color:#000;
    line-height:1.2;
}

/* Subtitle */
.integration-subtitle{
    color:#1b6d55;
    font-weight:600;
}

/* Text */
.integration-text{
    color:#333;
    font-size:17px;
    line-height:1.7;
}

/* Button */
.integration-btn{
    background:#053120;
    color:#fff;
    padding:12px 30px;
    font-size:18px;
    font-weight:600;
    border-radius:10px;
    transition:all 0.3s ease;
}

.integration-btn:hover{
    background:#fff;
    color:#053120;
    border: 1px solid #053120;
}

/* Responsive */
@media(max-width:991px){
    .integration-title{
        font-size:32px;
    }
}

@media(max-width:576px){
    .integration-title{
        font-size:26px;
    }
    .integration-btn{
        width:100%;
        text-align:center;
    }
}

/* ================= API SECTION ================= */
.api-section {
  background: linear-gradient(135deg, #dbad1a, #dbad1a);
  color: #fff;
}

/* CODE BOX */
.code-box {
  background: #000;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #555;
}

/* TABS */
.code-tabs span {
  color: #bbb;
  margin-right: 10px;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 6px;
}

.code-tabs span.active {
  background: #333;
  color: #fff;
}

/* CODE */
pre {
  color: #00e6a7;
  font-size: 0.9rem;
  white-space: pre-wrap;
  min-height: 180px;
}

/* BUTTON */
.api-btn {
  background: #053120;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  transition: all 1s ease;
}

.api-btn:hover {
  background: #fff;
  color: #053120;
  border: 1px solid #053120;
  
}

/* RESPONSIVE */
@media (max-width: 768px) {
  pre {
    font-size: 0.75rem;
  }
}


/* =================== Why Whatsapp ============ */
.why-whatsapp-section{
    background:#f4f7fc;
    padding:80px 0;
    overflow:hidden;
}

/* Heading */

.why-badge{
    display:inline-block;
    padding:10px 24px;
    background:#0d6efd12;
    color:#0d6efd;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
    letter-spacing:.5px;
}

.tittle-heading h2{
    font-size:30px;
    font-weight:800;
    color:#111;
    line-height:1.4;
    max-width:800px;
    margin:auto;
}



/* Card */

.stats-box{
    background:#fff;
    border-radius:28px;
    padding:35px 30px;
    position:relative;
    overflow:hidden;
    height:100%;
    border:1px solid #ececec;
    transition:all .4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.stats-box::before{
    content:"";
    position:absolute;
    top:-50px;
    right:-50px;
    width:140px;
    height:140px;
    background:#0d6efd08;
    border-radius:50%;
}

.stats-box:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,0.08);
}



.active-box h3,
.active-box p,
.active-box .stats-icon,
.active-box .arrow-icon{
    color:#fff;
}

/* Top */

.stats-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:35px;
}

/* Icon */

.stats-icon{
    width:75px;
    height:75px;
    background:#f4f7fc;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#dbad1a;
    transition:.3s;
}

.arrow-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f4f7fc;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#dbad1a;
    font-size:14px;
}

/* Text */

.stats-box h3{
    font-size:30px;
    font-weight:800;
    margin-bottom:8px;
    color:#053120;
}

.stats-box p{
    margin:0;
    color:#666;
    font-size:18px;
    font-weight:500;
}

/* Large */

@media(max-width:1399px){

.tittle-heading h2{
    font-size:25px;
}

.stats-box h3{
    font-size:25px;
}

}

/* Tablet */

@media(max-width:991px){

.why-whatsapp-section{
    padding:70px 0;
}

.tittle-heading h2{
    font-size:20px;
}

.stats-box{
    padding:30px 22px;
}

.stats-box h3{
    font-size:20px;
}

.stats-box p{
    font-size:16px;
}

.stats-icon{
    width:65px;
    height:65px;
    font-size:25px;
}

}

/* Mobile */

@media(max-width:575px){

.why-whatsapp-section{
    padding:50px 0;
}

.tittle-heading h2{
    font-size:20px;
    line-height:1.5;
}

.stats-box{
    padding:25px 18px;
    border-radius:22px;
}

.stats-box h3{
    font-size:20px;
}

.stats-box p{
    font-size:15px;
}

.stats-icon{
    width:58px;
    height:58px;
    font-size:22px;
    border-radius:18px;
}

.arrow-icon{
    width:38px;
    height:38px;
}

}


/* ================= PARTNERS SECTION ================= */
.partner-section {
  background: #f8f9fa;
}

/* FAQ */
.faq-item {
  cursor: pointer;
  padding: 15px 0;
}

.faq-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  color: #6c757d;
  margin-top: 10px;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item i {
  transition: 0.3s;
}

.faq-item.active i {
  transform: rotate(180deg);
}

/* STICKY IMAGE */
.sticky-img {
  position: sticky;
  top: 100px; /* menu height */
}

.sticky-img img {
  width: 100%;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .sticky-img {
    position: static;
    margin-top: 30px;
  }
}

/* ================= WHAT WE DO ================= */
.what-we-do {

    background: #ffffff;
}

/* Heading */
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #222;
}

/* Card */
.do-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 55px 30px 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

/* Icon */
.do-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(244,131,35,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -90px auto 25px;
    transition: all 0.4s ease;
}

.do-icon i {
    font-size: 32px;
    color: #dbad1a;
    transition: all 0.4s ease;
}



.do-card.active h4,
.do-card.active p {
    color: #ffffff;
}

.do-card.active .do-icon {
    background: #ffffff;
}

.do-card.active .do-icon i {
    color: #dbad1a;
}

/* Hover effects */
.do-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.do-card:hover .do-icon {
    transform: scale(1.15);
    background: radial-gradient(circle at top left, #dbad1a, #053120);
}

.do-card:hover .do-icon i {
    color: #ffffff;
    transform: rotate(8deg);
}

/* Text */
.do-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.do-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 34px;
    }
    .do-icon {
        margin-top: -70px;
    }
}


/* ================= WHY CHOOSE US ================= */
.why-choose {
    padding: 110px 0;
    background: #f7f9fc;
}

/* Left */
.why-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin-bottom: 25px;
}

.why-text {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.why-btn {
    display: inline-block;
    background: #053120;
    color: #fff;
    padding: 10px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.why-btn:hover {
    background: #fff;
    color: #053120;
    border: 1px solid #053120;
}

/* Right Features */
.why-feature {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 25px 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    align-items: flex-start;
}

/* Icon Box */
.why-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(244,131,35,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 26px;
    color: #dbad1a;
}

/* Text */
.why-feature h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

.why-feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ================= AUTO ANIMATIONS ================= */

/* Slow rotation */
.spin {
    animation: spin 6s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pulse */
.pulse {
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Rotate back and forth */
.rotate {
    animation: rotate 3s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(12deg); }
    100% { transform: rotate(0deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .why-title {
        font-size: 34px;
    }
}


/* ================= CTA SECTION ================= */
.meeting-section {
  background: #053120;
  position: relative;
  overflow: hidden;
}

/* TEXT */
.meeting-section h1 {
  font-size: 2.5rem;
}

.meeting-section p {
  font-size: 1rem;
  opacity: 0.9;
}

/* BUTTON */
.meeting-btn {
  background: #d9e2ff;
  color: #053120;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.meeting-btn:hover {
  background: #dbad1a;
  color: #fff;
  transform: translateY(-3px);
}

/* IMAGE */
.image-wrapper {
  max-width: 100%;
}

.main-img {
  border-radius: 15px;
  transition: 0.4s;
}

.main-img:hover {
  transform: scale(1.03);
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .meeting-section h1 {
    font-size: 1.8rem;
  }

  .main-img {
    margin-top: 20px;
  }
}


/* ================= PARTNERS ================= */
.partners-section {
    background: #ffffff;
    overflow: hidden;
}

.partners-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Track */
.partners-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

/* Pause on hover */
.partners-wrapper:hover .partners-track {
    animation-play-state: paused;
}

/* Logo Card */
.partner-card {
    min-width: 260px;
    height: 130px;
    border-radius: 24px;
    border: 1px solid #e0d4d4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: all 0.35s ease;
    cursor: pointer;
}

/* Image */
.partner-card img {
    max-width: 160px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.35s ease;
}

/* Hover effect */
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.partner-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Infinite animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .partner-card {
        min-width: 200px;
        height: 110px;
    }
}


/* ================= FOOTER ================= */
.main-footer {
    background: linear-gradient(135deg, #053120, #053120);
    
    color: #ffffff;
}

.footer-logo {
    margin-bottom: 20px;
    max-height: 80px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Titles */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #dbad1a;
    display: block;
    margin-top: 6px;
}

/* Menus */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.footer-menu a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #dbad1a;
    transition: transform 0.3s ease;
}

.footer-menu a:hover {
    color: #dbad1a;
    opacity: 1;
}

.footer-menu a:hover::before {
    transform: translateX(4px);
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    color: #dbad1a;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-footer {
        padding-left: 40px;
    }

}


.footer-bottom {
    border-top: 1px solid #dbad1a;
    background: #053120;
    padding: 15px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Copyright text */
.copyright-text {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.copyright-text span {
    color: #dbad1a;
    font-weight: 600;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover animation */
.social-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #dbad1a;
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.35s ease;
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
    font-size: 14px;
}

/* Hover effect */
.social-icon:hover::after {
    transform: scale(1);
}

.social-icon:hover {
    transform: translateY(-4px) rotate(6deg);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom-inner {
        justify-content: center;
        gap: 12px;
    }
}



/* ================= ABOUT PAGE CODE START ================= */

/* ================= ABOUT HERO ================= */
.about-hero {
  background-color: #f8f9fa;
}

/* Title */
.about-hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #053120;
}

/* Text */
.about-hero-text {
  color: #000;
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  padding-right: 25px;
}

/* Button */
.about-hero-btn {
  background-color: #053120;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
}

.about-hero-btn:hover {
  background-color: #fff;
  color: #053120;
  border: 1px solid #053120;
}

/* Image */
.about-hero-image {
  border-radius: 16px;
  max-height: 420px;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 767px) {
  .about-hero-title {
    font-size: 1.8rem;
  }

  .about-hero-btn {
    width: 100%;
    text-align: center;
  }

  .about-hero-image {
    max-height: 300px;
  }
  .about-hero-text{
    margin-right: 0;
  }
}


/* ================= CONTACT US PAGE CODE START ================= */

/* ================= CONTACT  SECTION ================= */

.contact-section {
  background: #fFF;
}

.contact-title {
  font-weight: 600;
  color: #053120;
}

/* Inputs */
.contact-input {
 
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
}

.contact-textarea {
  border-radius: 20px;
}

.contact-prefix {
  /* border-radius: 30px 0 0 30px; */
  background: #fff;
}

/* Terms */
.terms-text {
  font-size: 14px;
  color: #6c757d;
}

.terms-text a {
  color: #0d6efd;
  text-decoration: none;
}

/* Checkbox */
.custom-check {
  accent-color: #053120;
}

.terms-label {
  font-size: 14px;
}

/* Button */
.contact-btn {
  background: #053120;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  transition: all 0.3 ease;
}

.contact-btn:hover {
    border: 1px solid #053120;
  background: #fff;
  color: #053120;
}

/* Right Card */
.contact-card {
  background: #053120;
  color: #fff;
  padding: 30px;
  border-radius: 20px;
}

.contact-info-box {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 12px;
  gap: 15px;
}

.contact-icon {
  font-size: 20px;
}

.contact-divider {
  border-color: rgba(255,255,255,0.2);
}

.contact-social i {
  font-size: 18px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 767px) {
  .contact-btn {
    width: 100%;
  }

  .contact-card {
    text-align: center;
  }

  .contact-info-box {
    flex-direction: column;
    text-align: center;
  }
}


/* ================= SERVICES CODE START ================= */

/* ================= SERVICES BULK WHATSAPP  SECTION ================= */

/* ================= features section ================= */
.trust-strip {
    background: linear-gradient(180deg, #053120, #053120);
    padding: 25px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 10px;
    transition: all 0.35s ease;
    cursor: pointer;
}

/* Icons */
.trust-item i {
    font-size: 24px;
    transition: transform 0.35s ease, color 0.35s ease;
}

/* Hover effect */
.trust-item:hover {
    transform: translateY(-6px);
    color: #dbad1a;
}

.trust-item:hover i {
    transform: scale(1.15);
    color: #dbad1a;
}

/* Subtle glow */
.trust-item:hover {
    text-shadow: 0 0 15px #dbad1a;
}

/* Responsive spacing */
@media (max-width: 767px) {
    .trust-item {
        margin-bottom: 10px;
        font-size: 15px;
    }
}


/* Manage Section */

.manage-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.manage-title {
    font-size: 34px;
}

.highlight {
    color: #25D366;
}

.feature-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px #dbad1a;
}

.feature-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    background: linear-gradient(135deg, #dbad1a, #053120);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    transition: 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .manage-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .manage-title {
        font-size: 24px;
    }
    .feature-card {
        padding: 25px 20px;
    }
}

/* manage process */
.sendwo-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.main-heading span {
    color: #25D366;
}

.step-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px #dbad1a;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbad1a, #053120);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    transition: 0.4s ease;
}

.step-card:hover .step-icon {
    transform: rotateY(180deg);
}

.step-text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .main-heading {
        font-size: 24px;
    }
    .step-card {
        padding: 25px 20px;
    }
}

/* Broadcast Section */

.broadcast-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.main-title {
    font-size: 22px;
    line-height: 1.3;
}

.highlight {
    color: #25D366;
}

.sub-text {
    color: #6c757d;
    font-size: 16px;
}

.feature-item {
    align-items: flex-start;
}

.icon-circle {
    min-width: 40px;
    height: 40px;
    background: #053120;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}



.broadcast-img {
    border-radius: 20px;
    
}

/* Responsive */
@media (max-width: 992px) {
    .main-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 17px;
    }
    

    .feature-item .ms-3 {
        margin-left: 10px !important;
       
    }
}


.se-btn{
    background-color: #053120;
    color: #ffffff;
    transition: all 0.3 ease;
}
.se-btn:hover{
    background-color: #ffffff;
    color: #053120;
    border: 1px solid #053120;
}

/* digital marketion */
/* Section Background */
.transform-section {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
}

/* Glass Card Box */
.transform-box {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.transform-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(5, 49, 32, 0.15);
}

/* Top Accent Border Animation */
.transform-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background: linear-gradient(90deg, #dbad1a, #053120);
  transition: 0.5s ease;
}

.transform-box:hover::before {
  width: 100%;
}

/* Badge */
.section-badge {
  font-size: 14px;
  font-weight: 600;
  color: #dbad1a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Main Heading */
.main-heading {
  font-weight: 800;
  font-size: 32px;
  color: #053120;
  line-height: 1.3;
}

/* Highlight Text */
.highlight {
  background: linear-gradient(90deg, #dbad1a, #053120);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.section-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  transition: 0.3s ease;
}

/* Text hover effect */
.transform-box:hover .section-text {
  color: #053120;
}

/* Responsive */
@media (max-width: 768px) {
  .main-heading {
    font-size: 24px;
  }
  .transform-box {
    padding: 30px;
  }
}

/* footer sticky  */
 /* Main box */
#sticky-box {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  overflow-x: hidden;
 
}

/* Toggle button (default TOP) */
#toggle-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px 0 0 0;
  transition: 0.3s;
  z-index: 2;
}

/* Icons */
#social-icons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Each icon */
#social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

/* Colors */
.fb { background: #3b5998; }
.ig { background: linear-gradient(45deg,#feda75,#d62976,#962fbf); }
.in { background: #0077b5; }
.yt { background: #ff0000; }
.tw { background: #000; }
.wa { background: #25d366; border-radius: 0 0 0 8px;}

/* HIDE icons */
.hide #social-icons {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

/* 👉 MOVE BUTTON TO CENTER WHEN HIDDEN */
.hide #toggle-btn {
  top: 50%;
  transform: translateY(-50%);
  border-radius: 8px 0 0 8px;
}

/* Arrow rotate */
#toggle-btn i {
  transition: 0.3s;
}

.hide #toggle-btn i {
  transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 576px) {
  #sticky-box,
  #toggle-btn,
  #social-icons a {
    width: 45px;
  }

  #toggle-btn,
  #social-icons a {
    height: 45px;
  }

  #social-icons {
    margin-top: 45px;
  }
}



/* Main box */
#sticky-left {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 60px;
}

/* Toggle button */
#left-toggle {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0 8px 0 0;
  transition: 0.3s;
}

/* Icons */
#left-icons {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

/* Common icon */
#left-icons a {
  width: 40px;
    height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}

/* Community (vertical text) */
.community {
  background: #2ecc71;
  height: 200px !important;
  flex-direction: column;
}

.community span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
  margin-top: 10px;
}

/* Other colors */
.lwa { background: #25d366;}
.lcall { background: #00c853; }

/* Hide icons */
.hide-left #left-icons {
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

/* Move button to center when hidden */
.hide-left #left-toggle {
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0 8px 8px 0;
}

/* Arrow rotate */
#left-toggle i {
  transition: 0.3s;
}

.hide-left #left-toggle i {
  transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 576px) {
  #sticky-left {
    width: 50px;
  }

  #left-toggle {
    width: 40px;
    height: 40px;
  }

  #left-icons a {
   width: 40px;
    height: 40px;
  }

  .community {
    height: 160px;
  }
}

/* footer sticky end */