@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --accent: #c6a386;
    --dark: #1a1a1a;
    --darker: #000000;
    --light-bg: #f5f1ed;
    --white-bg: #ffffff;
    --text-dark: #222222;
    --text-body: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--white-bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 400;
}

.subheading {
    font-family: var(--font-subheading);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.subheading::before,
.subheading::after {
    content: '';
    height: 1px;
    background-color: var(--accent);
    flex-grow: 1;
    max-width: 30px;
}

.subheading.no-line::before,
.subheading.no-line::after {
    display: none;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 15px 0;
    z-index: 100;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
    height: auto;
    padding: 10px 0;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-subheading);
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 20px;
    border-radius: 50px;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0%;
    height: 100%;
    background: radial-gradient(circle, rgba(198, 163, 134, 0.1) 0%, transparent 70%);
    z-index: -1;
    transition: width 0.5s ease;
    border-radius: 50px;
}

.logo:hover::before {
    width: 120%;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: invert(1) brightness(100) drop-shadow(0 0 10px rgba(198, 163, 134, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: invert(1) brightness(100) drop-shadow(0 0 15px var(--accent));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    text-transform: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.logo:hover .logo-text {
    letter-spacing: 2.5px;
}

.mobile-toggle {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background: #0a0a0a;
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    align-self: flex-end;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 40px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-family: var(--font-subheading);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.mobile-menu-links a:hover {
    color: var(--accent);
}

/* Hero Section Redesign */
.hero {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    background-color: #000;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background: url('landing_image.png') center/cover no-repeat;
    animation: heroZoom 30s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.2) translate(-2%, -2%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(198, 163, 134, 0.15) 0%, transparent 70%);
    z-index: 3;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
}

.hero-content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-subheading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.hero-title {
    font-size: 80px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
    max-width: 1200px;
}

.accent-text {
    color: var(--accent);
    font-style: italic;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 1000px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--accent);
    color: #000 !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #fff;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 20px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-txt {
    font-family: var(--font-subheading);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, 10px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Base button cleanup */
.btn {
    text-decoration: none;
    font-family: var(--font-subheading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.section-title:last-child {
    margin-bottom: 60px;
}

.section-title-alt {
    font-family: var(--font-subheading);
    font-size: 56px;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
    width: 100%;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto 35px;
    border-radius: 2px;
}

/* About Us */
.about-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}

.about-img {
    width: 100%;
    height: 550px;
    background: url('about.png') center/cover;
    position: relative;
    z-index: 2;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border: 15px solid var(--accent);
    z-index: 1;
}

.about-content {
    padding-left: 20px;
}

.about-content .subheading {
    margin-bottom: 25px;
}

.about-content h2 {
    font-size: 48px;
    margin-bottom: 35px;
    line-height: 1.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-family: var(--font-subheading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Apps Section (Dark Enterprise Style) */
.apps-dark-section {
    position: relative;
    padding: 80px 0;
    background: url('samasra_health_ecosystem.png') center/cover no-repeat fixed;
    overflow: hidden;
}

.apps-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(18, 25, 33, 0.92) 0%, rgba(0, 0, 0, 0.88) 100%);
    z-index: 1;
}

.apps-dark-section .container {
    position: relative;
    z-index: 2;
}

.apps-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.app-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    justify-content: space-between;
    height: 100%;
}

.app-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
    transform: translateY(-10px);
}

.app-icon-box {
    width: 80px;
    height: 80px;
    background: #ffffff; /* Consistent bright background for all logos */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.app-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-icon-box i {
    font-size: 26px;
    color: var(--accent);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-item:hover .app-icon-box {
    background: #ffffff;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(198, 163, 134, 0.3);
    border-color: var(--accent);
}

.app-item:hover .app-icon-box img {
    transform: scale(1.1);
}

.app-item:hover .app-icon-box i {
    color: var(--darker);
    transform: scale(1.1);
}

.app-icon-box.coming-soon {
    filter: grayscale(0.5); /* Less aggressive grayscale */
    opacity: 0.8; /* Less aggressive opacity */
}

.app-item h3 {
    font-family: var(--font-subheading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 20px;
}

.app-item p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    flex-grow: 1;
}

.app-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    gap: 15px;
}

.app-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    font-family: var(--font-subheading);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    border: 1px solid rgba(198, 163, 134, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.app-link {
    font-family: var(--font-subheading);
    font-size: 11px;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.app-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.app-link:hover {
    color: #ffffff;
}

.app-link:hover i {
    transform: translate(3px, -3px);
}

.app-item:hover .app-tag {
    background: var(--accent);
    color: #000;
}

.app-tag.status {
    background: rgba(255, 255, 255, 0.05);
    color: #888;
    border-color: rgba(255, 255, 255, 0.1);
}

.app-icon-box.coming-soon {
    filter: grayscale(1);
    opacity: 0.5;
}

/* Attribution Section Styles */
.section-desc {
    max-width: 700px;
    margin: 20px auto 60px;
    font-size: 18px;
    color: var(--text-body);
    text-align: center;
}



/* Platforms Section */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.platform-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.platform-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.platform-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: #000;
}

.platform-img-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-card:hover .platform-img-new {
    transform: scale(1.15);
    filter: brightness(0.9);
}

.platform-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.platform-card:hover .platform-card-overlay {
    opacity: 1;
}

.platform-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 6px 15px;
    border-radius: 30px;
    font-family: var(--font-subheading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.platform-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.platform-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.platform-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-body);
}

.platform-links-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: auto;
}

.platform-link {
    margin-top: auto;
    font-family: var(--font-subheading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.platform-link:hover {
    gap: 15px;
}

.platform-link i {
    font-size: 14px;
}

/* Tech Stack & Partners Enhancements */
.tech-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}

.tech-card:hover {
    background: var(--darker);
    border-color: var(--darker);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tech-card h4 {
    transition: color 0.4s ease;
}

.tech-card:hover h4 {
    color: var(--accent);
}

/* Partner Rows */
.partner-row {
    display: flex;
    margin-bottom: 60px;
    align-items: stretch;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.partner-row.reversed {
    flex-direction: row-reverse;
}

.partner-logo-area {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
}

.partner-quote-area {
    flex: 0 0 65%;
    padding: 60px 80px;
    position: relative;
    display: flex;
    align-items: center;
}

/* Reviews / Partners */
.reviews-section {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 180px;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 1;
    font-weight: 700;
    pointer-events: none;
}

.review-slider {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.stars {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-style: italic;
}

.reviewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.reviewer h4 {
    font-family: var(--font-subheading);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--darker);
    color: #999999;
    padding: 100px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h3 {
    font-family: var(--font-subheading);
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    font-weight: 600;
}

.footer-col p {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-logo {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 25px;
    text-align: left;
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    color: #ffffff;
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 991px) {
    .nav-container {
        justify-content: space-between;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        z-index: 1100;
    }

    .hero-title {
        font-size: 50px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 400px;
    }

    .apps-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .reviews-section {
        padding: 80px 0;
    }

    .partner-row,
    .partner-row.reversed {
        flex-direction: column;
    }

    .partner-quote-area {
        padding: 40px 30px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .careers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .apps-showcase-grid {
        grid-template-columns: 1fr !important;
    }

    .partners-grid {
        grid-template-columns: 1fr !important;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .careers-grid {
        grid-template-columns: 1fr !important;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.footer-col input:focus,
.footer-col textarea:focus {
    outline: none;
    border-color: var(--accent) !important;
}

/* Custom Scrollbar for scrollable content */
.scroll-content {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.scroll-content::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

/* Image Lightbox Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--accent);
}

.team-member img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.02);
}