 /* Custom Styles */
        body {
            font-family: 'Poppins', sans-serif;
            color: #444;
            line-height: 1.7;
        }

        :root {
            --bs-primary-rgb: 7, 59, 79; /* Dark Blue */
            --bs-secondary-rgb: 245, 128, 40; /* Orange */
        }

        .top-bar {
            background-color: #f8f9fa;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }
        
        .top-bar a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: #073b4f;
        }
        
        .top-bar .social-media a {
            margin-left: 15px;
            font-size: 1.1rem;
        }

        .navbar-brand img {
            max-height: 50px;
        }
        
        .navbar {
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease-in-out;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: #333;
            transition: color 0.3s;
            margin: 0 5px;
        }
        
        .navbar-nav .nav-link.active,
        .navbar-nav .nav-link:hover {
            color: #f58028;
        }

        .hero-slider .carousel-item {
            height: 90vh;
            min-height: 500px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .hero-slider .carousel-caption {
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
            text-align: left;
            padding: 0 5%;
        }

        .hero-slider .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
        }

        .hero-slider .carousel-caption p {
            font-size: 1.2rem;
            color: #fff;
            max-width: 600px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
        }
        
        .hero-slider .carousel-control-prev-icon,
        .hero-slider .carousel-control-next-icon {
            background-color: rgba(7, 59, 79, 0.7);
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
        }

        .btn-primary {
            background-color: #073b4f;
            border-color: #073b4f;
            padding: 12px 30px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #052c3a;
            border-color: #052c3a;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .btn-secondary {
            background-color: #f58028;
            border-color: #f58028;
            padding: 12px 30px;
            font-weight: 500;
            border-radius: 50px;
            color: #fff;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background-color: #d96d1c;
            border-color: #d96d1c;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .section-title {
            margin-bottom: 50px;
            text-align: center;
        }

        .section-title h2 {
            font-weight: 700;
            color: #073b4f;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #f58028;
        }

        #about {
            background-color: #f8f9fa;
        }

        #about .form-control, #about .form-select {
            min-height: 48px;
            border-radius: 8px;
        }

        .service-card {
            text-align: center;
            padding: 20px;
            border: 1px solid #eee;
            border-radius: 15px;
            transition: all 0.3s ease;
            height: 100%;
            background-color: #fff;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .service-card img {
            max-width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .service-card h4 {
            color: #073b4f;
            font-weight: 600;
        }
        
        .service-card a {
            color: #f58028;
            text-decoration: none;
            font-weight: 500;
        }

        #testimonials {
            background-color: #073b4f;
            color: #fff;
        }

        #testimonials .section-title h2 {
            color: #fff;
        }

        .testimonial-card {
            background-color: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
        }
        
        .testimonial-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid #f58028;
            margin-bottom: 15px;
        }

        .testimonial-card .name {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .testimonial-card .role {
            font-size: 0.9rem;
            color: #ddd;
        }

        .faq-section .accordion-item {
            border: 1px solid #ddd;
            margin-bottom: 15px;
            border-radius: 10px !important;
        }
        
        .faq-section .accordion-button {
            font-weight: 600;
            color: #073b4f;
        }

        .faq-section .accordion-button:not(.collapsed) {
            background-color: #073b4f;
            color: #fff;
        }
        
        .faq-section .accordion-button:focus {
            box-shadow: none;
        }

        .success-story-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .success-story-card img {
            transition: transform 0.4s ease;
        }
        
        .success-story-card:hover img {
            transform: scale(1.1);
        }

        .success-story-card .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: #fff;
            padding: 20px;
        }
        
        .success-story-card h5 {
            font-weight: 600;
        }

        #contact {
            background-color: #f8f9fa;
        }

        .contact-info i {
            font-size: 2rem;
            color: #f58028;
            margin-right: 15px;
        }
        
        .contact-info h5 {
            color: #073b4f;
            font-weight: 600;
        }

        footer {
            background-color: #073b4f;
            color: #ccc;
        }

        footer h5 {
            color: #fff;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        footer a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        footer a:hover {
            color: #f58028;
        }
        
        footer .social-footer a {
            display: inline-block;
            margin-right: 15px;
            font-size: 1.5rem;
        }

        .footer-bottom {
            background-color: #052c3a;
            padding: 15px 0;
            color: #aaa;
            font-size: 0.9rem;
        }

        @media (max-width: 991.98px) {
            .hero-slider .carousel-item {
                height: 70vh;
            }
            .hero-slider .carousel-caption h1 {
                font-size: 2.5rem;
            }
             .hero-slider .carousel-caption p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 767.98px) {
             .top-bar {
                text-align: center;
             }
             .top-bar .social-media {
                margin-top: 5px;
             }
             .hero-slider .carousel-item {
                height: 60vh;
            }
             .hero-slider .carousel-caption {
                text-align: center;
             }
             .hero-slider .carousel-caption p {
                margin: 0 auto;
             }
        }
        
        
        
        
        
        
        
        
        
        #about-hero {
            background: linear-gradient(rgba(7, 59, 79, 0.8), rgba(7, 59, 79, 0.9)), url('images/slider/2.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }

        .mission-vision-box {
            border: 2px solid #f58028;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }

        .mission-vision-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(245, 128, 40, 0.15);
        }

        .mission-vision-box h4 {
            color: #073b4f;
            margin-bottom: 20px;
        }

        .team-card {
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            transition: all 0.3s ease;
            height: 100%;
            background-color: #f8f9fa;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .team-card img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 20px;
            border: 3px solid #f58028;
        }

        .values-list {
            list-style: none;
            padding: 0;
        }

        .values-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 30px;
        }

        .values-list li:before {
            content: '✓';
            color: #f58028;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .stats-box {
            background-color: #073b4f;
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
        }

        .stats-box .number {
            font-size: 3rem;
            font-weight: 700;
            color: #f58028;
            display: block;
        }

        .stats-box .label {
            font-size: 1.2rem;
            margin-top: 10px;
        }

        .process-step {
            text-align: center;
            padding: 20px;
        }

        .process-step .step-number {
            width: 60px;
            height: 60px;
            background-color: #f58028;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        

        @media (max-width: 767.98px) {
            #about-hero {
                padding: 80px 0 50px;
            }
        }
        
        
        /* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    color: #ffffff;
    text-decoration: none;
}

