



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }


       body{
            background-color: #e0dedf;

        }





.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: transparent;
            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 {
      background-color: transparent;
      color: #090909;
     
      padding-top: clamp(150px,4vw,230px);
    }

    .hero-section .section-title {
      font-size: clamp(2.6rem,4vw,3.3rem);
      font-weight: 700;
      margin-bottom: 1.2rem;
    }
    .hero-section .description {
      color: #262727;
      font-size: 1.2rem;
      line-height: 1.9;
    }

    .hero-section .paid-search-image {
      max-width: 90%;
      border-radius: 20px;
    }



.proposal-btn{
    background-color: red;
    color: white;
    font-weight: 800;
    border-radius: 10px;
    padding: 15px 25px;
}
.proposal-btn:hover{
    background-color: rgb(215, 44, 44);
    color: rgb(250, 246, 246);
}













.why-choose {

  color: #000;
  padding: 80px 20px;
}

.why-choose .container {
  max-width: 1200px;
  margin: 0 auto;
}

.heading-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.heading-wrapper h6 {
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
}

.heading-wrapper h6 span {
  color: #e52121;
}

.heading-wrapper h2 {
  font-size: 38px;
  font-weight: bold;
  margin-top: 10px;
}

.content-wrapper h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.content-wrapper p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}














.meta-ads-heading {
  font-weight: bold;
  font-size:clamp(1.6rem,3vw,2rem);
  text-transform: uppercase;
  background: linear-gradient(to right, #000, #ec6161);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.meta-ads-list li {
  font-size: clamp(1rem,2vw,1.2rem);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.meta-ads-list .tick {
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-btn {
  background-color: red;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: rgb(210, 38, 38);
  color: white;
}













.meta-ad-section {
  background-color: #181717;
  color: #fff;
}

.meta-ad-section .meta-ad-heading {
  font-size:clamp(1.6rem,3vw,2rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-ad-section .meta-ad-heading .highlight {
  color: #f94f4f;
}

.meta-ad-section .meta-ad-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.meta-ad-section .meta-ad-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.meta-ad-section .check-icon {
  color: #ff3d3d;
  font-size: 20px;
  line-height: 1.4;
  margin-right: 12px;
  flex-shrink: 0;
}

.meta-ad-section .meta-ad-text {
    font-size: clamp(1rem,2vw,1.2rem);

  font-weight: 400;
  line-height: 1.7;
}




















.solution .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .solution .small-heading {
            color: #0f0f0f;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .solution .main-heading {
            color: #111111;
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
        }
        
        .solution .description {
            color: #2c2a2a;
            font-size: 18px;
            line-height: 1.8;
            max-width: 1200px;
            margin: 0 auto;
        }


        
        .solution .service-card {
            /* background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1); */
            /* border-radius: 20px; */
            padding: 40px 30px;
            height: 100%;
            transition: all 0.3s ease;
            /* backdrop-filter: blur(10px); */
            position: relative;
            overflow: hidden;
        }
        
 
        
        .solution .service-card:hover::before {
            opacity: 1;
        }
        
        /* .solution .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 107, 107, 0.3);
            box-shadow: 0 20px 40px rgba(255, 107, 107, 0.1);
        } */
        
        .solution .service-card * {
            position: relative;
            z-index: 2;
        }
        
        .solution .card-icon {
            width: 80px;
            height: 80px;
            background: black;
            /* border: 2px solid #ff6b6b; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            transition: all 0.3s ease;
        }
        
   
        
        .solution .card-icon i {
            font-size: 32px;
            color: #fcfbfb;
        }
        
        .solution .card-title {
            color: #181818;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .solution .card-description {
            color: #454242;
            font-size: 18px;
            line-height: 1.6;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .solution .main-heading {
                font-size: 2.2rem;
            }
            
            .solution .description {
                font-size: 16px;
                padding: 0 15px;
            }
            
            .solution .service-card {
                margin-bottom: 30px;
                padding: 30px 20px;
            }
            
            .solution .card-title {
                font-size: 20px;
            }
            
           .solution  .card-description {
                font-size: 14px;
            }
        }
        
        @media (max-width: 576px) {
           .solution  .main-heading {
                font-size: 1.8rem;
            }
            
           .solution  .small-heading {
                font-size: 12px;
                letter-spacing: 2px;
            }
        }
        
        .solution .row-spacing {
            margin-bottom: 40px;
        }


























    .consultation-section {
      background-color: white;
      border-radius: 60px;
      padding: 80px 20px;
      position: relative;
      text-align: center;
      overflow: hidden;
    }

    .consultation-section h1 {
      font-weight: 700;
      font-size:2.6rem;
            /* font-family: 'Plus Jakarta Sans', sans-serif; */
            font-family: 'Montserrat', sans-serif;
      

      line-height: 1.2;
      color: #000;
    }



    .get-proposal-btn {
      background-color: red;
      color: #fff;
      padding: 14px 30px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
            font-family: 'Rubik', sans-serif;

      border: none;
      margin-top: 30px;
      display: inline-flex;
      align-items: center;
      transition: background-color 0.3s ease;
    }

    .get-proposal-btn:hover {
      background-color: rgb(208, 46, 46);
      color: #fdfbfb;
    }

    .get-proposal-btn i {
      margin-left: 10px;
    }



    @media (max-width: 768px) {
      .consultation-section h1 {
        font-size: 26px;
      }
      .rocket-img {
        width: 80px;
        right: 20px;
        top: -20px;
      }
    }














    .faq-header {
  margin-bottom: 40px;
  color: #0d0d0d;
}




.faq-main-title {
  font-size: clamp(1.6rem,4vw,2.2rem);
  font-weight: 700;
  margin-bottom: 30px;
            text-align: center;
            color: #2d2c2c;

}


        .faq-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
        }

        .faq-label {
            color: #212529;
            font-size: 3rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 10px;
            letter-spacing: 3px;
        }

        .accordion-item {
            background: transparent;
            border: none;
            margin-bottom: 15px;
    
            overflow: hidden;
            padding: 0 clamp(5px, 5vw, 100px);
          
        }

        .accordion-button {
            /* background: white; */
            color: #212529;
            border-bottom: 2px solid #dee2e6;
            padding: 25px 30px;
            font-size: 1.1rem;
            font-weight: 500;
          
            transition: all 0.3s ease;
            box-shadow: none;
        }

        .accordion-button:not(.collapsed) {
            background: #212529;
            color: white;
            border-color: #212529;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: #212529;
        }

        .accordion-button::after {
            background-image: none;
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 1.2rem;
            color: #212529;
            transition: transform 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            color: white;
        }

        /* .accordion-button:hover {
            background: #f8f9fa;
            border-color: #212529;
            transform: translateY(-2px);
        } */

        .accordion-body {
            background: #f8f9fa;
            color: #495057;
            padding: 30px;
            font-size: 1rem;
            line-height: 1.7;
            border-top: 1px solid #dee2e6;
        }

        .accordion-collapse {
            border-radius: 0 0 15px 15px;
        }

   

        @media (max-width: 768px) {
            .faq-section {
                padding: 20px;
                margin: 0 15px;
            }

            .faq-title {
                font-size: 2.5rem;
                margin-bottom: 30px;
            }

            .accordion-button {
                padding: 20px;
                font-size: 1rem;
            }

            .accordion-body {
                padding: 20px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 576px) {
            .faq-title {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .accordion-button {
                padding: 15px;
                font-size: 0.95rem;
            }
        }

        /* Smooth animation */
        .accordion-collapse {
            transition: height 0.35s ease;
        }








































        
  




















/* 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;
  }
    }}












.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;
 
  }
}

.service-pill:hover {
  background-color: #e0e0e0;
}

.service-pill.selected {
  background-color: #000;
  color: #fff;
  border-color: #000;
}








.modal-header .btn-close {
  filter: none; 

  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
}








.contact-box {
  max-width: 550px; 
  margin: 40px auto; 
  padding: 40px 30px; 

 

  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: 413px) {
    .service-pill {
  
      padding: 7px 7px;
      font-size: 10px;
 
  }


}

@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;
  }
}

