@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;700;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&display=swap');

body {
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    background-color: #000;
    color: #fff;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: relative;
    z-index: 1000;
}

.nav-left .logo {
    width: 180px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-left .logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px 2px #fff;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links li a.nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    position: relative;
    transition: color 0.3s;
    padding: 5px 0;
}

/* Underline animation */
.nav-links li a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #007BFF;
    transition: width 0.3s ease-out;
}

.nav-links li a.nav-link:hover::after {
    width: 100%;
}

.nav-links li a.nav-link:hover {
    color: #007BFF;
}

/* Contact button */
.nav-links li .special-contact-link {
    border-radius: 8px;
    border: 2px solid #fff;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.nav-links li .special-contact-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}

.nav-links li .special-contact-link:hover::before {
    height: 100%;
}

.nav-links li .special-contact-link:hover {
    color: #000;
}

/* --- RESPONSIVE CSS --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        background-color: #000;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a.nav-link {
        font-size: 18px;
        padding: 10px 0;
        width: 100%;
    }

    .nav-links li .special-contact-link {
        width: 100%;
        text-align: center;
        margin-left: 0;
        padding: 12px 0;
    }

    .nav-links li a.nav-link::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

.hero-section {
    background-color: #0a0a0a;
    color: #fff;
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
}

.card {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1), 0 0 40px rgba(255, 255, 255, 0.05);
}

.left-card {
    flex: 1;
}

.hero-heading {
    font-family: 'Fredoka', sans-serif;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.hero-heading {
    margin-bottom: 25px;
    /* heading ke niche gap */
}

.typing-container {
    margin-bottom: 10px;
    /* "We are experts in" ke niche thoda gap */
}

#typedText {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #1e90ff;
    /* soft neon blue */
    text-shadow:
        0 0 6px rgba(30, 144, 255, 0.6),
        0 0 12px rgba(30, 144, 255, 0.4);
}

.typing-container {
    font-size: 1.5rem;
    font-weight: 400;
    color: #888;
    display: flex;
    gap: 10px;
    min-height: 30px;

}

/* Button Animations */
.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.hero-btn {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s;
    border: none;
    cursor: pointer;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.5s ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
}

.btn-primary {
    background-color: transparent;
    border: 2px solid white;
    color: #fff;
}

.btn-primary::before {
    background-color: #fff;
}

.btn-primary:hover::before {
    transform: scaleX(1);
}

.btn-primary:hover {
    color: #000;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #007BFF;
    color: #007BFF;
}

.btn-secondary::before {
    background-color: #007BFF;
    transform: scaleX(0) rotate(45deg);
    transform-origin: center;
}

.btn-secondary:hover::before {
    transform: scaleX(1) rotate(0deg);
}

.btn-secondary:hover {
    color: #fff;
}

/* Right Card */
.right-card {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 600px;
    padding: 0;
    overflow: hidden;
    background-color: #111;
    transition: box-shadow 0.4s ease;
    /* बॉक्स शैडो के लिए ट्रांज़िशन जोड़ा */
}

.right-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2),
        0 0 30px 10px rgba(255, 255, 255, 0.1);
}

.person-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: bottom;
    transition: transform 0.4s ease, filter 0.4s ease;
    /* फ़िल्टर ट्रांज़िशन जोड़ा */
}

.right-card:hover .person-image {
    transform: translateY(-20px) scale(1.05);
    filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.4));
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .right-card {
        height: 400px;
    }

    .hero-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 50px 20px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn {
        text-align: center;
    }
}

:root {
    --bg: #080710;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-2: rgba(255, 255, 255, 0.02);
    --muted: rgba(255, 255, 255, 0.6);
    --shadow-color-1: rgba(96, 165, 250, 0.2);
    /* Light blue for shadows */
    --shadow-color-2: rgba(110, 231, 183, 0.15);
    /* Light green for shadows */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg);
    color: #e6eef8;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 48px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    margin-bottom: 12px;
}

h3 {
    margin: 0 0 8px;
}

p {
    margin: 0;
}

/* Vision & Mission Card Styles */
.vision-mission-section {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 36px;
    /* Spacing between sections */
}

.card-glass {
    flex: 1;
    min-width: 260px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass);
    border-radius: 18px;
    backdrop-filter: blur(6px);
    /* Added shadow for vision/mission cards */
    box-shadow: 0 8px 24px var(--shadow-color-1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transition for hover */
}

.card-glass:hover {
    transform: translateY(-8px);
    /* Lifts on hover */
    box-shadow: 0 12px 30px var(--shadow-color-1);
    /* Slightly larger shadow on hover */
}

.card-glass p {
    color: var(--muted);
}

/* Our Process Section Styles */
.process-section {
    margin-top: 36px;
    font-size: 10px !important;
}

.timeline {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.step {
    flex: 1;
    background: var(--glass-2);
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    /* Added shadow for process steps */
    box-shadow: 0 6px 18px var(--shadow-color-2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transition for hover */
    position: relative;
    /* Needed for arrow animation positioning */
}

.step:hover {
    transform: translateY(-8px);
    /* Lifts on hover */
    box-shadow: 0 10px 25px var(--shadow-color-2);
    /* Slightly larger shadow on hover */
}

.step .num {
    font-weight: 800;
    font-size: 15px;
}

.step .chev {
    opacity: 0.5;
    /* Slightly increased opacity for visibility */
    font-weight: 600;
    display: inline-block;
    /* Essential for transform to work */
    transition: opacity 0.3s ease;
    /* Smooth transition for hover */
}

/* Arrow animation */
@keyframes moveArrow {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }

    /* Moves slightly right */
    100% {
        transform: translateX(0);
    }
}

.arrow-animated {
    animation: moveArrow 1.5s infinite ease-in-out;
    /* Apply animation */
}

@media (max-width: 768px) {
    .timeline {
        flex-wrap: wrap;
    }

    .step {
        flex-basis: calc(50% - 9px);
        margin-bottom: 12px;
    }
}