.logo-container {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}/* Modern Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #192360;
    --accent: #cb9b51;
    --white: #ffffff;
    --dark: #0a0f1c;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --light-blue: #f1f5f9;
    --gradient-1: linear-gradient(135deg, #192360 0%, #2d3a7a 50%, #4a5bb8 100%);
    --gradient-2: linear-gradient(135deg, #cb9b51 0%, #d4a960 50%, #e8c788 100%);
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(25, 35, 96, 0.1);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 50px rgba(25, 35, 96, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--primary);
    position: relative;
}

/* Background Animation */
.background-animation {
    display: none;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(25, 35, 96, 0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(25, 35, 96, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-2);
    opacity: 0.06;
    animation: float 20s infinite linear;
}

.shape-1 { width: 100px; height: 100px; top: 20%; left: 10%; animation-delay: 0s; }
.shape-2 { width: 60px; height: 60px; top: 70%; left: 85%; animation-delay: -10s; }
.shape-3 { width: 80px; height: 80px; top: 50%; left: 70%; animation-delay: -15s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Main Container */
.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(25, 35, 96, 0.1));
}

#home-section {
    min-height: 0;
}


.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-link.active {
    background: var(--gradient-2);
    color: var(--white);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: calc(100vh - 120px);
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    align-items: center;
    background: var(--primary);
    border: 4px solid var(--accent);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-strong);
    min-height: 60vh;
}

.dynamic-content {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0 6rem;
    animation: fadeInUp 1s ease-out;
}

.main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
}

.title-highlight {
    background: var(--gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-logo {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    max-width: 100%;
    height: auto;
    width: clamp(280px, 40vw, 500px);
    filter: drop-shadow(0 8px 25px rgba(25, 35, 96, 0.15));
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 12px 35px rgba(25, 35, 96, 0.2));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.main-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.8;
}

/* Content Sections */
.content-section {
    display: none;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.content-section.active {
    display: flex;
}

/* Home Section - Logo Only */
.logo-display {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.main-logo {
    max-width: 100%;
    height: auto;
    width: clamp(350px, 50vw, 700px);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.main-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* About & Contact Sections */
.section-content {
    max-width: 800px;
    text-align: center;
    padding: 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
}

.title-highlight {
    color: var(--accent);
}

.section-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-text p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.lead-text {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem) !important;
    font-weight: 600;
    color: var(--accent) !important;
}



.contact-email {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-2);
    color: var(--primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.contact-email:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 0;
    margin-top: auto;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    display: flex;
    justify-content: flex-start;
}

.footer-center {
    display: flex;
    justify-content: center;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.footer-link:hover {
    background: rgba(25, 35, 96, 0.1);
    transform: translateY(-2px);
}

.copyright {
    color: var(--primary);
    font-size: 0.85rem;
    opacity: 0.8;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-content,
    .content-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 968px) {
    .nav-content {
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .main-content {
        padding-top: 6rem;
    }

    .hero-section {
        padding: 2rem 0 4rem;
    }

    .hero-logo-img {
        width: clamp(250px, 50vw, 400px);
    }

    .center-logo-container {
        padding: 2rem;
    }

    .center-logo-img {
        width: clamp(250px, 60vw, 500px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .nav-content,
    .content-wrapper,
    .footer-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .logo {
        height: 40px;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero-logo-img {
        width: clamp(200px, 60vw, 300px);
        margin: 1rem 0;
    }

    .center-logo-container {
        padding: 1.5rem;
    }

    .center-logo-img {
        width: clamp(200px, 70vw, 400px);
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .center-logo-img {
        width: clamp(180px, 80vw, 300px);
    }

    .main-description {
        font-size: 1rem;
        margin: 1.5rem auto 0;
    }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}