:root {
    --bg-dark: #020617;
    /* Very dark navy/black */
    --bg-card: #0f172a;
    --primary-blue: #0077FF;
    --accent-blue: #3b82f6;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-primary: 'Hind Siliguri', sans-serif;
    --font-display: 'Inter', sans-serif;
}

/* Language Modal */
.lang-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.lang-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lang-modal {
    background: #0f172a;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #0077FF;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0, 119, 255, 0.3);
}

.lang-modal h2 {
    color: white;
    margin-bottom: 30px;
    font-family: 'Hind Siliguri', sans-serif;
}

.lang-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-lang {
    padding: 15px 30px;
    font-size: 1.1rem;
    border: 1px solid #0077FF;
    background: transparent;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Hind Siliguri', sans-serif;
}

.btn-lang:hover {
    background: #0077FF;
    transform: translateY(-3px);
}

body.lang-bn {
    font-family: 'Hind Siliguri', sans-serif !important;
}

body.lang-bn h1,
body.lang-bn h2,
body.lang-bn h3 {
    font-family: 'Hind Siliguri', sans-serif !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-blue {
    color: var(--primary-blue);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--accent-blue);
}

.badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

@media (max-width: 900px) {
    .desktop-nav-btn {
        display: none !important;
    }
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 10%, #1e1b4b 0%, #020617 60%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-subtitle {
    color: var(--accent-blue);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.highlight {
    color: var(--primary-blue);
}

.hero-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-orb-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--primary-blue);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.glow-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.ring-2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation: rotate-rev 15s linear infinite;
    border-color: rgba(37, 99, 235, 0.3);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #0f172a;
    border: 1px solid var(--primary-blue);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: absolute;
    /* top: 0; removed to allow custom pos */
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.pos-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pos-bottom {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.pos-left {
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pos-right {
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
}

.pos-top-left {
    top: 15%;
    left: 15%;
    transform: translate(-50%, -50%);
}

.pos-top-right {
    top: 15%;
    right: 15%;
    transform: translate(50%, -50%);
}

.pos-bottom-left {
    bottom: 15%;
    left: 15%;
    transform: translate(-50%, 50%);
}

.pos-bottom-right {
    bottom: 15%;
    right: 15%;
    transform: translate(50%, 50%);
}

.icon-box i {
    font-size: 16px;
    margin-bottom: 2px;
    color: var(--accent-blue);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-rev {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    z-index: 10;
}

.center-logo img {
    width: 60%;
    height: auto;
    object-fit: contain;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 20px;
}

/* About */
.about-section {
    text-align: center;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.btn-text {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

/* Marquee */
.brand-marquee {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    opacity: 0.7;
    animation: scroll 20s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    filter: grayscale(100%);
    transition: 0.3s;
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Services Grid (Bento Style) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.service-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(2, 6, 23, 0.8));
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.service-card.featured .service-content {
    order: 1;
}

.service-card.featured h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-card.featured .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--primary-blue);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.service-card.featured .btn-outline:hover {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
    }
}

/* Team */
.team-section {
    text-align: center;
    overflow: hidden;
}

.team-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Team Section */
.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid rgba(59, 130, 246, 0.2);
    position: relative;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

/* Fallback Icon Style */
.member-img i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
}

.team-img-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid rgba(59, 130, 246, 0.2);
    position: relative;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-card:hover .team-img-wrapper {
    border-color: var(--primary-blue);
}


.social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: 0.3s;
}

.team-card:hover .social-overlay {
    opacity: 1;
}

.social-overlay a {
    width: 35px;
    height: 35px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.social-overlay a:hover {
    background: white;
    color: var(--primary-blue);
    transform: scale(1.1);
}

.member-info h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: white;
}

.member-info span {
    color: var(--primary-blue);
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-email {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
    transition: 0.3s;
}

.team-email:hover {
    color: var(--primary-blue);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.team-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}

/* Page Header & Mobile Menu Styles */
.page-header {
    padding: 120px 0 60px;
    background: radial-gradient(circle at 50% -20%, #1e1b4b 0%, #020617 80%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-family: var(--font-display);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-gray);
    font-size: 1.2rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background: var(--bg-card);
    padding: 80px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
    align-items: flex-start;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
        /* Push to right if flex container allows */
    }

    .nav-links {
        position: fixed;
        /* Essential for the menu to slide in from right */
        width: 100%;
        /* Full width on mobile for better touch targets */
        right: -100%;
        /* Start off-screen */
        top: 60px;
        /* Below navbar */
        height: auto;
        /* adjust height */
        padding-bottom: 30px;
        background: rgba(2, 6, 23, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: 0.4s ease;
        z-index: 1000;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .btn-talk {
        display: none;
        /* Hide 'Let's Talk' button in navbar on mobile, or move it inside menu */
    }
}

/* Mobile Responsive for Inner Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 30px !important;
        /* Increase top padding to clear the navbar */
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}


/* Generic Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #0f172a;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: 0.3s;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #94a3b8;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: white;
}

/* Modal Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #94a3b8;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0077FF;
    background: rgba(255, 255, 255, 0.1);
}

/* Featured News Section */
.featured-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.featured-grid {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollNews 50s linear infinite;
    will-change: transform;
}

.featured-grid:hover {
    animation-play-state: paused;
}

@keyframes scrollNews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    width: 300px;
    flex-shrink: 0;
    max-width: 100%;
}

.feature-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-logo {
    width: 100%;
}

.feature-card:hover .feature-logo {
    opacity: 0.9;
}

.feature-press {
    font-size: 0.9rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-link {
    margin-top: auto;
    color: var(--text-gray);
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.feature-link:hover {
    color: var(--primary-blue);
}

/* Footer Styles */
.footer {
    background: #020617;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.link-group h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

.link-group a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.contact-form-dummy input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    margin-bottom: 10px;
    outline: none;
}

.contact-form-dummy button {
    width: 100%;
    padding: 12px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 25px;
    }

    .hero-section {
        padding-top: 100px;
        /* Reduce main section padding */
        min-height: auto;
        /* Remove 100vh constraint if needed */
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding-top: 40px;
        /* reduced from 120px */
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        height: 350px;
        order: 2;
        /* Visual at bottom */
        /* Reduce height on mobile */
        margin-top: -30px;
    }

    .hero-text-wrapper {
        order: 1;
        /* Text on top */
    }

    .about-image {
        height: 300px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    /* Team Section - Horizontal Scroll */
    .team-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 30px;
        /* Space for scrollbar */
        padding-top: 20px;
        /* Space for hover effect */
        margin-top: 20px;
        scrollbar-width: none;
        /* Firefox */
    }

    .team-container::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .team-card {
        min-width: 260px;
        /* Fixed width for scroll items */
        scroll-snap-align: center;
        margin-bottom: 0;
        /* Remove excess bottom margin */
    }

    .team-wrapper {
        padding: 0;
        /* Remove padding to allow full-width scroll */
    }

    /* Center active item logic could be added via JS, but snap is good enough */

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content .social-links,
    .contact-form-dummy {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-card);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid #10b981;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast.info {
    border-left: 4px solid #3b82f6;
}

.toast i {
    font-size: 1.2rem;
}

.toast.success i {
    color: #10b981;
}

.toast.error i {
    color: #ef4444;
}

.toast.info i {
    color: #3b82f6;
}