

.whatsapp {
    height:  clamp(50px,6vw,60px);
    width: clamp(50px,6vw,60px);
    position: fixed;
    right: 30px;
    bottom: 80px;
    background-color: rgb(4, 252, 74);
    z-index: 10000; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; 
    color: white; 
    font-weight: bold;
    text-decoration: none;
}
.whatsapp i{
    font-size: clamp(1rem,10vw,2rem);
}


        * {
            margin: 0 ;
            padding: 0;
            box-sizing: border-box;
            
        }



        html,body {
            background-color: #e0dedf;

    overflow-x: hidden !important;
    width: 100%;
      margin: 0;
  padding: 0;
  width: 100%;
                                                         font-family: 'Montserrat', sans-serif;

}








.navbar-custom {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 999;
            transition: background-color 0.3s ease, color 0.3s ease;
            background-color: white;
            padding: 16px 0;
        }

        .navbar-scrolled {
            background-color: white !important;
        }

        .navbar-nav .nav-link {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            color: black;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }

        .navbar-dark .nav-link {
            color: white !important;
        }

        .nav-link:not(.dropdown-toggle)::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background-color: limegreen;
            transition: width 0.3s ease-in-out;
        }

        .offcanvas-custom .nav-link::after {
            display: none;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: 50%;
        }

        .get-started-btn {
            font-family: 'Manrope', sans-serif;
         
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            transition: all 0.3s ease;
            border: none;
         
            color: rgb(254, 253, 253);
            background-color: red;
        }

        .navbar-dark .get-started-btn {
            color: white;
          
        }

        .get-started-btn:hover {
            background-color: rgb(220, 15, 15);
            color: rgb(255, 255, 255);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
        }

      
        .dropdown-menu {
            display: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 0.4rem;
            min-width: 180px;
            z-index: 1000;
        }

        /* Show main dropdown on hover */
        @media (min-width: 992px) {
            .dropdown:hover > .dropdown-menu {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        /* Submenu container */
        .dropdown-submenu {
            position: relative;
        }

        /* Nested submenu - hidden by default */
        .dropdown-submenu > .dropdown-menu {
            display: none !important;
            opacity: 0;
            visibility: hidden;
            position: absolute;
            left: 100%;
            top: 0;
            margin-top: 0;
            border-radius: 0.4rem;
            z-index: 1001;
            background-color: white;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            min-width: 180px;
            transition: all 0.3s ease;
        }

        @media (min-width: 992px) {
            .dropdown-submenu:hover > .dropdown-menu {
                display: block !important;
                opacity: 1;
                visibility: visible;
            }
        }


.dropdown-submenu > .dropdown-toggle::after {
    content: ">";
    float: right;
    margin-left: 8px;
    font-size: 0.7rem;
    border: none !important;     
    background: none !important; 
}

        

        .dropdown-item {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            border: none;
            background: none;
        }

        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: limegreen;
            transform: translateX(5px);
        }









        /* Mobile Offcanvas Styles */
        .offcanvas-custom {
            background-color: #000 !important;
            color: white;
            width: 250px;
        }

        .offcanvas-custom .nav-link {
            color: rgb(235, 229, 229);
            font-family: 'Plus Jakarta Sans';
            font-size: 1.5rem;
            transition: 0.5s;
        }

        .offcanvas-custom .nav-link:hover {
            color: rgb(254, 253, 253);
            font-family: 'Plus Jakarta Sans';
            font-size: 1.6rem;
        }

        .offcanvas-custom .get-started-btn {
            color: white;
            border-color: white;
        }

        .offcanvas-custom .get-started-btn:hover {
            background-color: rgb(13, 13, 13);
            color: rgb(250, 247, 247);
        }

        .mobile-dropdown {
            margin-top: 10px;
            margin-left: 0; 
        }

        .mobile-dropdown-item {
            color: rgb(200, 200, 200);
            font-size: 1.2rem;
            padding: 8px 0;
            display: block;
            text-decoration: none;
            transition: all 0.3s ease;
            padding-left: 0;
        }

        .mobile-dropdown-item:hover {
            color: limegreen;
            transform: translateX(10px);
        }
.mobile-dropdown-toggle {
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}


#mainDropdown .mobile-sub-dropdown {
    margin-left: 10px;
    margin-bottom: 10px;
    
}



.mobile-sub-dropdown .mobile-dropdown-toggle {
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.mobile-sub-dropdown .mobile-dropdown-content {
    margin-left: 15px;
    padding-left: 10px;
    border-left: 2px solid #b8b4b4;
        max-height: auto; 
    overflow-y: auto; 
}




        .mobile-dropdown-toggle i {
            transition: transform 0.3s ease;
        }

        .mobile-dropdown-toggle.active i {
            transform: rotate(180deg);
        }

        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-dropdown-content.active {
            max-height: none;
        }

        .btn-close {
            filter: invert(1);
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        @media (max-width: 768px) {
            .nav-logo {
                width: 60px;
                height: 60px;
                object-fit: contain;
                border-radius: 50%;
                margin-left: 10px;
            }
        }








    




        .hero-section {
      padding: 80px 0;
      padding-top: 195px; 

      /* font-family: 'Plus Jakarta Sans', sans-serif; */
      background-color: black;
      font-family: 'Montserrat', sans-serif;
    }

.hero-section .hero-heading {
  font-weight: 800;
  color: #fefefe;
  font-size: 4rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero-section .hero-heading {
    font-size: 2.6rem;
    line-height: 1.3;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;

  }

  .hero-section .hero-description {
    text-align: center;
  }

  .hero-section .d-flex.align-items-center {
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
  }
}


    .hero-section .hero-description {
      font-weight: 500;
      color: #c5c7c9;
      font-size: 1rem;
      margin-top: 1rem;
      margin-bottom: 2rem;
    }

    .hero-section .btn-schedule {
      background-color: #fefdfd;
      color: #0c0c0c;
      padding: 12px 24px;
      border-radius: 30px;
      font-weight: 600;
      border: none;
      transition: 0.3s;
    }

    .hero-section .btn-schedule:hover {
      background-color: #cac6c6;
      color: rgb(9, 9, 9);
    }

    .hero-section .btn-case-study {
      font-weight: 600;
      color: #fafafb;
      margin-left: 20px;
      /* text-decoration: none; */
    }

    .hero-section .btn-case-study:hover {
      text-decoration: none;
    }

    /* .hero-section .hero-image img {
      max-width: 80%;
      height: auto;
    } */




/* .hero-section .hero-video-element:hover{
    opacity: 1;
} */





    









  .brand-container {
    background-color: #f7f5f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.11);
    border-radius: 12px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; 
    padding: 10px;
  }

  .brand-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .brand-logo {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    flex-shrink: 0;
  }

  @media (max-width: 768px) {
    .brand-logo {
      height: 20px;
    }
  }
















  .ppc-section {
          
            border-radius: 15px;
            padding: 60px 50px;
            margin: 20px 0;
        }
        
        .ppc-section .main-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #000;
            line-height: 1.1;
            margin-bottom: 10px;
        }
        
        .ppc-section .highlight-red {
            color: #fd041d;
        }
        
        .ppc-section .subtitle {
            font-size: 1.4rem;
            color: #262627;
            font-weight: 400;
            margin-bottom: 40px;
            line-height: 1.4;
        }
        
        .ppc-section .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .ppc-section .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            font-size: 1.3rem;
            color: #262627;
            font-weight: 400;
        }
        
        .ppc-section .feature-item:last-child {
            margin-bottom: 40px;
        }
        
        .ppc-section .checkbox-icon {
            width: 20px;
            height: 20px;
            border: 2px solid #6c757d;
            border-radius: 3px;
            margin-right: 15px;
            margin-top: 4px;
            flex-shrink: 0;
            background-color: transparent;
        }
        
        .ppc-section .cta-button {
            background: #fb0303;
            color: #fcfcfc;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 80px;
        }
        
        .ppc-section .cta-button:hover {
            background-color: #c82333;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .ppc-section {
                padding: 40px 30px;
            }
            
            .ppc-section .main-title {
                font-size: 2.5rem;
            }
            
            .ppc-section .subtitle {
                font-size: 1.1rem;
            }
            
            .ppc-section .feature-item {
                font-size: 1.1rem;
            }
        }






















  .service{
            background-color: transparent;
        }
        .service-section {
            padding: 60px 0;
            /* font-family: 'Plus Jakarta Sans', sans-serif; */
            font-family: 'Montserrat', sans-serif;


        }

        /* First Row - Heading */
    .service-section .main-heading {
        /* font-family: 'Plus Jakarta Sans', sans-serif; */
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 800;
        font-size: 42px;
        line-height: 1.3;
        color: #1a1a1a;
        margin-bottom: 0;
    }

    .service-section .description {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
        margin-bottom: 0;
    }


        .service-section .row:first-child {
        align-items: center;
    }

        /* Second Row - Stats Box */
        .service-section .stats-box {
            background: url('/static/images/5a7431cee3e40d481d271a4e45fcd0fb7d2b23f2.png') center/cover;
            background-color: #1a1a1a;
            border-radius: 20px;
            padding: 40px 30px;
            color: white;
            height: 300px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-section .stats-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            
            z-index: 1;
        }

        .service-section .stats-content {
            position: relative;
            z-index: 2;
                             font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }

        .service-section .stats-number {
        font-size: 4rem;
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
    }

    .service-section .stats-number .plus {
        color: #99EA48;
    }
        .service-section .stats-text {
            font-size: 1.1rem;
            color: #e5e7eb;
        }


        .service-section .how-we-work-wrapper {
  border-radius: 20px;
  /* overflow: hidden; */
  position: relative;
}

.service-section .how-we-work-box {
  position: relative;
  height: 300px;
background: url('/static/images/7d2b8abf1bb748bcd69b0d5a1cec2bb6aea060f1(1).png') center/cover;
  /* background-color: #2563eb; */
  border-radius: 20px;
  overflow: hidden; 
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}


.service-section .how-we-work-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

       .service-section  .how-we-work-text {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            text-align: center;
            letter-spacing: 0.2em;
            z-index: 2;
            position: relative;
        }

        .service-section .play-button {
            position: absolute;
            right: -10px;
            bottom: -13px;
            width: 100px;
            height: 100px;
            background: #99EA48;
            border: 13px solid #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 100;
        }

        .service-section .play-button:hover {
            background: #80d93c;
            transform: scale(1.05);
        }

        .service-section .play-icon {
            width: 0;
            height: 0;
            border-left: 20px solid black;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 5px;
        }

        .service-section .row {
            margin-bottom: 40px;
        }

        .service-section .row:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
        .service-section .main-heading {
            font-size: 2rem;
            margin-bottom: 20px;
        }
                .service-section {
            padding: 60px 15px;
           


        }

        .service-section .description {
            font-size: 0.95rem;
        }

            .service-section .stats-box,
            .service-section .how-we-work-box {
                height: 250px;
                margin-bottom: 20px;
            }

            .service-section .how-we-work-text {
                font-size: 2rem;
            }
        }





















.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.service-pill {
  flex: 1 1 calc(50% - 10px); 
  padding: 10px 20px;
  border-radius: 999px;
  background-color: #f1f1f1;
  color: #333;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
}


.service-pill:hover {
  background-color: #e0e0e0;
}

.service-pill.selected {
  background-color: #000;
  color: #fff;
  border-color: #000;
}



@media (max-width: 575.98px) {
  .service-pill {
    flex: 1 1 calc(50% - 10px);
      padding: 10px 10px;
 
  }
}

@media (max-width: 376px) {
  .service-pill {
    flex: 1 1 calc(50% - 10px);
      padding: 10px 10px;
      font-size: 12px;
 
  }
}

.service-pill:hover {
  background-color: #e0e0e0;
}

.service-pill.selected {
  background-color: #000;
  color: #fff;
  border-color: #000;
}








.contact-box {
  max-width: 550px; 
  margin: 40px auto; 
  padding: 40px 30px; 
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  font-size: 1rem; 
  font-family: 'Montserrat', sans-serif;
}

.form-step h1 {
  text-align: center;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 2rem;

}


.form-control,
.form-select {
  border-radius: 24px;
  padding: 12px 20px; /* Less padding inside inputs */
  font-size: 0.95rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid #ccc;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}



textarea.form-control {
  resize: none;
}

.btn-custom {
  border-radius: 30px;
  padding: 18px 20px;
  font-weight: bold;
  font-size: 1.125rem; 
  background-color: #fb0303;
  color: white;
  border: none;

  width: 100%;
  transition: background-color 0.4s, color 0.4s, transform 0.3s;
  margin-top: 20px;
}

.btn-custom:hover {
  background-color: #fbf9f9;
  color: #000;
  transform: translateY(-2px);
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 4%;
  margin-top: 40px;
}

.single {
    display: flex;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
}

@media (max-width: 576px) {
  .contact-box {
    padding: 30px 50px; 
    margin: 20px auto;
    border-radius: 12px;
    font-size: 0.9rem; 
  }

  .form-step h4 {
    font-size: 1.4rem; 
    margin-bottom: 20px;
  }

  .form-control,
  .form-select {
    padding: 10px 16px; 
    font-size: 0.9rem;
    border-radius: 20px;
  }

  textarea.form-control {
    height: 100px; 
  }

  .btn-custom {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .btn-container {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .btn-container.single {
    justify-content: center;
  }
}





.modal-header .btn-close {
  filter: none; 

  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
}




















                .growth-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 80px 0;
                        background: #000000;
            color: white;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            /* font-family: 'Plus Jakarta Sans', sans-serif; */
            font-family: 'Montserrat', sans-serif;

        }
        
        .growth-section .stats-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 80px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            
        }
        
        .growth-section .stat-item {
            text-align: center;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
                    font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }
        
        .stat-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .growth-section .stat-number {
            font-size: 3.75rem;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 10px;
            line-height: 1;
                             font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }
        
        .growth-section .stat-label {
            font-size: 1rem;
            font-weight: 400;
            color: #fc0404;
            text-transform: uppercase;
            letter-spacing: 1px;
                             font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }
        
        .growth-section .main-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
                             font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }
        
        .growth-section .main-title {
            font-size: 3.3rem;
            font-weight: 600;
            background: linear-gradient(135deg, #FFFFFF 0%, #5615e3 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
            line-height: 1.1;
                             font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }
        
        .growth-section .subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            color: #FFFFFF;
            margin-bottom: 60px;
            opacity: 0.9;
        }
        
        .growth-section .cta-button {
            background: #fb0303;
            color: #fcfcfc;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 80px;
        }
        
        .growth-section .cta-button:hover {
            background: #e51212;
            color: #FFFFFF;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(238, 99, 6, 0.3);
        }
        
       .growth-section .social-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.growth-section .social-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    pointer-events: auto; 
}


.growth-section .linkedin {
    top: 25%;
    left: -40px;
}
.growth-section .linkedin img{

    transform: rotate(-30deg);

}

.growth-section .pinterest {
    top: -70px;
    right: 20%;
}

.growth-section .instagram {
    bottom: 60%;
    right: 0%;
}

.growth-section .meta {
    bottom: 15%;
    left: 10%;
}

.growth-section .google-ads {
    bottom: 20%;
    right: 10%;
}
.growth-section .google-ads img{
    transform: rotate(10deg);

}


.growth-section .social-icon.animate {
    opacity: 1;
    transform: scale(1);
}

.growth-section .social-icon:hover {
    transform: scale(1.1) translateY(-5px);
}

        
        @media (max-width: 992px) {
            .growth-section .social-icons {
                height: 400px;
            }
            
           .growth-section  .linkedin {
    top: 25%;
    left: -40px;
    transform: rotate(30deg);
}

.growth-section .pinterest {
    top: -70px;
    right: 20%;
}

.growth-section .instagram {
    bottom: 60%;
    right: 0%;
}

.growth-section .meta {
    bottom: 15%;
    left: 10%;
}

.growth-section .google-ads {
    bottom: 20%;
    right: 10%;
}
        }
        
        @media (max-width: 768px) {
            .growth-section .main-title {
                font-size: 2.8rem;
            }
            
            .growth-section .subtitle {
                font-size: 1.2rem;
            }
            
            .growth-section .stat-number {
                font-size: 2.5rem;
            }
            
            .growth-section .stats-container {
                gap: 30px;
            }
            
           
            .growth-section .social-icons {
                position: relative;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                gap: 20px;
                height: auto;
                padding: 20px 0;
            }
            
            .growth-section .social-icon {
                position: relative;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                transform: scale(0.8);
                width: 60px;
                height: 60px;
            }
            
            .growth-section .pinterest {
                transform: scale(0.8);
            }
            
            .growth-section .social-icon.animate {
                transform: scale(1);
            }
            
            .growth-section .pinterest.animate {
                transform: scale(1);
            }
            
            .growth-section .social-icon img {
                width: 30px;
                height: 30px;
            }
            .growth-section .google-ads img{
    transform: rotate(0deg);
                
            }
            .growth-section .linkedin img{
    transform: rotate(0deg);

            }
        }
        
        @media (max-width: 576px) {
            .growth-section .main-title {
                font-size: 2.5rem;
            }
            
            .growth-section .stats-container {
                flex-direction: column;
                gap: 25px;
            }

                        .growth-section .social-icon img {
                width: 20px;
                height: 20px;
            }


                        .growth-section .social-icons {
                position: relative;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                gap: 10px;
                height: auto;
                padding: 20px 0;
            }
            
            .growth-section .social-icon {
                position: relative;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                transform: scale(0.8);
                width: 60px;
                height: 60px;
            }
        }































.case-studies-section {
            
           
            padding: 50px;
            margin: 50px 0;
            margin-bottom: 100px;
            position: relative;
        }
        
        .case-studies-section .main-title {
            font-size: 2.9rem;
            font-weight: 800;
            color: #000;
            line-height: 1.2;
            margin-bottom: 15px;
        }
        
        .case-studies-section .subtitle {
            font-size: 1.3rem;
            color: #444545;
            font-weight: 400;
            margin-bottom: 40px;
            line-height: 1.4;
        }
        
        .case-studies-section .case-study-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            font-size: 1.2rem;
            color: #424243;
        }
        
        .case-studies-section .case-study-item:last-child {
            margin-bottom: 0;
        }
        
        .case-studies-section .checkmark-icon {
            width: 24px;
            height: 24px;
            background-color: #07a1ee;
            border-radius: 50%;
            margin-right: 15px;
            margin-top: 2px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .case-studies-section .checkmark-icon::after {
            content: '✓';
            color: white;
            font-size: 14px;
            font-weight: bold;
        }
        
        .case-studies-section .case-study-content {
            flex: 1;
        }
        
        .case-studies-section .company-name {
            font-weight: 700;
            color: #161616;
            margin-right: 8px;
        }
        
        .case-studies-section .case-description {
            font-weight: 400;
            color: #373738;
        }
        
        .case-studies-section .cta-button {
            background-color: #000;
            color: white;
            font-size: 1rem;
            font-weight: 800;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            position: absolute;
            bottom: 0px;
            right: 50px;
        }
        
        .case-studies-section .cta-button:hover {
            background-color: #333;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .case-studies-section {
                padding: 40px 30px;
            }
            
            .case-studies-section .main-title {
                font-size: 2.2rem;
            }
            
            .case-studies-section .subtitle {
                font-size: 1rem;
            }
            
            .case-studies-section .cta-button {
                position: static;
                margin-top: 30px;
                display: block;
                text-align: center;
                width: fit-content;
            }
            
            .case-studies-section .case-study-item {
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 576px) {
            .case-studies-section {
                padding: 30px 20px;
            }
            
            .case-studies-section .main-title {
                font-size: 1.8rem;
            }
        }







































            .strategy-section {

              font-family: 'Rubik';
      background-color: transparent;
      color: #000;
      padding: 60px 0;

    }
    .strategy-section .main-heading {
      /* font-family: 'Plus Jakarta Sans'; */
                       font-family: 'Montserrat', sans-serif;
            font-weight: 800;
      color: #253D32;
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 70px;
    }

    .strategy-section .main-description {
      font-family: 'Rubik'f;
      font-size: 1.25rem;
      font-weight: 400;
      margin: 20px 0;
      line-height: 40px;
      color: #78847D;
    }

    .strategy-section .see-more {
      font-family: 'Rubik';
      font-weight: 500;
      font-size: 1.1rem;
      color: #A3B938;
      /* text-decoration: none; */
    }

    .strategy-section .see-more:hover {
      text-decoration: underline;
    }

    .strategy-section .feature-box {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 40px;
      /* padding-left: 50px; */
      justify-content: center;
    }

    .strategy-section .feature-icon {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .strategy-section .feature-title {
      font-size: 1.3rem;
      font-weight: 500;
      color: #253D32;
    }

    .strategy-section .feature-description {
      font-size: 1.1rem;
      font-weight: 400;
      color: #78847D;
      line-height: 30px;
    }

    @media (max-width: 768px) {
      .strategy-section .main-heading {
        font-size: 2rem;
        line-height: 50px;
      }

      .strategy-section .main-description {
        font-size: 1rem;
      }

      .strategy-section .feature-title {
        font-size: 1.25rem;
      }

      .strategy-section .feature-description {
        font-size: 1rem;
      }
    }









    .ready-section {
      /* background: radial-gradient(circle at 30% 30%, #1a1a1a, #000000); */
      background-color: #020609;
      border-radius: 30px;
      padding: 40px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      color: white;
      /* font-family: 'Plus Jakarta Sans', sans-serif; */
      padding: 40px ;
                       font-family: 'Montserrat', sans-serif;
            font-weight: 800;


    }

    .ready-text {
      font-size: 4rem;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .ready-button {
      background-color: #fff;
      color: #000;
      border: none;
      padding: 14px 28px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .ready-button:hover {
      background-color: #e4e4e4;
      transform: translateY(-2px);
    }

    .ready-button svg {
      margin-left: 10px;
      width: 16px;
      height: 16px;
    }

    @media (max-width: 768px) {
      .ready-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }

      .ready-text {
        font-size: 2rem;
      }
    }



















        .lead-title {
      /* font-family: 'Plus Jakarta Sans'; */
      /* font-weight: 700; */
                       font-family: 'Montserrat', sans-serif;
            font-weight: 800;
      font-size: 3rem;
      line-height: 80px;
      color: #253d32;
    }

    .lead-desc {
      font-family: 'Inter',;
      font-size: 17px;
      color: #333;
      margin: 20px 0;
      max-width: 500px;
    }

    .lead-btn {
      font-family: 'Rubik', sans-serif;
      font-weight: 500;
      background: #000;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      border: none;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }




    .custom-card-wrapper {
      position: relative;
      padding: 10px;
    }

    .card-custom {
      background: #fcfbfb;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
      height: 100%;
      
      background-clip: padding-box;
      position: relative;
      z-index: 1;
/* 
      border-inline-start: 1px solid;
      border-block-start: 1px solid;
      border-right: 1px solid; */
      /* border-image-source: radial-gradient( circle at left ,
        limegreen,transparent 10%

      ); */
      /* border-image-slice: 1;
      padding: 10px; */
    }

    /* .card-custom::before {
      content: "";
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      height: 50%;
      border-radius: 20px 20px 0 0;
      border: linear-gradient(to bottom, #ff5c5c, transparent); 
      z-index: -1;
    }

    .card-blue::before {
      border: linear-gradient(to bottom, #00bfbf, transparent); 
    } */

    .icon-box {
      width: 70px;
      height: 70px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .icon-red {
      background-color: #ffeaea;
    }

    .icon-blue {
      background-color: #e4ffff;
    }

    .card-title {
      font-family: 'inter';
      font-weight: 500;
      font-size: 22px;
      color: #011627;
      margin-bottom: 8px;
    }


    .card-red{
      border: 1px solid rgb(237, 119, 119);
    }
        .card-blue{
      border: 1px solid rgb(164, 222, 254);
    }
    .card-text {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 16px;
      color: #011627;
      margin-bottom: 10px;
      line-height: 30px;
    }
    

    .view-link {
      font-family: 'inter';
      font-weight: 400;
      font-size: 15px;
      text-decoration: none;
    }

    .view-red {
      color: #FF1D03;
    }

    .view-blue {
      color: #2EC4B6;
    }

    /* Offset right cards */
    .card-offset {
      margin-top: 35px;
    }

    @media (max-width: 768px) {
      .lead-title {
        font-size: 36px;
        line-height: 50px;
      }

      .card-offset {
        margin-top: 0 !important;
      }

      .card-title {
        font-size: 20px;
      }

      .card-text {
        font-size: 15px;
      }
    }


.img-red {
  filter: brightness(0) saturate(100%) invert(20%) sepia(98%) saturate(3720%) hue-rotate(340deg) brightness(94%) contrast(104%);
}

.img-green {
  filter: brightness(0) saturate(100%) invert(74%) sepia(21%) saturate(1700%) hue-rotate(124deg) brightness(91%) contrast(95%);
}



























































































.ppc-strategy-section {
  
            border-radius: 15px;
          
            margin: 80px 0;
            position: relative;
        }
        
       .ppc-strategy-section .main-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #000;
            line-height: 1.2;
            margin-bottom: 15px;
        }
        
       .ppc-strategy-section .highlight-red {
            color: red  ;
        }
        
       .ppc-strategy-section .subtitle {
            font-size: 1.3rem;
            color: #212121;
            font-weight: 400;
            margin-bottom: 35px;
            line-height: 1.4;
        }
        
       .ppc-strategy-section .feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 40px 0;
        }
        
       .ppc-strategy-section .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
            font-size: 1.1rem;
            color: #2a2a2a;
            font-weight: 400;
        }
        
       .ppc-strategy-section .feature-item:last-child {
            margin-bottom: 0;
        }
        
       .ppc-strategy-section .checkbox-icon {
            width: 18px;
            height: 18px;
            border: 2px solid #6c757d;
            border-radius: 3px;
            margin-right: 15px;
            margin-top: 3px;
            flex-shrink: 0;
            background-color: transparent;
        }
        
       .ppc-strategy-section .cta-button {
            background-color: #ff021b;
            color: white;
            font-size: 1.1rem;
            font-weight: 800;
            padding: 15px 30px;
            border: none;
            border-radius: 35px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
       .ppc-strategy-section .cta-button:hover {
            background-color: #c82333;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }




        
       .ppc-strategy-section .stats-card {
            background-color: #000;
            border-radius: 15px;
            padding: 30px 25px;
            color: white;
            position: absolute;
            right: 20px;
            top: 80px;
            width: 380px;
            height: 80%;
            text-align: center;
        }
        
       .ppc-strategy-section .stats-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
       .ppc-strategy-section .stats-amount {
            font-size: 3.5rem;
            font-weight: 800;
            color: #dc3545;
            line-height: 1;
            margin-bottom: 5px;
        }
        
       .ppc-strategy-section .stats-label {
            font-size: 1rem;
            color: #ccc;
            margin-bottom: 25px;
        }
        
       .ppc-strategy-section .social-icons {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        
       .ppc-strategy-section .social-icon {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: white;
        }
        
       .ppc-strategy-section .google-ads { background-color: #4285F4; }
       .ppc-strategy-section .meta { background-color: #1877F2; }
       .ppc-strategy-section .pinterest { background-color: #E60023; }
       .ppc-strategy-section .linkedin-ads { background-color: #0A66C2; }
       .ppc-strategy-section .tiktok { background-color: #000; }
       .ppc-strategy-section .linkedin { background-color: #0A66C2; }
        
       .ppc-strategy-section .stats-footer {
            font-size: 0.85rem;
            color: #ccc;
            line-height: 1.3;
        }
        
        @media (max-width: 992px) {
           .ppc-strategy-section .stats-card {
                position: static;
                width: 100%;
                margin-top: 30px;
            }
            
          .ppc-strategy-section {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 768px) {
           .ppc-strategy-section .main-title {
                font-size: 2.2rem;
            }
            
           .ppc-strategy-section .subtitle {
                font-size: 1rem;
            }
            
           .ppc-strategy-section .feature-item {
                font-size: 1rem;
            }
            
            .ppc-strategy-section {
                padding: 30px 20px;
            }
            
            .ppc-strategy-section.stats-amount {
                font-size: 2.8rem;
            }
        }

























































.time-line-container{
    background-color: black;
}


        .timeline {
            /* background: radial-gradient(ellipse 80% 100% at center, #000000 0%, #1a1a1a 70%, #2d2d2d 100%); */
            /* border-radius: 80px; */
            padding: 100px 0px;
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }


        .timeline .main-title {
      /* font-family: 'Plus Jakarta Sans'; */
            font-size: 3.2rem;
            color: #FFFFFF;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            letter-spacing: -0.02em;
            /* font-weight: 700 !important; */
                             font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }


                .timeline .sub-title {
      font-family: 'Rubik';
            font-size: 1.2rem;
            color: #FFFFFF;
            text-align: center;
            margin-bottom: 100px;
            position: relative;
            z-index: 2;
            letter-spacing: -0.02em;
            font-weight: 300 !important;
        }



        .timeline-wrapper {
            position: relative;
            z-index: 2;
            height: 300px;
            display: flex;
            align-items: center;
        }

.timeline-line {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 3px;
  background-image: repeating-linear-gradient(
    to right,
    #5a5757,
    #5a5757 10px,
    transparent 10px,
    transparent 20px
  );
  border: none;
  border-radius: 2px;
  transform: translateY(-50%);
  box-shadow: none;
}



        .timeline-points {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .timeline-point {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-point:nth-child(1) {
            left: 8%;
            top: 50%;
            transform: translateY(-50%);
        }

        .timeline-point:nth-child(2) {
            left: 36%;
            top: 50%;
            transform: translateY(-50%);
        }

        .timeline-point:nth-child(3) {
            left: 64%;
            top: 50%;
            transform: translateY(-50%);
        }

        .timeline-point:nth-child(4) {
            left: 88%;
            top: 50%;
            transform: translateY(-50%);
        }

        .timeline .point-circle {
            width: 80px;
            height: 80px;
            background: #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
             font-size: 24px;
    color: #54c53b;
            position: relative;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 4;
        }
        .timeline .point-circle img{
            height: 40px;
        }

        .timeline .point-circle::before {
            content: '';
            position: absolute;
            inset: -3px;
            background: #FFFFFF;
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .timeline-point:hover .point-circle::before {
            opacity: 1;
        }

.timeline-point:hover .point-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3); /* white glow */
    /* background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.1) 70%); */
}


        .timeline .point-content {
            text-align: center;
            transition: all 0.4s ease;
            position: absolute;
            width: 220px;
            left: 50%;
            transform: translateX(-50%);
        }

        .timeline-point:nth-child(1) .point-content,
        .timeline-point:nth-child(3) .point-content {
            top: 80px;
        }


        .timeline-point:nth-child(2) .point-content,
        .timeline-point:nth-child(4) .point-content {
            bottom: 80px;
        }

        .timeline .point-year {
      font-family: 'Plus Jakarta Sans';
            font-size: 1.2rem;
            font-weight: 200 !important;
            color: #FFFFFF
;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .timeline .point-description {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            color: #FFFFFF;
            line-height: 1.6;
            font-weight: 300;
            transition: all 0.3s ease;
        }

        .timeline-point:hover .point-year {
            color: #FFFFFF;
            transform: translateY(-5px);
        }

        .timeline-point:hover .point-description {
            color: #FFFFFF;
            transform: translateY(-3px);
        }

        .timeline-point:hover {
            transform: translateY(-60px) scale(1.05);
        }

        .timeline-point::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(154, 205, 50, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
            z-index: 1;
        }

        .timeline-point:hover::before {
            width: 200px;
            height: 200px;
        }



.timeline .talk-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: black;
  background-color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  margin: 20px auto;
  border-radius: 23px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
  font-weight: 700;
  transition: 0.7s;
}
.timeline .talk-btn:hover{
    background-color: #5e6159;
    color: white;

}


        @media (max-width: 1200px) {
            .timeline-container {
                padding: 60px 30px;
                border-radius: 60px;
            }
            
            .timeline .main-title {
                font-size: 3rem;
                margin-bottom: 80px;
            }
            
            .timeline .point-circle {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .timeline .point-year {
                font-size: 1.1rem;
            }
            
            .timeline .point-description {
                font-size: 0.7rem;
            }
            
            .timeline .point-content {
                width: 180px;
            }
        }

        @media (max-width: 992px) {
            .timeline-container {
                padding: 50px 25px;
                border-radius: 50px;
            }
            
            .timeline .main-title {
                font-size: 3rem;
                margin-bottom: 70px;
            }
                    .timeline .point-circle img{
            height: 30px;
        }
        .timeline .point-year{
            font-size: 1rem;
        }

            
            .timeline-wrapper {
                height: 280px;
            }
            
            .timeline .point-content {
                width: 160px;
            }
            
            .timeline .point-description {
                font-size: 0.65rem;
            }
        }

        @media (max-width: 768px) {
            .timeline-container {
                padding: 40px 20px;
                border-radius: 40px;
                min-height: 900px;
            }
            
                    .timeline .point-circle img{
            height: 20px;
        }

            
            .timeline .main-title {
                font-size: 3.2rem;
                margin-bottom: 60px;
            }
            
            .timeline-wrapper {
                height: 600px;
                width: 100%;
            }
            

 
.timeline-line {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 3px;
  height: auto;
  background-image: repeating-linear-gradient(
    to bottom,
    #5a5757,
    #5a5757 10px,
    transparent 10px,
    transparent 20px
  );
  transform: translateX(-50%);
  border: none;
}

            

            .timeline-point {
                left: 50% !important;
                transform: translateX(-50%) !important;
                z-index: 3;
                top: auto !important;
            }
            

            .timeline-point:nth-child(1) { 
                top: 8% !important; 
            }
            .timeline-point:nth-child(2) { 
                top: 36% !important; 
            }
            .timeline-point:nth-child(3) { 
                top: 62% !important; 
            }
            .timeline-point:nth-child(4) { 
                top: 90% !important; 
            }
            
            .timeline .point-circle {
                width: 45px;
                height: 45px;
                font-size: 1rem;
                z-index: 4;
                position: relative;
            }
            
            .timeline .point-year {
                font-size: 1rem;
            }
            
            .timeline .point-description {
                font-size: 0.85rem;
            }
            
            .timeline .point-content {
                width: 200px;
                position: absolute;
            }
            
           
            .timeline-point .point-content {
                left: auto;
                right: auto;
                top: 0;
                transform: translateY(-50%);
            }
            
         
            .timeline-point:nth-child(1) .point-content {
                left: 60px !important;
                right: auto !important;
                text-align: left;
            }

           
            .timeline-point:nth-child(2) .point-content {
                left: auto !important;
                right: 60px !important;
                text-align: right;
            }

 
            .timeline-point:nth-child(3) .point-content {
                left: 60px !important;
                right: auto !important;
                text-align: left;
            }

            
            .timeline-point:nth-child(4) .point-content {
                left: auto !important;
                right: 60px !important;
                text-align: right;
            }
            
            .timeline-point:hover {
                transform: translateX(-50%) scale(1.05) !important;
            }
        }

        @media (max-width: 576px) {
            .timeline-container {
                padding: 30px 15px;
                border-radius: 30px;
                min-height: 1000px;
            }
                    .timeline .point-circle img{
            height: 20px;
        }

            
            .timeline .main-title {
                font-size: 3rem;
                /* margin-bottom: 20px; */
            }
            
            .timeline-wrapper {
                height: 550px;
            }

 
.timeline-line {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 3px;
  height: auto;
  background-image: repeating-linear-gradient(
    to bottom,
    #5a5757,
    #5a5757 10px,
    transparent 10px,
    transparent 20px
  );
  transform: translateX(-50%);
  border: none;
}
            
 
            .timeline-point {
                left: 50% !important;
                transform: translateX(-50%) !important;
                z-index: 3;
                top: auto !important;
            }
            
            
            .timeline-point:nth-child(1) { 
                top: 8% !important; 
            }
            .timeline-point:nth-child(2) { 
                top: 36% !important; 
            }
            .timeline-point:nth-child(3) { 
                top: 62% !important; 
            }
            .timeline-point:nth-child(4) { 
                top: 90% !important; 
            }
            
            .timeline .point-circle {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
                z-index: 4;
                position: relative;
            }
            
            .timeline .point-year {
                font-size: 0.8rem !important;
            }
            
            .timeline .point-description {
                font-size: 0.6rem;
            }
            
            .timeline .point-content {
                width: 140px;
                position: absolute;
            }
   
            .timeline-point .point-content {
                left: auto;
                right: auto;
                top: 0;
                transform: translateY(-50%);
            }
            
            
            .timeline-point:nth-child(1) .point-content {
                left: 50px !important;
                right: auto !important;
                text-align: center;
            }

 
            .timeline-point:nth-child(2) .point-content {
                left: auto !important;
                right: 50px !important;
                text-align: center;
            }

            .timeline .timeline-point:nth-child(3) .point-content {
                left: 30px !important;
                right: auto !important;
                text-align: center;
            }

            .timeline .timeline-point:nth-child(4) .point-content {
                left: auto !important;
                right: 40px !important;
                text-align: center;
            }
            
            .timeline .timeline-point:hover {
                transform: translateX(-50%) scale(1.03) !important;
            }
        }





        @media (max-width: 776px) {
    .services-section .container {
        padding: 60px 25px !important; 
    }
    
    .timeline .arch-shape {
        border-radius: 0 !important;
        background-color: transparent !important; 
    }
    
    .timeline-container {
        padding: 10px 0 !important; 
    }
    

    .container, .container-fluid {
        max-width: 100% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    

    .timeline-point:nth-child(1) .point-content,
    .timeline-point:nth-child(3) .point-content {
        left: 40px !important;
    }
    
    .timeline-point:nth-child(2) .point-content,
    .timeline-point:nth-child(4) .point-content {
        right: 40px !important;
    }
}









/* articleee?????????????????// */


        .main-heading {
            font-size: 2.8rem;
            font-weight: 700;
            color: #253D32;
            margin-bottom: 3rem;
  
      /* font-family: 'Plus Jakarta Sans'; */
      line-height: 70px;
                       font-family: 'Montserrat', sans-serif;
            font-weight: 800;

        }
        
        .featured-card {

            overflow: hidden;
            height: 100%;
        }
        
        .featured-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
           
        }
        

        .featured-date {
            color: #808371;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
      font-family: 'Rubik';

        }
        
        .article .featured-title {
            font-size: 1.7rem;
            font-weight: 500;
            color: #253D32;
            margin-bottom: 1rem;
            line-height: 1.3;
      /* font-family: 'Rubik'; */
                       font-family: 'Montserrat', sans-serif;
            font-weight: 800;

        }
        
        .article .featured-excerpt {
            color: #666;
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .article .read-more-btn {
            background: #000000;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-weight: 500;
      font-family: 'Rubik';

        }
        
        .article .read-more-btn:hover {
            background: #555;
            color: white;
            transform: translateY(-2px);
        }








        
        .article .carousel-section {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .article .carousel-container {
            position: relative;
            flex-grow: 1;
            /* overflow: hidden; */
            border-radius: 15px;
        }
        
        .article .carousel-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
            /* gap: 30px; */
        }
        
.article .carousel-slide {
    display: flex;
    gap: 35px;
    padding: 0 10px;
}

.owl-carousel .carousel-slide {
    overflow: hidden;
}


        
        .article .slide-card {
            flex: 1;

            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .article .slide-card:hover {
            transform: translateY(-5px);
        }
        
        .article .slide-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }
        
        .article .slide-content {
            padding: 20px 0px;
        }
        


                .article .slide-date {
            color: #808371;
            font-size: 0.7rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
      font-family: 'Rubik';

        }
        
        .article .slide-title {
            font-size: 1.1rem;
            font-weight: 500;
            color: #253D32;
            margin-bottom: 0.8rem;
            line-height: 35px;
      font-family: 'Rubik';

        }



        
        
        .article .slide-excerpt {
            color: #78847D;
            font-size: 0.9rem;
            line-height: 26px;
        }






        
        .article .carousel-controls {
            display: flex;
            justify-content: end;
            gap: 25px;
            margin-top: 2rem;
        }
        
        .article .carousel-btn {
            width: 80px;
            height: 50px;
            border: 1px solid black;
            border-radius: 30px;
            background: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #000000;
        }
        
        .article .carousel-btn:hover {
            background: black;
            color: white;
            transform: translateY(-2px);
        }
        
        .article .carousel-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }
        
        .article .carousel-btn:disabled:hover {
            background: white;
            color: #333;
        }
        
        @media (max-width: 768px) {
            .article .main-heading {
                font-size: 2.3rem;
                margin-bottom: 2rem;
      line-height: 50px;

            }
            .article{
              padding: 80px;
            }
            
            .article .carousel-slide {
                flex-direction: column;
            }
            
            .article .slide-card {
                margin-bottom: 20px;
            }
                    .article .carousel-controls {
            display: flex;
            justify-content: center;
     
        }
        }





































/* footeerrr? */




    footer {
      padding-top: 40px;
      background-color: #000000;
      
    }

    .footer-nav {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: end;
      gap: 50px;
      flex-wrap: wrap;
    }

    .footer-nav li a {
      text-decoration: none;
      color: #ccc;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .footer-nav li a:hover {
      color: #fff;
    }

    .footer-line {
      border-top: 1px solid #444;
      margin: 60px 0;
    }

    .footer-text {
      font-size: 0.9rem;
      color: #ccc;
      text-align: left;
    }

    .footer-icons {
      text-align: right;
    }

    .footer-icons a {
      display: inline-block;
      margin-left: 15px;
      color: #ccc;
      font-size: 1rem;
      border: 1px solid #555;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      line-height: 36px;
      text-align: center;
      transition: all 0.3s;
    }

    .footer-icons a:hover {
      color: white;
      border-color: white;
    }

    .footer-copy {
      text-align: left;
      font-size: 0.85rem;
      color: #FFFFFF;
      margin-top: 10px;
      padding-bottom: 20px;
      font-weight: 400;
    }

    @media (max-width: 576px) {
      .footer-text,
      .footer-icons {
        text-align: center;
      }

      .footer-icons a {
        margin-left: 10px;
        margin-right: 10px;
      }
    }

    @media (max-width:769px) {
        .footer-nav{
            justify-content: center;
            gap: 20px;
        }

            .footer-nav li a {
      
      font-size: 0.80rem;
      transition: color 0.3s;
    }

    @media (max-width: 576px) {
  .footer-copy {
    text-align: center;
  }
    }}