  * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        overflow-x: hidden;
        color: white;
        background: linear-gradient(-45deg, #0f172a, #800000, #0f172a, #c14545);
        background-size: 400% 400%;
        animation: animatedGradient 20s ease infinite;
    }

    @keyframes animatedGradient {
        0%   { background-position: 0% 50%; }
        50%  { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    h2, h3, h4, h5, h6, .logo {
        font-family: 'Poppins', sans-serif;
    }

    .hero {
        min-height: 100vh;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 0;
    }

    .hero::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,.03) 10px,
            rgba(255,255,255,.03) 20px
        );
        animation: slide 20s linear infinite;
    }

    @keyframes slide {
        0%   { transform: translate(0, 0); }
        100% { transform: translate(50px, 50px); }
    }

    .floating-shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        overflow: hidden;
        z-index: 1;
    }

    .shape {
        position: absolute;
        opacity: 0.1;
        background: white;
        animation-name: float;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50%      { transform: translateY(-30px) rotate(180deg); }
    }

    .shape:nth-child(1)  { width:100px; height:100px; border-radius:50%; top:20%; left:10%; animation:float 15s infinite 0s; }
    .shape:nth-child(2)  { width:120px; height:120px; border-radius:30% 70% 70% 30% / 30% 30% 70% 70%; top:60%; left:80%; animation:float 17s infinite 2s; }
    .shape:nth-child(3)  { width:100px; height:100px; border-radius:50%; top:40%; left:70%; animation:float 14s infinite 4s; }
    .shape:nth-child(4)  { width:60px; height:60px; border-radius:50%; top:80%; left:20%; animation:float 16s infinite 1s; }
    .shape:nth-child(5)  { width:40px; height:40px; border-radius:50%; top:50%; left:45%; opacity:0.15; animation:float 12s infinite 3s; }

    .container {
        position: relative;
        z-index: 10;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        text-align: center;
    }

    .logo {
        width: 170px;
        height: 170px;
        margin: 0 auto 30px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 48px;
        font-weight: bold;
        color: #800000;
        box-shadow: 0 20px 60px rgba(255,107,157,0.4);
        overflow: hidden;
    }

    .logo-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    h1 {
        font-family: 'Dancing Script', cursive;
        font-weight: 700;
        font-size: 4rem;
        color: white;
        margin-bottom: 20px;
        text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        animation: fadeInUp 0.8s ease;
    }

    .subtitle {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0 auto 50px;
        max-width: 600px;
        line-height: 1.6;
        animation: fadeInUp 0.8s ease 0.2s both;
    }

    .subtitle2 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.1rem;
        color: rgba(255,255,255,0.85);
        max-width: 700px;
        margin: -20px auto 50px;
        line-height: 1.7;
        animation: fadeInUp 0.8s ease 0.4s both;
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .cards-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 60px;
    }

    .card {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 40px 30px;
        border: 2px solid rgba(255,255,255,0.3);
        box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        cursor: pointer;
        text-decoration: none;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        overflow: hidden;
        animation: fadeInUp 0.8s ease both;
    }

    .card:nth-child(1) { animation-delay: 0.4s; }
    .card:nth-child(2) { animation-delay: 0.6s; }

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .card:hover::before { left: 100%; }

    .card:hover {
        background: rgba(255,255,255,0.15);
        box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }

    .card-icon {
        width: 80px;
        height: 80px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        margin-bottom: 20px;
        color: #800000;
        transition: transform 0.4s;
    }

    .card:hover .card-icon {
        transform: rotate(360deg) scale(1.1);
    }

    .card h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .card p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: rgba(255,255,255,0.8);
    }

    .features-section {
        margin-top: 100px;
        padding: 80px 20px;
        border-radius: 30px;
        background: rgba(0,0,0,0.3);
        backdrop-filter: blur(10px);
        border: 3px solid rgba(255,255,255,0.25);
        box-shadow: 0 0 50px rgba(0,0,0,0.4), inset 0 0 30px rgba(0,0,0,0.2);
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .features-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .section-title {
        font-family: 'Poppins', sans-serif;
        font-size: 2.2rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 50px;
        color: #fff;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: #ffffff;
        margin: 15px auto 0;
        border-radius: 2px;
    }

    .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .feature {
        background: rgba(255,255,255,0.06);
        padding: 25px;
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.1);
        text-align: left;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .feature:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,0.1);
    }

    .feature h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #fff;
        margin: 15px 0 10px;
    }

    .feature p {
        font-size: 1rem;
        line-height: 1.6;
        color: rgba(255,255,255,0.8);
    }

    .gallery-slider {
        position: relative;
        max-width: 100%;
        overflow: hidden;
        padding: 20px 60px;
    }

    .gallery-container {
        overflow: hidden;
        border-radius: 20px;
    }

    .gallery-track {
        display: flex;
        transition: transform 0.5s ease;
        gap: 20px;
    }

    .gallery-item {
        flex: 0 0 calc(33.333% - 14px);
        cursor: pointer;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        transition: transform 0.3s ease;
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }

    .gallery-item:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .gallery-item img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
    }

    .gallery-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: white;
        padding: 20px 15px 15px;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255,255,255,0.3);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-btn:hover {
        background: rgba(255,255,255,0.3);
        transform: translateY(-50%) scale(1.1);
    }

    .slider-btn.prev { left: 10px; }
    .slider-btn.next { right: 10px; }

    .title-decoration {
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #ff6b9d, transparent);
        margin: 0 auto 25px;
        border-radius: 2px;
        animation: fadeInUp 0.8s ease 0.3s both;
    }

    .tagline-secondary {
        font-size: 1.05rem;
        font-weight: 300;
        color: rgba(255,255,255,0.85);
        max-width: 750px;
        margin: 0 auto 45px;
        line-height: 1.7;
        padding: 20px 30px;
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 1px solid rgba(255,255,255,0.15);
        animation: fadeInUp 0.8s ease 0.4s both;
    }

    .highlight {
        font-weight: 600;
        color: #fff;
    }

    .footer {
        margin-top: 80px;
        padding-top: 40px;
        border-top: 1px solid rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.8);
        text-align: center;
    }
    
    /* =========================================================
    LIGHTBOX (From Version 1)
    ========================================================= */
    .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.95);
        z-index: 1000;
        align-items: center;
        justify-content: center;
    }

    .lightbox.active {
        display: flex;
    }

    .lightbox-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
    }

    .lightbox-content img {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 10px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }

    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255,255,255,0.3);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 28px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .lightbox-close:hover {
        background: rgba(255,255,255,0.3);
        transform: scale(1.1);
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255,255,255,0.3);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox-nav:hover {
        background: rgba(255,255,255,0.3);
        transform: translateY(-50%) scale(1.1);
    }

    .lightbox-nav.prev {
        left: 30px;
    }

    .lightbox-nav.next {
        right: 30px;
    }

    .lightbox-caption {
        text-align: center;
        color: white;
        font-size: 1.3rem;
        margin-top: 20px;
        font-weight: 600;
    }

    @media (max-width: 768px) {
        h1 { font-size: 2.8rem; }
        .gallery-item { flex: 0 0 calc(50% - 10px); }
        .gallery-slider { padding: 20px 50px; }
        
        /* Lightbox Responsive */
        .lightbox-nav { width: 45px; height: 45px; font-size: 24px; }
        .lightbox-nav.prev { left: 15px; }
        .lightbox-nav.next { right: 15px; }
    }

    @media (max-width: 480px) {
        h1 { font-size: 2rem; }
        .gallery-item { flex: 0 0 100%; }
    }