


        * {
            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%;
}





.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: 80%;
      border-radius: 20px;
    }


    .hero-section .channel-bar {
  justify-content: center;
}

.hero-section .channel-title {
  color: #0b0b0b;
  font-weight: 600;
  font-size: 1.2rem;
  white-space: nowrap;
}

.hero-section .channel-icon {
  font-size: 2rem;
  width: auto;
  object-fit: contain;
}

.hero-section .google-icon {
  color: #4285F4; 
}

.hero-section .microsoft-icon {
  color: #F25022; 
}





























        /* --- Service Card Styling --- */

.service-slider-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);

}

.service-slider-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.3));


  color: #f1f2f4;
  border-radius: 20px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-slider-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));

}

.service-slider-card h5 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.service-slider-card p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.icon-style {
  font-size: 32px;
  color: white; 

}

.service-slider-nav button {
  pointer-events: auto;  
  opacity: 1;
  cursor: pointer;
  font-size: 1.3rem;
  transition: 0.7s;
}
.slider-prev,
.slider-next {
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
  font-size: 1.3rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: rgb(230, 230, 230); 
  transform: scale(1.15); 
}

@media (max-width: 576px) {
  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}





















    .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(202, 45, 45);
      color: #fdfdfd;
    }

    .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-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
        }

        .faq-title {
            color: #212529;
            font-size: 3.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 50px;
            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;
        }








































        
        .timeline-container {
            /* 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-wrapper {
            position: relative;
            z-index: 2;
            height: 100px;
            display: flex;
            align-items: center;
        }


                .timeline .main-title {
          
            font-size: 3.6rem;
            color: #181717;
            text-align: center;
           
            font-weight: 600;
            position: relative;
            z-index: 2;
            letter-spacing: -0.02em;
            padding-top: 40px;
            margin-bottom: 0px !important;
            padding-bottom: 0px !important;
            
        }

        .timeline-line {
            position: absolute;
            top: 50%;
            left: 8%;
            right: 8%;
            height: 3px;
            background: #3c3838
;
            border-radius: 2px;
            transform: translateY(-50%);
       
        }

        .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: 60px;
            height: 60px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
            color: #000;
            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::before {
            content: '';
            position: absolute;
            inset: -3px;
     
            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);
            background-color: rgb(7, 7, 7);
            color: white;
            box-shadow: 0 12px 35px rgba(6, 6, 6, 0.4);
        }

        .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: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: #1f1f1e
;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .timeline .point-description {
           
            font-size: 1rem;
            color: #232323;
            line-height: 1.6;
            font-weight: 400;
            transition: all 0.3s ease;
        }

        .timeline-point:hover .point-year {
            color: #ffffff;
            transform: translateY(-5px);
        }

        .timeline-point:hover .point-description {
            color: #393737;
            transform: translateY(-3px);
        }

        .timeline-point:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .timeline-point::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(14, 14, 14, 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;
        }

        @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.6rem;
            }
            
            .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: 2.5rem;
                margin-bottom: 70px;
            }
            
            .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 .main-title {
                font-size: 2rem;
                margin-bottom: 60px;
            }
            
            .timeline-wrapper {
                height: 600px;
                width: 100%;
            }
            

            .timeline-line {
                top: 8%;
                bottom: 8%;
                left: 50%;
                right: auto;
                width: 3px;
                height: auto;
                transform: translateX(-1.5px);
                z-index: 1;
                
            }
            

            .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: 30px;
                height: 30px;
                font-size: 1rem;
                z-index: 4;
                position: relative;
            }
            
            .timeline .point-year {
                font-size: 1.4rem;
            }
            
            .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 .main-title {
                font-size: 2rem;
                /* margin-bottom: 20px; */
            }
            
            .timeline-wrapper {
                height: 550px;
            }

            .timeline-line {
                top: 8%;
                bottom: 8%;
                left: 50%;
                right: auto;
                width: 3px;
                height: auto;
                transform: translateX(-1.5px);
                z-index: 1;
                background: #f9d742
;
            }
            
 
            .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: 1.1rem;
            }
            
            .timeline .point-description {
                font-size: 0.7rem;
            }
            
            .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;
    }
}





















/* 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;
  }
}

