 :root {
     --primary-color: #00339E;
     --secondary-color: #FF6B00;
     --light-color: #F5F7FA;
     --dark-color: #1A1A1A;
 }

 body {
     font-family: 'Poppins', sans-serif;
     overflow-x: hidden;
     color: #333;
 }

 .navbar {
     background-color: white;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
     padding: 15px 0;
     transition: all 0.3s;
 }

 .navbar.scrolled {
     padding: 10px 0;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .navbar-brand {
     font-weight: 700;
     font-size: 1.8rem;
     color: var(--primary-color);
 }

 .navbar-brand .logoimage {
     width: 200px;
 }

 .nav-link {
     color: var(--dark-color) !important;
     font-weight: 600;
     margin: 0 10px;
     transition: all 0.3s;
     position: relative;
     font-size: 18px
 }

 .nav-link:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background-color: var(--primary-color);
     transition: all 0.3s;
 }

 .nav-link:hover:after {
     width: 100%;
 }

 .nav-link.active {
     color: var(--primary-color) !important;
 }

 .btn-primary {
         background-color: var(--primary-color);
    border: none;
     width: 100%;
     padding: 8px;
     font-weight: 600;
     border-radius: 8px;
         transition: all 0.3s;
 }

 .btn-primary:hover {
     background-color: #00257a;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .btn-secondary {
     background-color: var(--secondary-color);
     border: none;
     padding: 12px 30px;
     font-weight: 600;
     border-radius: 30px;
     transition: all 0.3s;
 }

 .btn-secondary:hover {
     background-color: #e05a00;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 /* Hero Slider */
 .hero-slider {
     position: relative;
     width: 100%;
     height: 100vh;
     min-height: 600px;
     overflow: hidden;
 }

 .hero-slider .carousel,
 .hero-slider .carousel-inner,
 .hero-slider .carousel-item {
     height: 100%;
 }

 .hero-slider .carousel-item {
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     position: relative;
 }

 .hero-slider .carousel-item::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to right, rgba(0, 51, 158, 0.8), rgba(0, 51, 158, 0.5));
     z-index: 1;
 }

 .hero-slider .hero-content {
     position: relative;
     z-index: 2;
     max-width: 800px;
     padding: 0 15px;
 }

 .hero-slider .hero-title {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.2;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
 }

 .hero-slider .hero-subtitle {
     font-size: 1.5rem;
     margin-bottom: 30px;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
 }

 /* Carousel Controls */
 .hero-slider .carousel-control-prev,
 .hero-slider .carousel-control-next {
     width: 60px;
     height: 60px;
     background-color: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     top: 50%;
     transform: translateY(-50%);
     opacity: 1;
     transition: all 0.3s;
     z-index: 3;
 }

 .hero-slider .carousel-control-prev:hover,
 .hero-slider .carousel-control-next:hover {
     background-color: var(--primary-color);
 }

 .hero-slider .carousel-control-prev {
     left: 30px;
 }

 .hero-slider .carousel-control-next {
     right: 30px;
 }

 .hero-slider .carousel-indicators {
     bottom: 40px;
     z-index: 3;
 }

 .hero-slider .carousel-indicators button {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     border: 2px solid white;
     background: transparent;
     opacity: 1;
     transition: all 0.3s;
 }

 .hero-slider .carousel-indicators button.active {
     background-color: white;
     transform: scale(1.2);
 }

 /* Responsive Adjustments */
 @media (max-width: 992px) {
     .hero-slider .hero-title {
         font-size: 2.8rem;
     }

     .hero-slider .hero-subtitle {
         font-size: 1.3rem;
     }
 }

 @media (max-width: 768px) {
     .hero-slider {
         height: 80vh;
         min-height: 500px;
     }

     .hero-slider .hero-title {
         font-size: 2.2rem;
     }

     .hero-slider .hero-subtitle {
         font-size: 1.1rem;
     }

     .hero-slider .carousel-control-prev,
     .hero-slider .carousel-control-next {
         width: 50px;
         height: 50px;
     }
 }

 @media (max-width: 576px) {
     .hero-slider {
         height: 70vh;
         min-height: 400px;
     }

     .hero-slider .hero-title {
         font-size: 1.8rem;
     }

     .hero-slider .hero-subtitle {
         font-size: 1rem;
     }

     .hero-slider .carousel-indicators {
         bottom: 20px;
     }
 }

 /* Section Styling */
 .section {
     padding: 50px 0;
 }

 .section-title {
     font-size: 2.2rem;
     font-weight: 700;
     color: var(--primary-color);
     margin-bottom: 50px;
     position: relative;
     text-align: center;
 }

 .section-title:after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background-color: var(--secondary-color);
 }

 /* About Section */
 .about_section {
     background-attachment: fixed;
     background-position: 50%;
     background-repeat: no-repeat;
     background-size: cover;
     position: relative;
     z-index: 999;
 }

 .about_section_overlay {
     background-color: #00000094;
     height: 100%;
     overflow: hidden;
     position: absolute;
     width: 100%;
     z-index: -999;
 }

 .about_content_pera {
     color: #fff;
     letter-spacing: 0.3px;
 }

 .about-img {
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     height: 100%;
     object-fit: cover;
 }

 .about-content {
     background-color: var(--light-color);
     border-radius: 10px;
     padding: 40px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     height: 100%;
 }

 .aboutoverlay {
     /* background-color: #0000008f; */
     padding: 40px 0px 30px 0px;
     /* border-radius: 10px; */
 }

 .About_UL {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .about_LI {
     display: flex;
     align-items: start;
     letter-spacing: 0.3px;
     line-height: 25px;
 }

 .about_LI i {
     font-size: 15px;
     /* font-weight: 100; */
     flex-shrink: 0;
     margin-right: 8px;
     margin-top: 6px;
     width: 16px;
     color: #b90a0a;
 }

 /* Features Section */
 .feature-card {
     background-color: white;
     border-radius: 10px;
     padding: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     height: 100%;
     transition: all 0.3s;
     text-align: center;
     border-bottom: 4px solid transparent;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
     border-bottom: 4px solid var(--primary-color);
 }

 .feature-icon {
     font-size: 3rem;
     color: var(--primary-color);
     margin-bottom: 20px;
 }

 /* Services Section */
 .service-card {
     border: none;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.3s;
     margin-bottom: 30px;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .service-img {
     height: 200px;
     object-fit: cover;
 }

 /* How It Works */
 .step-card {
     background-color: white;
     border-radius: 10px;
     padding: 30px 38px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     height: 100%;
     transition: all 0.3s;
     /* text-align: center; */
     position: relative;
     border-top: 4px solid var(--primary-color);
 }

 .step-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .step-number {
     font-size: 3rem;
     font-weight: 700;
     color: var(--primary-color);
     margin-bottom: 20px;
     opacity: 0.2;
     position: absolute;
     top: 10px;
     right: 20px;
 }

 /* Testimonials */
 .testimonial-slider .owl-stage-outer {
     padding: 20px 0;
 }

 .testimonial-card {
     background-color: white;
     border-radius: 10px;
     padding: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     margin: 10px;
     transition: all 0.3s;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .testimonial-img {
     width: 100px !important;
     height: 100px;
     border-radius: 50%;
     object-fit: cover;
     margin-bottom: 20px;
     border: 3px solid var(--primary-color);
 }

 .testimonial-quote {
     font-style: italic;
     position: relative;
 }

 .testimonial-quote:before {
     content: '"';
     font-size: 3rem;
     color: var(--primary-color);
     opacity: 0.2;
     position: absolute;
     top: -20px;
     left: -20px;
 }

 /* FAQ */
 .accordion-button:not(.collapsed) {
     background-color: rgba(0, 51, 158, 0.1);
     color: var(--primary-color);
 }

 .accordion-button:focus {
     box-shadow: none;
     border-color: rgba(0, 51, 158, 0.2);
 }

 /* Contact */
 .contact-card {
     background-color: white;
     border-radius: 10px;
     padding: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     height: 100%;
     transition: all 0.3s;
     text-align: center;
 }

 .contact-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .contact-icon {
     font-size: 2.5rem;
     color: var(--primary-color);
     margin-bottom: 20px;
 }


 /* Contact Section Styles */
 .contact-form-card,
 .contact-info-card {
     background-color: white;
     border-radius: 10px;
     padding: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     height: 100%;
 }

 .contact-form-card h3,
 .contact-info-card h3 {
     color: var(--primary-color);
     margin-bottom: 25px;
     position: relative;
     padding-bottom: 10px;
 }

 .contact-form-card h3:after,
 .contact-info-card h3:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 3px;
     background-color: var(--secondary-color);
 }

 .contact-info-item {
     display: flex;
     margin-bottom: 20px;
     align-items: flex-start;
 }

 .contact-icon {
     width: 50px;
     height: 50px;
     background-color: rgba(0, 51, 158, 0.1);
     color: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     margin-right: 15px;
     flex-shrink: 0;
 }

 .contact-details h4 {
     color: var(--primary-color);
     margin-bottom: 5px;
     font-size: 1.1rem;
 }

 .contact-details p {
     margin-bottom: 0;
     color: #555;
 }

 .form-control {
     border-radius: 8px;
     padding: 12px 15px;
     border: 1px solid #ddd;
     transition: all 0.3s;
 }

 .form-control:focus {
     border-color: var(--primary-color);
     box-shadow: 0 0 0 0.25rem rgba(0, 51, 158, 0.1);
 }

 textarea.form-control {
     min-height: 120px;
 }



 .contact-hours {
     background-color: rgba(0, 51, 158, 0.05);
     padding: 15px;
     border-radius: 8px;
     margin-top: 30px;
 }

 .contact-hours h4 {
     color: var(--primary-color);
     margin-bottom: 10px;
 }

 @media (max-width: 767px) {
     .contact-info-item {
         flex-direction: column;
     }

     .contact-icon {
         margin-bottom: 10px;
         margin-right: 0;
     }
 }

 /* CTA */
 .cta-section {
     background: linear-gradient(rgba(0, 51, 158, 0.9), rgba(0, 51, 158, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
     background-size: cover;
     background-position: center;
     padding: 80px 0;
     color: white;
 }

 /* Footer */
 footer {
     background-color: var(--dark-color);
     color: white;
     padding: 60px 0 20px;
 }

 .footer-logo {
     font-size: 1.8rem;
     font-weight: 700;
     color: white;
     margin-bottom: 20px;
     display: inline-block;
 }

 .footer-links h4 {
     font-size: 1.2rem;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-links h4:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 2px;
     background-color: var(--secondary-color);
 }

 .footer-links ul {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     color: #ccc;
     text-decoration: none;
     transition: all 0.3s;
 }

 .footer-links a:hover {
     color: white;
     padding-left: 5px;
 }

 .social-icons a {
     display: inline-block;
     width: 40px;
     height: 40px;
     background-color: rgba(255, 255, 255, 0.1);
     color: white;
     border-radius: 50%;
     text-align: center;
     line-height: 40px;
     margin-right: 10px;
     transition: all 0.3s;
 }

 .social-icons a:hover {
     background-color: var(--primary-color);
     transform: translateY(-5px);
 }

 /* Animations */
 .animate-on-scroll {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.6s ease-out;
 }

 .animate-on-scroll.animated {
     opacity: 1;
     transform: translateY(0);
 }




 /*Site Fixed WhatsApp And Phone Btn*/
 .eKqTko {
     bottom: 50% !important;
     position: fixed !important;
 }

 .fixed-tabs-Whats {
     position: fixed;
     right: 0px;
     bottom: 218px;
     z-index: 999;
 }

 .aba-whatsphone {
     background: #00339E;
     height: 60px;
     width: 70px;
     border-radius: 30px 0 0 30px;
     transition: 0.7s ease;
 }

 .aba-whatsphone:hover {
     width: 200px;
     transition: 0.7s ease;
 }

 .aba-whatsphone-icone {
     background-image: url('../upload/wdownload.png');
     background-repeat: no-repeat;
     width: 280px;
     background-size: 44px;
     background-position: 16px 7px;
     padding: 7px;
     height: 60px;
 }

 .aba-whatsphone-icone a {
     color: #ffffff;
     font-size: 14px;
     line-height: 0px;
     margin-left: 70px;
     text-decoration: none;
     height: 60px;
     font-family: sans-serif;
 }

 .aba-whatsphone-icone a strong {
     display: block;
     font-size: 21px;
     margin-left: 70px;
 }

 .fixed-tabs-mag {
     position: fixed;
     right: 0px;
     bottom: 150px;
     z-index: 999;
 }

 .aba-whatsphone-iconem {
     background-image: url('../upload/mass-removebg-preview.png');
     background-repeat: no-repeat;
     width: 280px;
     background-size: 44px;
     background-position: 16px 7px;
     padding: 7px;
     height: 60px;
 }

 .aba-whatsphone-iconem a {
     color: #ffffff;
     font-size: 14px;
     line-height: 0px;
     margin-left: 70px;
     text-decoration: none;
     height: 60px;
     font-family: sans-serif;
 }

 .aba-whatsphone-iconem a strong {
     display: block;
     font-size: 21px;
     margin-left: 70px;
 }

 @media (max-width: 991px) {
     .fixed-tabs-Whats {
         position: fixed;
         right: 0px;
         top: 55%;
         z-index: 100;
     }

     .fixed-tabs-mag {
         position: fixed;
         right: 0;
         z-index: 100;
         top: 65%;
     }

     .select2-container {
         width: 100% !important;
     }
 }

 .text-box p {
     margin-bottom: 10px;
 }

 /*Site Fixed WhatsApp And Phone Btn*/

 /* Responsive */
 @media (max-width: 992px) {
     .hero-title {
         font-size: 2.5rem;
     }

     .section-title {
         font-size: 2rem;
     }

     .navbar-brand .logoimage {
         width: 175px;
     }
 }

 @media (max-width: 768px) {
     .hero-slider {
         height: 60vh;
     }

     .hero-title {
         font-size: 2rem;
     }

     .hero-subtitle {
         font-size: 1rem;
     }
 }