@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #752738;
    --secondary: #fec452;
    --accent: #fec452;
    --bg-light: #ffffff;
    --bg-alt: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #a33b4d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    box-shadow: none;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    height: 60px;
    width: 60px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.95rem;
    opacity: 0.9;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
    opacity: 1;
}

.nav-links a.active {
    font-weight: 700;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2000;
}

.mobile-toggle.active i::before {
    content: "\f00d";
    /* FontAwesome X icon */
}

.mobile-only {
    display: none;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(117, 39, 56, 0.4));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 8px 15px rgba(254, 196, 82, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(254, 196, 82, 0.4);
    background: #ffd37a;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #ffffff;
    color: var(--primary);
}

/* Sections Global */
section {
    padding: 120px 4%;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: #ffffff;
    padding: 120px 5%;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    flex: 1.1;
    z-index: 2;
}

.about-badge {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: rgba(117, 39, 56, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    /* Dynamic font size */
    margin-bottom: 2.5rem;
    line-height: 1.1;
    color: var(--primary);
}

.about-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 20px;
    background: transparent;
    transition: 0.4s;
}

.feature-item:hover {
    background: var(--bg-alt);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(117, 39, 56, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

.feature-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-images {
    flex: 0.9;
    position: relative;
    z-index: 1;
}

.image-grid {
    position: relative;
    height: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(117, 39, 56, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.img-large {
    width: 95%;
    height: 580px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.img-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.img-large .fade-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.img-large .fade-img.active {
    opacity: 1;
    z-index: 2;
}

.img-large:hover .fade-img {
    transform: scale(1.1);
}

.img-small {
    position: absolute;
    bottom: -20px;
    right: -40px;
    width: 280px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 5;
    transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.img-small:hover {
    transform: translateY(-20px) scale(1.05);
    z-index: 5;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-floating {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 320px;
    height: 200px;
    background: #ffffff;
    border-radius: 24px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transform: rotate(-3deg);
    z-index: 4;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: float 8s ease-in-out infinite;
    transition: 0.4s;
}

.shape-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.08;
    border-radius: 50%;
    top: -10%;
    right: -10%;
    z-index: 0;
    animation: blobMorph 15s linear infinite;
}

.shape-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.15;
    bottom: -40px;
    left: -40px;
    z-index: 1;
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 50% 50% 50% 50%;
        transform: scale(1);
    }

    33% {
        border-radius: 40% 60% 70% 30%;
        transform: scale(1.1);
    }

    66% {
        border-radius: 60% 40% 30% 70%;
        transform: scale(0.9);
    }
}

.img-floating:hover {
    transform: rotate(0deg) scale(1.03);
    z-index: 6;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-25px) rotate(-1deg);
    }
}

.img-floating img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* Responsiveness for About Section */
@media (max-width: 1200px) {
    .about-container {
        gap: 3rem;
    }
}

@media (max-width: 1100px) {
    .about {
        padding: 80px 5%;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .about-images {
        flex: none;
        width: 100%;
    }

    .about-content {
        max-width: 800px;
    }

    .about-text {
        margin: 0 auto 3rem;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .image-grid {
        height: 600px;
        margin-top: 50px;
    }

    .img-large {
        width: 100%;
        height: 480px;
    }

    .img-small {
        width: 220px;
        height: 160px;
        right: -10px;
        bottom: -20px;
    }

    .img-floating {
        width: 260px;
        height: 160px;
        top: -30px;
        left: -10px;
        transform: rotate(-2deg);
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) rotate(-2deg);
        }

        50% {
            transform: translateY(-15px) rotate(0deg);
        }
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 4%;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-images {
        flex: none;
        width: 100%;
        overflow: hidden;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .image-grid {
        height: 500px;
        padding-top: 40px;
    }

    .img-large {
        height: 400px;
        border-radius: 25px;
    }

    .img-small {
        width: 180px;
        height: 130px;
        border-width: 6px;
        bottom: -15px;
        right: -5px;
    }

    .img-floating {
        width: 220px;
        height: 140px;
        top: -20px;
        left: -5px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .about-text {
        margin-bottom: 2.5rem;
    }

    .image-grid {
        height: 420px;
        padding-top: 50px;
    }

    .img-large {
        height: 320px;
    }

    .img-small {
        width: 150px;
        height: 110px;
        border-width: 5px;
        right: 0;
    }

    .img-floating {
        width: 180px;
        height: 115px;
        top: -25px;
        left: 0;
        border-radius: 12px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 4rem 2.5rem;
    border-radius: 16px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    box-shadow: var(--card-shadow);
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.category-icon {
    width: 90px;
    height: 90px;
    background: rgba(117, 39, 56, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    color: var(--primary);
    font-size: 2.5rem;
    transition: 0.3s;
}

.category-card:hover .category-icon {
    background: var(--primary);
    color: #ffffff;
}

.category-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.category-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ID Status Section */
.id-section {
    background: var(--bg-alt);
    border-radius: 30px;
    padding: 100px 5%;
    display: flex;
    align-items: center;
    gap: 5rem;
    margin: 0 1%;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.id-content {
    flex: 1.2;
}

.id-status-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(117, 39, 56, 0.1);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.id-image {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px;
}

.id-shape-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(117, 39, 56, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    animation: blobMorph 20s linear infinite, floatBlob 10s ease-in-out infinite;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-45%, -55%) scale(1.1); }
}

.id-shape-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.1;
    bottom: -30px;
    right: -30px;
    z-index: 0;
}

.id-shape-ring {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px dashed rgba(117, 39, 56, 0.15);
    border-radius: 50%;
    top: -60px;
    left: -60px;
    z-index: 0;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.id-card-wrapper {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.07);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(117, 39, 56, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 580px;
    z-index: 2;
}

.id-card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #752738 0%, #a83a52 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(117, 39, 56, 0.2);
    z-index: 5;
}

.id-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    transition: 0.3s;
}

.id-card-wrapper:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 100px rgba(117, 39, 56, 0.12);
    border-color: rgba(117, 39, 56, 0.2);
}

.id-card-wrapper:hover::before {
    opacity: 1;
    height: 6px;
}

.id-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
    z-index: 10;
}

.id-card-wrapper:hover .id-card-shine {
    left: 200%;
    transition: 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.id-card-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.id-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.8) 0%, transparent 80%);
    opacity: 0.5;
}

.id-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.id-card-wrapper:hover .id-card-img img {
    transform: scale(1.1) rotate(2deg);
}

.id-card-info {
    padding: 0 0.5rem;
}

.id-card-info span {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
}

.id-card-info h4 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    font-weight: 800;
    line-height: 1.2;
}

.id-subtext {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .id-image {
        padding: 20px;
    }
}

/* CTA Image Section */
.cta-banner {
    margin: 120px 1%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(1.05) brightness(1.05);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(117, 39, 56, 0.8) 0%, rgba(117, 39, 56, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}

.cta-overlay h2 {
    color: #ffffff;
}

.cta-overlay p {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background: #2c2c2c;
    padding: 100px 10% 40px;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    margin-bottom: 80px;
}

.footer-brand h2 {
    color: var(--secondary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.footer-brand p {
    opacity: 0.7;
}

.footer-links h4 {
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.2rem;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .id-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 3%;
    }

    .hero {
        height: 40vh;
    }

    .hero-video {
        object-position: center top;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-container img {
        height: 35px;
        width: 35px;
    }

    .mobile-toggle {
        display: block;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1600;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 1;
    }

    .id-section {
        padding: 40px 20px;
        gap: 2rem;
    }

    .id-content h2 {
        font-size: 2.2rem !important;
    }

    .category-card {
        padding: 2.5rem 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 30px;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 2rem 3rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-content {
    padding: 3rem;
}

/* Steps Timeline */
.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary) 10%, var(--primary) 90%, transparent);
    transform: translateX(-50%);
}

.step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 5;
    box-shadow: 0 0 0 8px #ffffff;
}

.step-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.step-text h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Alternating Pattern Logic */
.step-item:nth-child(even) {
    direction: rtl;
}

.step-item:nth-child(even) .step-text {
    direction: ltr;
    text-align: right;
}

.step-item:nth-child(odd) .step-text {
    text-align: left;
}

/* Mobile Responsiveness for Modal */
@media (max-width: 768px) {
    .modal-container {
        border-radius: 20px;
    }

    .modal-header {
        padding: 1.5rem 2rem;
    }

    .modal-content {
        padding: 2rem;
    }

    .steps-timeline::before {
        left: 20px;
        transform: none;
    }

    .step-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 50px;
        text-align: left !important;
    }

    .step-item:nth-child(even) {
        direction: ltr;
    }

    .step-item:nth-child(even) .step-text {
        text-align: left;
    }

    .step-number {
        left: 20px;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-img img {
        height: 200px;
    }
}

.modal-footer {
    padding: 2rem 3rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: center;
    background: #ffffff;
    position: sticky;
    bottom: 0;
    z-index: 10;
    border-radius: 0 0 30px 30px;
}

.modal-footer .btn-proceed {
    background: var(--primary);
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(117, 39, 56, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.modal-footer .btn-proceed:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(117, 39, 56, 0.3);
    background: #8e3044;
}

@media (max-width: 768px) {
    .modal-footer {
        padding: 1.5rem 2rem;
    }
    
    .modal-footer .btn-proceed {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}