* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

/* Dynamic Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 153, 51, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(19, 136, 8, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    max-width: 1600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.logo-section .company-name {
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin: 0;
    font-family: 'Playfair Display', serif;
    position: relative;
}

/* Navigation */
.nav {
    padding: 0;
}

.nav-links {
    display: flex;
    gap: 60px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


/* Main Content */
.main {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 120px 0 80px 0;
}

.hero {
    text-align: center;
    width: 100%;
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tricolor B styling - Indian flag colors */
.tricolor-b {
    background: linear-gradient(to bottom, #FF9933 40%, #FFFFFF 40%, #FFFFFF 70%, #138808 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Tagline */
.tagline {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.tagline::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    animation: borderFadeIn 1s ease 1.2s forwards;
}

@keyframes borderFadeIn {
    to { opacity: 1; }
}

/* Mission */
.mission {
    width: 100%;
    margin: 0;
    padding: 0 60px;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.mission-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease 1.2s forwards;
}

.mission-text p {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin: 0 0 30px 0;
    text-align: left;
    font-family: 'Playfair Display', serif;
    position: relative;
    transition: all 0.3s ease;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

.mission-image {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease 1.4s forwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

.battle-artwork {
    width: 100%;
    max-width: 720px;
    height: auto;
    border-radius: 12px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.battle-artwork:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 12px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}




.mission-text:nth-child(2) {
    animation-delay: 1.4s;
}

.mission-text:nth-child(3) {
    animation-delay: 1.6s;
}

.mission-text:nth-child(4) {
    animation-delay: 1.8s;
}

.mission-text:nth-child(5) {
    animation-delay: 2.0s;
}

.line-1 {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
}

.line-2 {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
}

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


.static-text {
    display: inline-block;
}

.dynamic-india {
    display: inline-block;
    margin-left: 10px;
    width: clamp(150px, 25vw, 300px);
    height: 1.2em;
    text-align: left;
    background: linear-gradient(to bottom, #FF9933 50%, #FFFFFF 50%, #FFFFFF 75%, #138808 75%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    overflow: hidden;
    white-space: nowrap;
    transform: translateY(7%);
}

.dynamic-india::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .banner-content {
        padding: 15px 40px;
    }

    .nav-links {
        gap: 40px;
    }

    .main {
        padding: 0 40px;
    }
}

@media (max-width: 900px) {
    .banner-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .tagline {
        font-size: clamp(28px, 6vw, 56px);
        padding: 0 20px;
    }

    .static-text, .dynamic-india {
        display: inline-block;
    }

    .dynamic-india {
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .banner-content {
        padding: 15px 30px;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-link {
        font-size: 14px;
    }

    .main {
        padding: 100px 0 60px 0;
    }

    .hero {
        margin-top: 5vh;
    }

    .tagline {
        margin-bottom: 40px;
        font-size: clamp(24px, 8vw, 48px);
        text-align: center;
        padding: 0 20px;
    }

    .static-text, .dynamic-india {
        display: block;
        text-align: center;
    }

    .dynamic-india {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .mission {
        padding: 0 30px;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mission-image {
        order: -1;
    }

    .battle-artwork {
        max-width: 576px;
    }

    .work-section {
        padding: 0 10px;
    }


    .work-artwork {
        max-width: 576px;
        width: 100%;
        height: auto;
        display: block;
    }

    .footer {
        padding: 60px 30px 30px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .banner-content {
        padding: 10px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 16px;
    }

    .main {
        padding: 80px 0 40px 0;
    }

    .hero {
        margin-top: 2vh;
    }

    .tagline {
        font-size: clamp(20px, 10vw, 36px);
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .static-text, .dynamic-india {
        display: block;
        text-align: center;
    }

    .dynamic-india {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .mission {
        padding: 0 20px;
    }

    .mission-content {
        gap: 40px;
    }

    .mission-text p {
        font-size: clamp(16px, 4vw, 22px);
        line-height: 1.6;
    }

    .battle-artwork {
        max-width: 432px;
    }

    .work-section {
        padding: 0 2px;
    }

    .work-title {
        font-size: clamp(24px, 8vw, 36px);
        margin-bottom: 30px;
    }

    .work-text p {
        font-size: clamp(16px, 4vw, 22px);
        line-height: 1.6;
        text-align: left;
    }

    .work-artwork {
        max-width: 432px;
        width: 100%;
        height: auto;
        display: block;
    }

    .footer {
        padding: 40px 20px 20px 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-text, .footer-link {
        font-size: 14px;
    }

}

/* Work Section */
.work-section {
    width: 100%;
    margin: 0;
    padding: 0 40px;
}

.work-container {
    max-width: 900px;
    margin: 0 auto;
}

.work-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    position: relative;
    text-align: center;
}

.work-content {
    max-width: 900px;
    margin: 0 auto;
}

.work-text {
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 1s ease 1.6s forwards;
}

.work-text p {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin: 0 0 30px 0;
    text-align: left;
    font-family: 'Playfair Display', serif;
    position: relative;
    transition: all 0.3s ease;
}

.work-text p:last-child {
    margin-bottom: 0;
}

.work-image {
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 1s ease 1.8s forwards;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.work-artwork {
    width: 100%;
    max-width: 720px;
    height: auto;
    border-radius: 12px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    object-fit: contain;
}

.work-artwork:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 12px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Team Page */
.team-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
}

.team-container {
    max-width: 900px;
    padding: 0 60px;
    text-align: center;
}

.page-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: fadeIn 1s ease 0.2s forwards;
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.team-content p {
    font-size: clamp(18px, 2.5vw, 28px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 60px 40px 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section {
    text-align: left;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

/* Selection */
::selection {
    background: #ffffff;
    color: #000000;
}