
        * {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background: #f8faff;
            overflow-x: hidden;
        }

        :root {
            --primary-blue: #0a4b8a;
            --secondary-blue: #1a6bb0;
            --light-blue: #e6f0fa;
            --white: #ffffff;
            --shadow-sm: 0 8px 24px rgba(10, 75, 138, 0.08);
            --shadow-hover: 0 16px 40px rgba(10, 75, 138, 0.18);
        }

        .bg-royal-blue {
            background: var(--primary-blue);
        }

        .text-royal-blue {
            color: var(--primary-blue);
        }

        .btn-primary-custom {
            background: var(--primary-blue);
            color: #fff;
            border-radius: 40px;
            padding: 10px 28px;
            font-weight: 600;
            border: none;
            transition: 0.3s;
        }

        .btn-primary-custom:hover {
            background: #063a6b;
            transform: translateY(-2px);
            box-shadow: 0 12px 20px rgba(10, 75, 138, 0.3);
            color: #fff;
        }

        .btn-outline-primary-custom {
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            border-radius: 40px;
            padding: 10px 28px;
            font-weight: 600;
            transition: 0.3s;
            background: transparent;
        }

        .btn-outline-primary-custom:hover {
            background: var(--primary-blue);
            color: #fff;
            transform: translateY(-2px);
        }
        section{
            overflow: hidden;
        }

        .section-title {
            font-weight: 700;
            color: var(--primary-blue);
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-blue);
            border-radius: 4px;
        }

        .card-hover {
            transition: all 0.3s ease;
            border: none;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            background: #fff;
        }

        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .navbar {
            background: rgba(255, 255, 255, 0.96) !important;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            padding: 12px 0;
            transition: 0.3s;
        }

        .navbar-brand img {
            height: 50px;
            object-fit: contain;
        }

        .nav-link {
            font-weight: 500;
            color: #1a2b3e !important;
            margin: 0 8px;
            transition: 0.2s;
        }

        .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        .top-bar {
            background: var(--primary-blue);
            color: #fff;
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .top-bar a {
            color: #fff;
            text-decoration: none;
            margin-right: 20px;
            transition: 0.2s;
        }

        .top-bar a:hover {
            color: #ffd966;
        }

        .top-bar .social-icons a {
            margin: 0 6px;
            font-size: 1.1rem;
        }

        .hero-carousel .carousel-item {
            height: 80vh;
            min-height: 500px;
            background-size: cover;
            background-position: center;
        }

        .hero-carousel .carousel-item:first-child {
            background-image: linear-gradient(135deg, rgba(10, 75, 138, 0.8), rgba(26, 107, 176, 0.6)), url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?w=1600&q=80');
        }

        .hero-carousel .carousel-item:nth-child(2) {
            background-image: linear-gradient(135deg, rgba(10, 75, 138, 0.8), rgba(26, 107, 176, 0.6)), url('https://images.unsplash.com/photo-1563461660947-507ef49e9c47?w=1600&q=80');
        }

        .hero-carousel .carousel-item:nth-child(3) {
            background-image: linear-gradient(135deg, rgba(10, 75, 138, 0.8), rgba(26, 107, 176, 0.6)), url('https://images.unsplash.com/photo-1606811971618-4486d14f3f99?w=1600&q=80');
        }

        .hero-content {
            max-width: 700px;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: 3.2rem;
            font-weight: 700;
        }

        .hero-content p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .floating-buttons a {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #fff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
            text-decoration: none;
        }

        .floating-buttons .call-btn {
            background: #25d366;
        }

        .floating-buttons .whatsapp-btn {
            background: #075e54;
        }

        .floating-buttons a:hover {
            transform: scale(1.08);
        }

        .counter-box {
            font-weight: 700;
            font-size: 2.5rem;
            color: var(--primary-blue);
        }

        .gallery-img {
            border-radius: 16px;
            overflow: hidden;
            transition: 0.4s;
            cursor: pointer;
        }

        .gallery-img img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: 0.4s;
        }

        .gallery-img:hover img {
            transform: scale(1.08);
        }

        .gallery-section {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    animation: zoomIn .4s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    transition: .3s;
}

.close-btn:hover {
    color: #ffc107;
}

@keyframes zoomIn {
    from{
        transform: scale(.7);
        opacity:0;
    }
    to{
        transform: scale(1);
        opacity:1;
    }
}

/* Responsive */

@media(max-width:768px){

    .gallery-item img{
        height:220px;
    }

    .close-btn{
        font-size:35px;
        right:20px;
    }

    #lightbox img{
        max-width:95%;
    }
}
        .timeline-step {
            background: #fff;
            border-radius: 30px;
            padding: 20px 20px;
            box-shadow: var(--shadow-sm);
            transition: 0.3s;
            border-left: 6px solid var(--primary-blue);
        }

        .timeline-step:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .testimonial-card {
            border-radius: 24px;
            background: #fff;
            padding: 28px;
            box-shadow: var(--shadow-sm);
        }

        .testimonial-card .stars {
            color: #f9b81b;
            letter-spacing: 3px;
        }

        .faq-accordion .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .faq-accordion .accordion-button {
            background: #fff;
            font-weight: 600;
            color: var(--primary-blue);
            border: none;
            padding: 18px 24px;
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: var(--light-blue);
            color: var(--primary-blue);
            box-shadow: none;
        }

        .map-container iframe {
            width: 100%;
            height: 300px;
            border-radius: 24px;
            border: 0;
        }

        .footer {
            background: #0a2a4a;
            color: #d6e4f0;
            padding: 50px 0 20px;
        }

        .footer a {
            color: #b6d0e8;
            text-decoration: none;
            transition: 0.2s;
        }

        .footer a:hover {
            color: #fff;
        }

        .footer .social-icons a {
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 8px;
            transition: 0.3s;
        }

        .footer .social-icons a:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }

        .cta-section {
            background: linear-gradient(135deg, #0a4b8a, #1a6bb0);
            border-radius: 40px;
            padding: 60px 30px;
        }

        .modal-content {
            border-radius: 28px;
            border: none;
            padding: 10px;
        }

        .modal-header {
            border: none;
        }

        .btn-close {
            background: transparent;
        }

        @media (max-width: 768px) {
            .hero-carousel .carousel-item {
                height: 70vh;
                min-height: 400px;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .top-bar .container {
                flex-direction: column;
                gap: 6px;
            }

            .top-bar .contact-info {
                flex-wrap: wrap;
                justify-content: center;
            }
        }