@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2d2d2d;
    background-color: var(--bg-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

:root {
  --primary-gold: #b8860b;
  --text-dark: #333;
  --bg-light: #faf9f6; 
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0; 
    transform: translateY(-20px);
    animation: navReveal 0.8s ease forwards;
    border-bottom: #2d2d2d 1px solid;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
     box-shadow: 0 2px 10px rgba(0,0,0,0.1);
     display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0;
}

@keyframes navReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-container {
    padding: 0.7rem 2rem;
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    transition: padding 0.4s ease;
    width: 100%;
    max-width: none; 
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
    flex-wrap: nowrap;
}

.nav-item {
    animation: fadeSlideIn 0.6s ease forwards;
    animation-delay: calc(var(--i) * 0.1s + 0.5s);
    opacity: 0;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    font-size: 0.87rem;
    border-radius: 50px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d4a574 0%, #8b6f47 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.1;
}

.nav-link:hover,
.nav-link.active {
    color: #8b6f47;
}


.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4a574 0%, #8b6f47 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: font-size 0.4s ease;
    display: inline-block;
}

.navbar.scrolled .logo-main {
    font-size: 1.2rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-link:hover,
.nav-link.active {
    color: #8b6f47;
}

.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.1;
}

.nav-link.dropdown-toggle {
    position: relative;
}

.dropdown-arrow {
    display: inline-flex;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.nav-item:has(.dropdown-menu.active) .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    border: 2px solid #d4a574;
    border-top: none;
    border-radius: 0 0 12px 12px;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.25);
    z-index: 999;
    margin-top: 0;
    padding: 8px 0;
    animation: dropdownSlide 0.3s ease forwards;
}

.dropdown-menu.active {
    display: flex;
    flex-direction: column;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #4a3728;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: rgba(212, 165, 116, 0.1);
    color: #8b6f47;
    padding-left: 25px;
}

.dropdown-item i {
    font-size: 0.85rem;
    color: #d4a574;
}

.dropdown-menu.active .dropdown-item:first-child {
    border-radius: 0;
}

.dropdown-menu.active .dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        border: none;
        background: rgba(212, 165, 116, 0.08);
        box-shadow: none;
        border-left: 3px solid #d4a574;
        margin: 0;
        margin-left: 0;
        padding: 4px 0;
    }
    
    .dropdown-item {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}



overview-section {
    position: relative;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

lotus-border {
    width: 40%;
    height: 100vh;
    position: absolute;
    bottom: 0;
    left: 0;
    
}

.overview-h1 {
  margin-top: 0;
  text-align: right;
}

.overview {
  padding: 40px 20px;
  text-align: right;
}

.intro-video {
    width: 100%;           
    max-width: 100vw;      
    height: auto;         
    display: block;         
    aspect-ratio: 16 / 9;  
    object-fit: cover; 
    margin: 0 auto;
}
.modern-footer {
    margin-top: 40px;
    position: relative;
}

.footer-wave {
    width: 100%;
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-main {
    background: linear-gradient(135deg, #3d2817 0%, #2a1a0f 100%);
    padding: 50px 20px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    width: 100px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 8px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #d4a574;
    margin: 15px 0 10px;
    font-weight: 600;
}

.footer-address {
    font-style: normal;
    color: #e8dcc8;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-address p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-address i {
    color: #d4a574;
    font-size: 0.85rem;
}

.footer-address a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-address a:hover {
    color: #f4e8d8;
    text-decoration: underline;
}

.footer-brand {
    margin-bottom: 15px;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4a574 0%, #f4e8d8 50%, #d4a574 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.footer-tagline {
    color: #d4a574;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 5px;
}

.footer-description {
    color: #c4b8a8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #e8dcc8;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 15px;
    background: rgba(212, 165, 116, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    background: rgba(212, 165, 116, 0.3);
    color: #d4a574;
    transform: translateY(-2px);
}

.footer-links a i {
    font-size: 0.8rem;
}

.cyberfair-logo {
    width: 140px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.cyberfair-logo:hover {
    transform: scale(1.05);
}

.gsn-link {
    margin-top: 15px;
}

.gsn-logo {
    width: 120px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.gsn-logo:hover {
    opacity: 1;
}

.footer-bottom {
    background: #1a0f08;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-bottom-content p {
    color: #a09080;
    font-size: 0.85rem;
    margin: 5px 0;
}

.footer-bottom .heart {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-credits {
    font-size: 0.8rem !important;
    color: #706050 !important;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
    
    .footer-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 30px 15px 20px;
    }
    
    .footer-brand-name {
        font-size: 1.6rem;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

.content-section, .footer, .modern-footer {
    scroll-margin-top: 145px; 
}

.images {
  width: 500px;
  height:250px; 
  vertical-align:middle; 
  margin-left:10px;
  border-width: 10px;
  border-color: #d4a574;
}
        .header-section {
            background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
            color: #f4e8d8;
            padding: 4rem 2rem;
            text-align: center;
            border-bottom: 4px solid #d4af37;
        }

        .showcase-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }

        .showcase-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            letter-spacing: 2px;
            opacity: 0.95;
        }

        .intro-section {
            padding: 3rem 2rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .intro-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4a3728;
            margin-bottom: 2rem;
        }

        .crafts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .craft-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid #d4af37;
        }

        .craft-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

        .craft-icon {
            font-size: 4rem;
            text-align: center;
            padding: 2rem 1rem;
            background: linear-gradient(135deg, #f4e8d8 0%, #e8dcc8 100%);
        }

        .craft-content {
            padding: 1.5rem;
        }

        .craft-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #654321;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .craft-region {
            font-size: 0.9rem;
            color: #8b4513;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .craft-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #3d2817;
        }

        .footer-section {
            background: linear-gradient(135deg, #654321 0%, #4a3728 100%);
            color: #f4e8d8;
            padding: 2rem;
            text-align: center;
            border-top: 4px solid #d4af37;
            margin-top: 2rem;
        }

        .footer-text {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .showcase-title {
                font-size: 2.5rem;
            }

            .showcase-subtitle {
                font-size: 1rem;
            }

            .crafts-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

.mascot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.speech-bubble {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    border: 3px solid #d4a574;
    border-radius: 20px;
    padding: 15px 20px;
    max-width: 280px;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.25);
    position: relative;
    animation: bubblePop 0.4s ease-out;
    transform-origin: bottom right;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 30px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #d4a574 transparent transparent transparent;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 33px;
    border-width: 12px 12px 0;
    border-style: solid;
    border-color: #fff9f0 transparent transparent transparent;
    z-index: 1;
}

.speech-bubble p {
    margin: 0;
    font-size: 0.95rem;
    color: #4a3728;
    line-height: 1.5;
}

.speech-bubble.hidden {
    display: none;
}

.speech-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #8b6f47;
    cursor: pointer;
    transition: transform 0.2s;
}

.speech-close:hover {
    transform: scale(1.2);
    color: #d4a574;
}

@keyframes bubblePop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    70% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.mascot-character {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #d4a574 0%, #8b6f47 100%);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    animation: mascotFloat 3s ease-in-out infinite;
    border: 4px solid #fff;
}

.mascot-character:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.5);
}

.mascot-character:active {
    transform: scale(0.95);
}

@keyframes mascotFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.mascot-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mascot-head {
    position: relative;
    width: 50px;
    height: 45px;
}

.mascot-face {
    width: 40px;
    height: 35px;
    background: #ffd9b3;
    border-radius: 50% 50% 45% 45%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mascot-eyes {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.eye {
    width: 6px;
    height: 6px;
    background: #2d2d2d;
    border-radius: 50%;
    animation: blink 3s infinite;
}

@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.mascot-smile {
    width: 12px;
    height: 6px;
    border: 2px solid #c97b63;
    border-color: transparent transparent #c97b63 transparent;
    border-radius: 0 0 12px 12px;
    margin-top: 3px;
}

.mascot-turban {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #d4a574 100%);
    border-radius: 50% 50% 30% 30%;
    z-index: -1;
}

.mascot-turban::before {
    content: '✨';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
}

.mascot-torso {
    display: none;
}

.mascot-hands {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

.mascot-wave {
    position: absolute;
    right: -5px;
    top: -5px;
    font-size: 20px;
    animation: wave 1.5s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-15deg); }
}

.mascot-thinking {
    display: flex;
    gap: 4px;
    padding: 10px;
}

.mascot-thinking span {
    width: 8px;
    height: 8px;
    background: #d4a574;
    border-radius: 50%;
    animation: thinking 1.4s ease-in-out infinite;
}

.mascot-thinking span:nth-child(2) {
    animation-delay: 0.2s;
}

.mascot-thinking span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes thinking {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-5px); opacity: 1; }
}

@media (max-width: 768px) {
    .mascot-container {
        bottom: 15px;
        right: 15px;
    }
    
    .mascot-character {
        width: 70px;
        height: 70px;
    }
    
    .speech-bubble {
        max-width: 220px;
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .mascot-head {
        width: 40px;
        height: 38px;
    }
    
    .mascot-face {
        width: 32px;
        height: 28px;
    }
    
    .mascot-turban {
        width: 38px;
        height: 20px;
    }
}
#shilp-loader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            background: #0f0804;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        #shilp-loader.fade-out {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        #shilp-loader::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            opacity: 0.35;
            pointer-events: none;
        }

        #shilp-loader::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212,165,116,0.12) 0%, rgba(139,111,71,0.06) 40%, transparent 70%);
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.15); opacity: 1; }
        }

        .loader-mandala-wrap {
            position: relative;
            z-index: 2;
            width: 220px;
            height: 220px;
            margin-bottom: 32px;
        }

        .loader-mandala {
            width: 100%;
            height: 100%;
            animation: mandalaSpin 20s linear infinite;
        }

        @keyframes mandalaSpin {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }

        .loader-mandala-inner {
            position: absolute;
            inset: 30px;
            animation: mandalaSpin 12s linear infinite reverse;
        }

        .draw-path {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
        }

        .draw-path.animate {
            animation: drawIn 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .draw-path-fast.animate {
            animation: drawIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        @keyframes drawIn {
            to { stroke-dashoffset: 0; }
        }

        .loader-center-dot {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background: radial-gradient(circle, #f4e8d8, #d4a574);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(212,165,116,0.8), 0 0 40px rgba(212,165,116,0.4);
            animation: centerPulse 1.8s ease-in-out infinite;
            z-index: 3;
        }

        @keyframes centerPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 20px rgba(212,165,116,0.8), 0 0 40px rgba(212,165,116,0.4); }
            50% { transform: translate(-50%, -50%) scale(1.3); box-shadow: 0 0 30px rgba(212,165,116,1), 0 0 60px rgba(212,165,116,0.6); }
        }

        .loader-brand {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .loader-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 6vw, 4.2rem);
            font-weight: 900;
            font-style: italic;
            letter-spacing: 0.08em;
            margin: 0 0 8px;
            background: linear-gradient(135deg, #c8a060 0%, #f4e8d8 35%, #d4a574 55%, #f0d898 75%, #8b6f47 100%);
            background-size: 200% auto;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 2.5s linear infinite, titleReveal 1s ease forwards 0.3s;
            opacity: 0;
            transform: translateY(12px);
        }

        @keyframes shimmer {
            from { background-position: 200% center; }
            to   { background-position: -200% center; }
        }

        @keyframes titleReveal {
            to { opacity: 1; transform: translateY(0); }
        }

        .loader-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(0.85rem, 2vw, 1.05rem);
            font-weight: 300;
            letter-spacing: 0.38em;
            text-transform: uppercase;
            color: rgba(212, 165, 116, 0.7);
            opacity: 0;
            animation: tagReveal 0.8s ease forwards 1.2s;
        }

        @keyframes tagReveal {
            to { opacity: 1; }
        }

        .loader-thread-wrap {
            position: relative;
            z-index: 2;
            margin-top: 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .loader-thread-track {
            width: 180px;
            height: 2px;
            background: rgba(212,165,116,0.15);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }

        .loader-thread-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #8b6f47, #d4a574, #f4e8d8, #d4a574);
            background-size: 200% 100%;
            border-radius: 2px;
            animation:
                threadGrow 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s,
                threadShimmer 1.2s linear infinite;
            box-shadow: 0 0 8px rgba(212,165,116,0.6);
        }

        .loader-thread-glow {
            position: absolute;
            top: 50%;
            width: 30px;
            height: 6px;
            background: radial-gradient(ellipse, rgba(244,232,216,0.9), transparent);
            transform: translateY(-50%);
            animation: glowTrail 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
            filter: blur(2px);
        }

        @keyframes threadGrow {
            0%   { width: 0%; }
            60%  { width: 75%; }
            85%  { width: 92%; }
            100% { width: 100%; }
        }

        @keyframes glowTrail {
            0%   { left: 0%; }
            60%  { left: 70%; }
            85%  { left: 87%; }
            100% { left: 95%; }
        }

        @keyframes threadShimmer {
            from { background-position: 200% center; }
            to   { background-position: -200% center; }
        }

        .loader-status {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.78rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(212,165,116,0.45);
            opacity: 0;
            animation: tagReveal 0.6s ease forwards 0.6s;
        }

        .loader-particles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            bottom: -10px;
            border-radius: 50%;
            background: radial-gradient(circle, #f4e8d8, #d4a574);
            animation: rise linear infinite;
            opacity: 0;
        }

        @keyframes rise {
            0%   { transform: translateY(0) scale(1); opacity: 0; }
            15%  { opacity: 0.8; }
            85%  { opacity: 0.4; }
            100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
        }

        .loader-corner {
            position: absolute;
            width: 60px;
            height: 60px;
            opacity: 0.35;
        }

        .loader-corner--tl { top: 24px; left: 24px; }
        .loader-corner--tr { top: 24px; right: 24px; transform: scaleX(-1); }
        .loader-corner--bl { bottom: 24px; left: 24px; transform: scaleY(-1); }
        .loader-corner--br { bottom: 24px; right: 24px; transform: scale(-1); }

.about-shilpsetu {
    position: relative;
    background: linear-gradient(160deg, #fdf6ee 0%, #faf3e8 50%, #f5ead8 100%);
    padding: 80px 40px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    overflow: hidden;
}

.about-shilpsetu::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,165,116,0.1), transparent 70%);
    pointer-events: none;
}

.about-ornament {
    text-align: center;
    font-size: 1.2rem;
    color: #d4a574;
    opacity: 0.5;
    margin-bottom: 40px;
    letter-spacing: 1rem;
}

.about-ornament--bottom {
    margin-bottom: 0;
    margin-top: 40px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #d4a574;
    display: block;
    margin-bottom: 12px;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #3d2817;
    line-height: 1.2;
    margin: 0 0 20px;
}

.about-heading em {
    font-style: italic;
    background: linear-gradient(135deg, #d4a574, #8b6f47);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.about-divider span:first-child,
.about-divider span:last-child {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4a574);
}

.about-divider span:last-child {
    background: linear-gradient(90deg, #d4a574, transparent);
}

.divider-diamond {
    color: #d4a574;
    font-size: 0.6rem;
    flex: none !important;
    background: none !important;
    height: auto !important;
    -webkit-text-fill-color: #d4a574 !important;
}

.about-body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.85;
    color: #5a4030;
    margin-bottom: 18px;
}

.about-body strong {
    color: #3d2817;
    font-weight: 600;
}

.about-body em {
    color: #8b6f47;
    font-style: italic;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 36px;
    background: white;
    border: 1px solid rgba(212,165,116,0.3);
    border-radius: 16px;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(139,111,71,0.08);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b6f47;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a08060;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212,165,116,0.3);
}

.about-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-card {
    background: white;
    border: 1px solid rgba(212,165,116,0.25);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 12px rgba(139,111,71,0.06);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(139,111,71,0.15);
    border-color: #d4a574;
}

.about-card-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
}

.about-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #3d2817;
    margin-bottom: 8px;
    font-weight: 700;
}

.about-card p {
    font-size: 0.82rem;
    color: #7a6050;
    line-height: 1.6;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background:
linear-gradient(rgba(248,241,228,0.95),rgba(248,241,228,0.95)),
url("https://www.transparenttextures.com/patterns/cream-paper.png");

background-attachment:fixed;

}

.learning{
padding:90px 10%;
}

.title{
text-align:center;
font-size:50px;
margin-bottom:90px;
letter-spacing:2px;

background:linear-gradient(45deg,#8b5e34,#c89b3c);
-webkit-background-clip:text;
color:transparent;
}

.timeline{
position:relative;
max-width:1000px;
margin:auto;
}

.timeline::before{
content:"";
position:absolute;
left:50%;
width:4px;
height:0;
background:linear-gradient(#c89b3c,#8b5e34);
transition:height 2s ease;
}

.timeline.animate::before{
height:100%;
}

.timeline-item{
display:flex;
align-items:center;
margin:70px 0;
opacity:0;
transform:translateY(50px);
transition:0.8s;
}

.timeline-item.show{
opacity:1;
transform:translateY(0);
}

.timeline-item:nth-child(odd){
flex-direction:row;
}

.timeline-item:nth-child(even){
flex-direction:row-reverse;
}

.icon{

width:75px;
height:75px;

background:linear-gradient(45deg,#c89b3c,#8b5e34);

border-radius:50%;
display:flex;
align-items:center;
justify-content:center;

color:white;
font-size:28px;

box-shadow:0 0 20px rgba(200,155,60,0.7);

z-index:2;
transition:0.4s;

}

.icon:hover{
transform:scale(1.2);
}

.card{

width:42%;
padding:28px;

background:rgba(255,255,255,0.75);
backdrop-filter:blur(8px);

border-radius:14px;

box-shadow:0 10px 35px rgba(0,0,0,0.25);

transition:0.4s;

}

.card:hover{

transform:translateY(-12px);
box-shadow:0 15px 40px rgba(0,0,0,0.35);

}

.card h2{
color:#5a3e2b;
margin-bottom:10px;
}

.card ul{
padding-left:18px;
}

.card li{
margin-bottom:6px;
color:#444;
font-size:15px;
}