:root {
    --primary: #4F46E5;
    --primary-light: #818CF8;
    --secondary: #06B6D4;
    --accent: #F43F5E;
    --bg-body: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --text-main: #1E293B;
    --text-muted: #64748B;
    --border-light: #E2E8F0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.3);
    --container-width: 1280px;
    --header-height: 80px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.section-padding { padding: 40px 0; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #8a4ceb 0%, #6366f1 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.btn-outline:hover {
    background: rgba(79, 70, 229, 0.05);
    color: #FFFFFF;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.viindhya-logo {
    height: 28px;
    filter: grayscale(100%) brightness(0);
    opacity: 0.85;
}

/* MENU HEADER UI MENU HEADER UI MENU HEADER UI MENU HEADER UI MENU HEADER UI MENU HEADER UI MENU HEADER UI MENU HEADER UI MENU HEADER UI */

.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    z-index: 1000;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.logo i {
    color: var(--primary);
    font-size: 20px;
}

.logo-img {
    height: 100px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: black;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 15px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.08);
    border-left-color: var(--primary);
    transform: translateX(5px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    transition: width 0.3s;
}

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

.has-dropdown::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free', serif;
    font-weight: 900;
    font-size: 10px;
    margin-left: 6px;
    position: relative;
    top: -1px;
}

.nav-item {
    position: relative;
}

.product-item {
    position: static;
}

.dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 200px;
    padding: 12px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
    z-index: 999;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-main);
    transition: all 0.2s;
}

.dropdown li a:hover {
    color: var(--primary);
    background: #F1F5F9;
    padding-left: 25px;
}

.mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 900px;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
    z-index: 999;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.product-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.menu-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.menu-column h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 700;
}

.menu-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text-main);
    font-size: 14px;
    transition: all 0.2s;
}

.menu-link-item i {
    color: var(--primary);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.menu-link-item:hover {
    background: #F1F5F9;
    color: var(--primary);
    transform: translateX(4px);
}

.menu-visual-card {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-visual-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.menu-visual-card .card-content {
    padding: 20px;
    text-align: center;
}

.menu-visual-card .card-content h5 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.menu-visual-card .card-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

#customer-menu {
    width: 650px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
}

#customer-menu .menu-links-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
}

#customer-menu .menu-column ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 14px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: linear-gradient(135deg, #8a4ceb 0%, #6366f1 100%);
    color: #fff;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-overlay {
    display: none;
}

.mobile-nav {
    display: none;
}

@media (max-width: 1024px) {
    .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        grid-template-columns: 1fr;
        box-shadow: none;
        padding: 20px 0;
        border-top: 1px solid var(--border-light);
        border-radius: 0;
    }

    .mega-menu.active {
        display: block;
    }

    .menu-visual-card {
        display: none;
    }

    #customer-menu .menu-column ul {
        grid-template-columns: 1fr;
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        width: 100%;
        padding: 10px 0 10px 20px;
        display: none;
    }

    .dropdown::before {
        display: none;
    }

    .nav-item:hover .dropdown {
        display: block;
    }
}

@media (max-width: 768px) {

    /* Hide desktop menu */
    .nav-menu {
        display: none !important;
    }

    .hamburger {
        display: block;
    }

    .header-actions {
        display: none;
    }

    /* Overlay */
    .mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Drawer Menu */
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 420px; /* looks clean on mobile */
        height: 100vh;
        background: #fff;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }

    .mobile-nav.active {
        transform: translateX(0);
    }

    /* Mobile nav header */
    .mobile-nav-header {
        padding: 20px;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        top: 0;
        background: white;
        z-index: 5;
    }

    .mobile-nav-header h4 {
        margin: 0;
        font-size: 18px;
        color: #1e293b;
        font-weight: 700;
    }

    .close-nav {
        font-size: 26px;
        cursor: pointer;
        color: #64748b;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-link,
    .mobile-link-item {
        display: block;
        padding: 15px 20px;
        color: #1e293b;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px solid #e2e8f0;
    }

    .mobile-link-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-submenu {
        display: none;
        background: #f8fafc;
    }

    .mobile-submenu.active {
        display: block;
    }

    .mobile-submenu a {
        display: block;
        padding: 12px 20px 12px 40px;
        font-size: 14px;
        color: #475569;
        border-bottom: 1px solid #e2e8f0;
    }
}

.mobile-nav-actions {
    padding: 18px 20px;
    display: flex;
    gap: 12px;
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.mobile-btn {
    flex: 1;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: 0.25s ease;
}

.mobile-btn-outline {
    border: 2px solid #6366f1;
    color: #6366f1;
    background: transparent;
}

.mobile-btn-outline:hover {
    background: #6366f1;
    color: #fff;
}

.mobile-btn-primary {
    background: #6366f1;
    color: white;
    border: 2px solid #6366f1;
}

.mobile-btn-primary:hover {
    background: #4f46e5;
    border-color: #4f46e5;
}

body.menu-open {
    overflow: hidden;
}


/* Hero Section Hero Section Hero Section Hero Section Hero Section Hero Section Hero Section Hero Section Hero Section Hero Section Hero Section*/

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to right,
            rgba(15, 23, 42, 0.9),
            rgba(15, 23, 42, 0.4),
            transparent
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 50px;
    padding: 0 1rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: rgba(99, 102, 241, 0.2);
    color: #ffffff;
    border: 1px solid rgba(99, 102, 241, 0.3);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #6366f1;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-demo {
    padding: 1rem 2rem;
    background-color: #6366f1;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-demo:hover {
    background-color: #4f46e5;
}

.btn-demo span {
    transition: transform 0.2s;
}

.btn-demo:hover span {
    transform: translateX(4px);
}

.btn-pricing {
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pricing:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Why Choose Section */

.section {
    padding: 1rem 0;
}

.section-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid-2 {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2.5rem;
}

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

.feature-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.feature-content {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-indigo {
    background-color: #eef2ff;
    color: #6366f1;
}

.icon-cyan {
    background-color: #ecfeff;
    color: #06b6d4;
}

.icon-emerald {
    background-color: #ecfdf5;
    color: #10b981;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #64748b;
}

.image-container {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(
            to top right,
            rgba(99, 102, 241, 0.2),
            rgba(6, 182, 212, 0.2)
    );
    filter: blur(3rem);
    border-radius: 50%;
}

.image-wrapper {
    position: relative;
    background-color: #0f172a;
    border-radius: 2.5rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 8px solid #1e293b;
}

.image-wrapper img {
    width: 100%;
    aspect-ratio: 4 / 4.5;
    object-fit: cover;
    border-radius: 1.5rem;
}

/* ================================
   VIDEO SECTION
================================ */
.video-section {
    background: #0b1220; /* dark background */
    position: relative;
    overflow: hidden;
}

.video-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.video-section .section-header p {
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Wrapper */
.video-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;

    /* glass border */
    border: 1px solid rgba(255, 255, 255, 0.08);

    /* shadow */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);

    transform: translateZ(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

/* Video element */
.video-thumbnail {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
    background: #000;
}

/* Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;

    /* overlay gradient */
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.6) 100%
    );

    transition: opacity 0.35s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 0.95;
}

/* Big play button */
.play-btn-lg {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;

    /* glass effect */
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-wrapper:hover .play-btn-lg {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.18);
}

.play-btn-lg i {
    margin-left: 4px; /* center play icon */
}

/* Section padding (if not already defined in project) */
.section-padding {
    padding: 80px 0;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .video-section .section-header h2 {
        font-size: 30px;
    }

    .video-thumbnail {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .video-section .section-header h2 {
        font-size: 24px;
    }

    .video-section .section-header p {
        font-size: 14px;
    }

    .video-thumbnail {
        height: 260px;
    }

    .play-btn-lg {
        width: 68px;
        height: 68px;
        font-size: 24px;
    }
}

/* Features Section Features Section Features Section Features Section Features Section Features Section Features Section Features Section */

.features-section {
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.625rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15);
}

.icon-box-sm {
    width: 50px;
    height: 50px;
    background: #eef2ff;
    color: #6366f1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    font-size: 20px;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.feature-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* Benefits Section Benefits Section Benefits Section Benefits Section Benefits Section Benefits Section Benefits Section Benefits Section */

.benefits-section {
    background-color: #f8fafc;
    padding: 2rem 0;
}

.benefit-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    color: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.benefit-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

.command-section {
    background: linear-gradient(180deg, var(--bg-body) 0%, #E0E7FF 100%);
}

.command-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.scenario-card {
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    position: relative;
    box-shadow: var(--shadow-md);
}

.scenario-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.5s;
}

.scenario-card:hover img {
    transform: scale(1.05);
}

.industries-section { background: var(--bg-white); }

.industry-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-img-wrap {
    height: 200px;
    overflow: hidden;
}

.industry-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.industry-card:hover .industry-img-wrap img {
    transform: scale(1.1);
}

.industry-content {
    padding: 24px;
}

.clients-section {
    padding: 10px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    position: relative;
}

.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0; width: 100px; height: 100%; z-index: 2;
}
.marquee-container::before { left: 0; background: linear-gradient(to right, var(--bg-white), transparent); }
.marquee-container::after { right: 0; background: linear-gradient(to left, var(--bg-white), transparent); }

.marquee-track {
    display: flex;
    gap: 60px;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.client-logo {
    font-size: 24px;
    font-weight: 800;
    color: #CBD5E1;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* FOOTER DESIGN FOOTER DESIGN FOOTER DESIGN FOOTER DESIGN FOOTER DESIGN FOOTER DESIGN FOOTER DESIGN FOOTER DESIGN FOOTER DESIGN FOOTER DESIGN */

.modern-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 25px 0 0;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.footer-desc {
    margin: 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5f5;
    max-width: 320px;
}

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

.footer-col h4 {
    font-size: 17px;
    color: white;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #94a3b8;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.footer-socials a.instagram:hover {
    background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%,
    #d6249f 60%, #285AEB 90%);
    transform: translateY(-3px);
}

.footer-socials a.facebook:hover {
    background: #1877F2;
    transform: translateY(-3px);
}

.footer-socials a.linkedin:hover {
    background: #0A66C2;
    transform: translateY(-3px);
}

.footer-socials a.x:hover {
    background: #232222;
    transform: translateY(-3px);
}


.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-desc {
        max-width: 100%;
    }
}


.footer-brand h3 { color: white; font-size: 24px; margin-bottom: 20px; }
.footer-col h4 { color: #6366f1; margin-bottom: 24px; font-size: 18px; }

.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: white; text-decoration: underline; }

.footer-bottom {
    border-top: 1px solid #1E293B;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

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

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

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

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

@keyframes graphPulse {
    0% { height: 40%; }
    100% { height: 80%; }
}

@keyframes rise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .industry-card {
        border-radius: 8px;
    }

    .feature-content {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 42px;
    }
    .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        grid-template-columns: 1fr;
        box-shadow: none;
        padding: 20px 0;
        border-top: 1px solid #eee;
    }
    .mega-menu.active { display: block; }
    .menu-visual-card { display: none; }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        width: 100%;
        padding: 10px 0 10px 20px;
        display: none;
    }
    .dropdown::before { display: none; }
    .nav-item:hover .dropdown { display: block; }

    #customer-menu .menu-column ul {
        grid-template-columns: 1fr;
    }
}

/* DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE
DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE DEMO PAGE*/


.demo-hero-section {
    padding: 100px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/banner1.png");
    color: #ffffff;
    min-height: 74vh;
}

.demo-container {
    max-width: 1200px;
    margin: auto;
}

.demo-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.demo-title {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.demo-highlight {
    color: #38bdf8;
}

.demo-subtitle {
    font-size: 16px;
    color: #cbd5f5;
    margin-bottom: 30px;
}

.demo-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.demo-stat-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 18px;
    border-radius: 10px;
}

.demo-stat-number {
    font-size: 22px;
    font-weight: bold;
}

.demo-stat-label {
    font-size: 13px;
    color: #94a3b8;
}

.demo-testimonial-box {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
}

.demo-quote-icon {
    font-size: 26px;
    color: #38bdf8;
}

.demo-testimonial-text {
    font-size: 14px;
    color: #e5e7eb;
    margin-bottom: 8px;
}

.demo-client-name {
    font-weight: 600;
}

.demo-client-role {
    font-size: 12px;
    color: #94a3b8;
}

.demo-form-card {
    background: #ffffff;
    color: #020617;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.demo-urgency-indicator {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
}

.demo-form-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.demo-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.demo-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.demo-form-group label {
    font-size: 13px;
    margin-bottom: 6px;
    color: #475569;
}

.demo-form-group input {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

.demo-submit-btn {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
}

.demo-submit-btn:hover {
    background: #1d4ed8;
}

.demo-form-note {
    font-size: 12px;
    color: #64748b;
    margin-top: 12px;
    text-align: center;
}

@media (max-width: 900px) {
    .demo-layout-grid {
        grid-template-columns: 1fr;
    }

    .demo-title {
        font-size: 34px;
    }
}

/* --- Pricing Page Pricing Page Pricing Page Pricing Page Pricing Page Pricing Page Pricing Page Pricing Page Pricing Page Pricing Page
Pricing Page Pricing Page Pricing Page Pricing Page Pricing Page Pricing Page Pricing Page Pricing Page Pricing Page Pricing Page --- */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;  
}

main {
  flex: 1;
}

.pricing-hero {
    padding: 70px 0 0;
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/banner1.png");    color: white;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.pricing-hero p {
    font-size: 18px;
    color: #e0e7ff;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 0;
    align-items: flex-start;
}

.pricing-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, #EEF2FF 0%, #FFFFFF 100%);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.price-tag {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}

.price-tag .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    vertical-align: top;
    margin-top: 10px;
}

.price-tag span:not(.currency) {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.period {
    font-size: 16px !important;
    color: var(--text-muted);
    font-weight: 500 !important;
}

.features-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-main);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: #10B981;
    flex-shrink: 0;
    stroke-width: 2.5;
}

.full-width {
    width: 100%;
    justify-content: center;
}

@media (max-width: 900px) {
    .pricing-card.popular {
        transform: none;
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}


/* --- Contact Page  Contact Page Contact Page  Contact Page Contact Page  Contact Page Contact Page  Contact Page
Contact Page  Contact Page Contact Page  Contact Page Contact Page  Contact Page Contact Page  Contact Page --- */

.contact-hero {
    padding: 60px 0 40px;
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/banner1.png");    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.contact-hero p {
    font-size: 18px;
    color: #e0e7ff;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 0px;
    margin-bottom: 10px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: white;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(79,70,229,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: 0.3s;
}
.info-card:hover::after { opacity: 1; }

.info-icon {
    width: 50px;
    height: 50px;
    background: #EEF2FF;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary);
    color: white;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.info-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-main);
}

.info-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    background: #F8FAFC;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-input.textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 0 0 0;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 4px solid white;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%) contrast(1.05);
    transition: filter 0.3s;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* --- About Us About Us About Us About Us About Us About Us About Us About Us About Us About Us About Us About Us About Us About Us
About Us About Us About Us About Us About Us About Us About Us About Us About Us About Us About Us About Us About Us About Us--- */

.about-hero {
    padding: 60px 0 40px;
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/banner1.png");    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-hero p {
    font-size: 17px;
    color: #e0e7ff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.vm-section {
    padding: 0 0 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.vm-icon {
    width: 50px;
    height: 50px;
    background: #EEF2FF;
    color: rgb(70 229 113 / 74%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.vm-card:hover .vm-icon {
    background: #e57846;
    color: white;
    transform: rotateY(180deg);
}

.vm-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.vm-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.story-section {
    padding: 15px 0;
    background: #F8FAFC;
    overflow: hidden;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content {
    position: relative;
    z-index: 2;
}

.story-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.lead {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.story-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
}
.story-card {
    background: white;
    padding: 60px;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.35s ease;
}

.story-card:hover {
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.values-section-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.values-section-card:hover {
    border-color: var(--primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 18px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.value-number {
    font-size: 32px;
    font-weight: 700;
    color: #CBD5E1;
    margin-bottom: 10px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.team-section {
    padding: 10px 0;
    background: linear-gradient(to bottom, #F8FAFC 0%, white 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.team-section-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.team-section-card:hover {
    border-color: var(--primary);
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    padding-bottom: 0;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
    overflow: hidden;
    margin-bottom: 20px;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}

.team-card .role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}
@media (max-width: 768px) {
    .values-section-card {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .value-card {
        padding: 26px 22px;
    }
}

@media (max-width: 768px) {
    .team-section-card {
        padding: 40px 24px;
        border-radius: 20px;
    }
}

@keyframes blobMorph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

@media (max-width: 900px) {
    .vm-grid, .story-wrapper { grid-template-columns: 1fr; }
    .story-image { order: -1; margin-bottom: 40px; }
}

/* --- FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS
 FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS FAQS --- */

.faq-hero {
    padding: 60px 0 0;
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/banner1.png");    color: white;
    text-align: center;
}

.faq-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.faq-hero p {
    font-size: 17px;
    color: #e0e7ff;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text-main);
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.search-icon {
    position: absolute;
    right: 24px;
    color: var(--text-muted);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.faq-content {
    padding: 40px 0;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    margin: 60px 0 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
    display: inline-block;
}

.category-title:first-child {
    margin-top: 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: #F1F5F9;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: white;
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    padding: 0 24px;
    background: #FAFAFA;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 24px;
    border-top-color: var(--border-light);
    max-height: 500px;
}

.cta-faq {
    padding: 20px 0;
    text-align: center;
    background: #63cbf16b;
    border-top: 1px solid var(--border-light);
}

.cta-faq h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.cta-faq p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media(max-width: 600px) {
    .cta-buttons { flex-direction: column; }
    .faq-question { font-size: 14px; }
}

/* --- RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL
RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL RETAIL--- */

.section-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.section-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .section-card {
        padding: 40px 24px;
    }
}
.retail-hero {
    padding: 225px 0 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/bannerretail.png");
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.retail-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.retail-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.retail-hero p {
    font-size: 18px;
    color: #E0E7FF;
    margin-bottom: 32px;
    line-height: 1.6;
}

.retail-hero img {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.1);
}

.indian-retail-section {
    padding: 40px 0;
    background: white;
}

.indian-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.indian-text span.badge {
    display: inline-block;
    padding: 6px 16px;
    background: #FEF3C7;
    color: #92400E;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.indian-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.indian-text p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.indian-list {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.indian-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-main);
}

.indian-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 800;
}

.indian-img-wrapper img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.indian-img-wrapper:hover img {
    transform: scale(1.02);
}

.use-cases-section {
    padding: 40px 0;
    background: #F8FAFC;
}

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

.case-card {
    background: rgba(79, 70, 229, 0.08);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.case-icon {
    width: 60px;
    height: 60px;
    background: #EEF2FF;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.case-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.case-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.case-stat {
    margin-top: auto;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
}

.segments-section {
    padding: 40px 0;
    background: white;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.segment-item {
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    cursor: default;
}

.segment-item:hover {
    background: white;
    border-color: var(--border-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.segment-icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.segment-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
}

.setup-section {
    padding: 100px 0;
    background: #F8FAFC;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 4px solid var(--primary);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #E2E8F0;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-main);
}
.segment-icon i {
    font-size: 32px;
    color: #2e7d32;
}
.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .indian-grid { grid-template-columns: 1fr; }
    .segments-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .retail-hero h1 { font-size: 36px; }
    .hero-grid { grid-template-columns: 1fr; }
    .segments-grid { grid-template-columns: 1fr; }
}

/* HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE
HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE HEALTHCARE */

.healthcare-hero {
    padding: 200px 0 130px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/bannerhealth.png");
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.healthcare-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.healthcare-hero h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.healthcare-hero p {
    font-size: 18px;
    color: #E0F2FE;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-benefits {
    display: flex;
    gap: 20px;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.applications-section {
    padding: 40px 0;
    background: #F8FAFC;
}

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

.app-card {
    background: rgba(79, 70, 229, 0.08);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.15);
    border-color: #BAE6FD;
}

.app-icon {
    width: 64px;
    height: 64px;
    background: #E0F2FE;
    color: #0284C7;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.app-card:hover .app-icon {
    transform: scale(1.1) rotate(-5deg);
    background: #0284C7;
    color: white;
}

.app-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.app-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.facilities-section {
    padding: 40px 0;
    background: white;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.facility-item {
    background: #F0F9FF;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid transparent;
}

.facility-item:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.facility-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.facility-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
}

.setup-section {
    padding: 0 0;
    background: #F8FAFC;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}
.facility-icon i {
    font-size: 32px;
    color: #c62828;
}

.step-card {
    background: rgba(79, 70, 229, 0.08);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
    text-align: center;
    border-top: 4px solid var(--secondary);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 8px rgba(6, 182, 212, 0.3);
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .facilities-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
}

@media (max-width: 600px) {
    .healthcare-hero h1 { font-size: 36px; }
    .hero-grid { grid-template-columns: 1fr; }
    .facilities-grid { grid-template-columns: 1fr; }
}

/* --- DIGITAL MENU BOARD DIGITAL MENU BOARD DIGITAL MENU BOARD DIGITAL MENU BOARD DIGITAL MENU BOARD DIGITAL MENU BOARD DIGITAL MENU BOARD DIGITAL MENU BOARD
DIGITAL MENU BOARD DIGITAL MENU BOARD DIGITAL MENU BOARD DIGITAL MENU BOARD DIGITAL MENU BOARD DIGITAL MENU BOARD DIGITAL MENU BOARD DIGITAL MENU BOARD --- */

.section-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.section-card:hover {
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .section-card {
        padding: 40px 24px;
        border-radius: 20px;
    }
}

.hero1 {
    padding: 150px 0 150px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/banner.png");    color: white;
    position: relative;
    overflow: hidden;
}

.hero1::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons a {
    background: white;
    font-weight: 700;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s;
    color: #EA580C;
}

.hero-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.brand-logos {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 600;
}

.brand-logos span {
    margin-right: 15px;
}

.brand-logos i {
    font-size: 28px;
    opacity: 0.8;
    transition: 0.3s;
}

.brand-logos i:hover {
    opacity: 1;
    transform: scale(1.1);
}

.benefits {
    padding: 40px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(79, 70, 229, 0.08);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    border-color: #F97316;
    transform: translateY(-5px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 30%;
    display: flex;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 0;
    transition: 0.3s;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.benefit-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.comparison {
    padding: 40px 0;
    background: #F8FAFC;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

thead tr {
    background: #F3F4F6;
}

th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

th:first-child {
    width: 25%;
}

th:nth-child(2) {
    background: var(--primary);
    color: white;
}

th:nth-child(3) {
    background: #94A3B8;
    color: #E2E8F0;
}

td {
    padding: 20px;
    border-bottom: 1px solid #F1F5F9;
    color: var(--text-main);
}

tr:last-child td {
    border-bottom: none;
}

.feature-label {
    font-weight: 600;
    color: var(--text-main);
}

.check-icon {
    color: #10B981;
    font-size: 18px;
    margin-right: 8px;
}

.times-icon {
    color: #EF4444;
    font-size: 18px;
    margin-right: 8px;
}

.setup-steps {
    padding: 40px 0;
    background: white;
}

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

.step-item {
    position: relative;
    padding: 40px 30px;
    background: #f1f5f9;
    border: 1px solid #F1F5F9;
    border-radius: 16px;
    transition: 0.3s;
}

.step-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.step-title {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--text-main);
    font-weight: 700;
}

.step-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.showcase {
    padding: 40px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 85%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    display: flex;
    align-items: flex-end;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: black;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.customization {
    padding: 40px 0;
    background: #F8FAFC;
}

.cms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.cms-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: left;
}

.cms-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.cms-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 14px;
    display: inline-block;
}

.cms-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.cms-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 14px;
    display: inline-block;
}

.cms-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.cms-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.roi-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.roi-header {
    margin-bottom: 50px;
}

.roi-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.roi-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.roi-item i {
    font-size: 22px;
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.roi-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}


.roi-section {
    padding: 40px 0;
    background: white;
}

.roi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.roi-image {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.roi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.roi-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
}

.roi-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.roi-list {
    display: grid;
    gap: 16px;
}

.roi-item {
    padding: 16px 18px;
}

.roi-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.roi-item p {
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .hero-wrapper, .roi-wrapper { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .hero-title { font-size: 36px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .steps-container { grid-template-columns: 1fr; }
}

/* --- DIGITAL BULLETIN BOARD DIGITAL BULLETIN BOARD DIGITAL BULLETIN BOARD DIGITAL BULLETIN BOARD DIGITAL BULLETIN BOARD DIGITAL BULLETIN BOARD
DIGITAL BULLETIN BOARD DIGITAL BULLETIN BOARD DIGITAL BULLETIN BOARD DIGITAL BULLETIN BOARD DIGITAL BULLETIN BOARD DIGITAL BULLETIN BOARD--- */

.section-card {
    background: #fff;
    padding: 60px;
    border-radius: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    transition: 0.3s ease;
}

.section-card:hover {
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .section-card {
        padding: 40px 24px;
        border-radius: 8px;
        margin-top: 2rem;
    }
}

.bulletin-hero {
    padding: 150px 0 140px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/banner1.png");
    color: white;
    position: relative;
    overflow: hidden;
}

.bulletin-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}

.bulletin-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bulletin-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
}

.bulletin-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #93C5FD;
    margin-bottom: 20px;
}

.bulletin-content p {
    font-size: 18px;
    color: #E0E7FF;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-badge-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge-item i {
    color: #FBBF24;
}

.bulletin-benefits {
    padding: 0 0;
    background: white;
}

.benefits-8-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.benefit-8-card {
    background: rgba(6, 182, 212, 0.08);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.benefit-8-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.benefit-8-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit-8-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.benefit-8-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.bulletin-platform {
    padding: 0 0;
    background: #F8FAFC;
}

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

.platform-card {
    background: rgba(6, 182, 212, 0.08);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.platform-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.platform-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.bulletin-visualize {
    padding: 0 0;
    background: white;
}

.visualize-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.viz-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.viz-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.viz-icon-box {
    width: 60px;
    height: 60px;
    background: #E0E7FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

.viz-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.viz-content p {
    font-size: 14px;
    color: var(--text-muted);
}

.bulletin-why-choose {
    padding: 40px 0;
    background: #F8FAFC;
}

.why-wrapper-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-list p {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.why-list p:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    color: var(--primary);
}

.why-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.why-list-item i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 3px;
}

.why-list-item p {
    font-size: 15px;
    color: var(--text-main);
    font-weight: 500;
}

.bulletin-last-slide {
    padding: 40px 0;
    background: white;
}

.slide-7-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.slide-card-7 {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    text-align: center;
}

.slide-card-7:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.slide-card-7 i {
    color: var(--secondary);
    font-size: 28px;
    margin-bottom: 15px;
}

.slide-card-7 h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-main);
}

@media (max-width: 900px) {
    .benefits-8-grid { grid-template-columns: 1fr; }
    .why-wrapper-grid { grid-template-columns: 1fr; }
    .why-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .bulletin-wrapper { grid-template-columns: 1fr; }
    .visualize-grid { grid-template-columns: 1fr; }
}


/* --- DIGITAL DISPLAY BOARD DIGITAL DISPLAY BOARD DIGITAL DISPLAY BOARD DIGITAL DISPLAY BOARD DIGITAL DISPLAY BOARD DIGITAL DISPLAY BOARD
DIGITAL DISPLAY BOARD DIGITAL DISPLAY BOARD DIGITAL DISPLAY BOARD DIGITAL DISPLAY BOARD DIGITAL DISPLAY BOARD DIGITAL DISPLAY BOARD --- */

.display-hero {
    padding: 180px 0 500px;
    background: linear-gradient(
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.65)
    ),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/displayboard.png");
    color: white;
    position: relative;
    overflow: hidden;
}

.display-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.display-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.display-hero-content p {
    font-size: 18px;
    color: #e0e7ff;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 520px;
}

.display-hero-image {
    display: flex;
    justify-content: center;
}

.display-hero-img {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
    .display-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .display-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

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

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-main);
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

header, footer {
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 100;
}

footer {
    border-top: 1px solid var(--border-light);
    border-bottom: none;
    margin-top: 40px;
}

.brand {
    font-weight: 800;
    font-size: 24px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/displayboard.png");
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}



.hero-image-wrapper {
    position: relative;
}

.hero-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.capabilities-section {
    padding: 30px 0;
 }

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cap-card {
    background:  rgba(79, 70, 229, 0.08);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
     border: 1px solid transparent;
}

.cap-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.cap-icon {
    width: 60px;
    height: 60px;
     border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    font-size: 24px;
}

.cap-card:hover .cap-icon {
    background: var(--primary);
}

.cap-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cap-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.platform-section {
    padding: 30px 0;
    background: #F3F4F6;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.plat-card {
    padding: 35px;
    border-radius: 16px;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow-sm);
     display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.plat-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plat-card i {
    color: var(--secondary);
    font-size: 18px;
}

.plat-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.tech-section {
    padding: 30px 0;
 }

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tech-item {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.tech-item:hover {
    border-color: var(--primary);
    background: #F5F7FF;
}

.tech-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.tech-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.tech-item p {
    font-size: 13px;
    color: var(--text-muted);
}

.visuals-section {
    padding: 40px 0;
    background: linear-gradient(to right, #1e1b4b, #312e81);
}

.visuals-section .section-header h2 {
 }

.visuals-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 50px;
}

.digital-screen {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    border: 8px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.slide-text {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.5s delay 0.3s;
}

.slide.active .slide-text {
    transform: translateY(0);
    opacity: 1;
}

.slide-text h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.slide-text p {
    font-size: 18px;
}

.controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.control-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.control-dot.active {
     transform: scale(1.2);
}

.why-section {
    padding: 40px 0;
    background: #F8FAFC;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-item {
    background: rgba(79, 70, 229, 0.08);
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
}

.why-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.why-item i {
    color: var(--secondary);
}

.why-cta-card {
    background: rgba(79, 70, 229, 0.08);
    padding: 40px;
    border-radius: 20px;
     text-align: center;
}

.why-cta-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.why-cta-card p {
    opacity: 0.9;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-badges { justify-content: center; }
    .hero-image-wrapper { margin-top: 30px; }
    .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .capabilities-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; }
    .why-list { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 32px; }
    .slide-text h3 { font-size: 20px; }
    .slide-text p { font-size: 14px; }
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-main);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.open span:nth-child(1) {
    top: 10px; transform: rotate(135deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0; left: -60px;
}
.hamburger.open span:nth-child(3) {
    top: 10px; transform: rotate(-135deg);
}

.mobile-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: var(--bg-white);
    z-index: 1001;
    padding: 80px 0 30px 0;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    display: none;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    padding: 0 25px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-header h4 {
    color: var(--primary);
    font-size: 18px;
}

.close-nav {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close-nav:hover { color: var(--primary); }

.mobile-nav ul {
    padding: 0 10px;
}

.mobile-nav li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav > ul > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-main);
}

.mobile-nav a i.arrow {
    font-size: 12px;
    color: #ccc;
    transition: transform 0.3s;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background-color: #fcfcfc;
    transition: max-height 0.4s ease-out;
    padding-left: 15px;
    border-left: 3px solid var(--primary);
    margin-left: 15px;
}

.mobile-submenu.open {
    max-height: 500px;
    margin-bottom: 10px;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu a {
    display: block;
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text-muted);
    align-items: center;
    gap: 10px;
}

.mobile-submenu a:hover {
    color: var(--primary);
    background: #f0f8ff;
}

.mobile-submenu a i {
    width: 20px;
    text-align: center;
    font-size: 12px;
}

.mobile-submenu-title {
    padding: 10px 15px;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
}

.mobile-actions {
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.mobile-actions .btn {
    width: 100%;
    margin-bottom: 10px;
    justify-content: center;
}

.mobile-login-link {
    color: #666;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .onair-page .hero-content p {
        font-size: 16px !important;
        line-height: 1.3rem !important;
        font-weight: 500;
    }

    .onair-page .onair-hero {
        min-height: fit-content !important;
    }

    .onair-page .industry-card {
        border-radius: 8px !important;
    }

    .onair-page .step-card {
        padding: 20px 30px !important;
        border-radius: 10px !important;
    }

    .onair-page .feature-card p {
        line-height: 1.3rem !important;
    }

    .onair-page .feature-card h3 {
        font-size: 15px !important;
        margin-bottom: 5px !important;
    }

    .onair-page .feature-card {
        padding: 25px !important;
        border-radius: 8px !important;
    }

    .onair-page .features-grid {
        grid-template-columns: none !important;
        gap: 16px !important;
    }

    .onair-benefits-grid > div > h4 {
        font-weight: 500 !important;
    }

    .onair-benefit {
        padding: 18px !important;
        border-radius: 9px !important;
    }

    .onair-title {
        font-size: 16px !important;
        font-weight: 500 !important;
    }

    .why-cta-card h3 {
        font-size: 19px;
    }

    .why-cta-card {
        padding: 9px;
        border-radius: 6px;
    }

    .why-content h2{
        font-size: 1.1rem;
    }

    .why-content p {
        margin-top: 1rem;
        line-height: 1.3rem;
    }

    .roi-item div {
        margin-bottom: -2rem;
    }

    .roi-item {
        border-radius: 8px;
        gap: 5px;
        flex-direction: column;
        padding: 11px 18px;
    }

    .roi-image {
        border-radius: 7px;
    }

    .cms-card h3 {
        font-size: 15px;
        margin-bottom: 1px;
    }

    .cms-card {
        border-radius: 8px;
        padding: 10px 28px;
    }

    .gallery-text {
        font-size: 12px;
    }

    .gallery-item {
        border-radius: 5px;
    }

    .step-number {
        top: -17px;
        width: 32px;
        height: 32px;
        font-weight: 500;
        font-size: 14px;
    }

    .step-item {
        padding: 22px 30px;
        border-radius: 8px;
    }

    .step-title {
        font-size: 15px;
        margin-bottom: 2px;
        margin-top: 0;
    }

    .check-icon {
        font-size: 15px;
        margin-right: 8px;
    }

    td {
        padding: 10px;
        font-size: 11px;
        white-space: nowrap;
    }

    th {
        padding: 10px;
        text-align: center;
        font-size: 12px;
    }

    table {
        border-radius: 6px;
    }

    .benefit-card h3 {
        font-size: 1rem;
    }

    .text-center {
        margin-bottom: 1rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(277px, 1fr));
        gap: 20px;
    }

    .benefit-card {
        padding: 13px 30px;
        border-radius: 8px;
    }

    .hero-buttons a {
        padding: 8px 32px;
        border-radius: 18px;
        font-size: 13px;
    }

    .hero-content {
        margin:0;
    }

    .hero1 {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .section-description {
        font-size: 1em;
        line-height: 1.4rem;
    }

    .feature-card h3 {
        font-size: 0.9rem;
    }

    .industry-img-wrap {
        height: auto;
    }

    .industry-img-wrap img {
        height: auto;
    }

    .scenario-card {
        border-radius: 8px;
    }

    .onair-page .process-steps::before {
        display: block;
    }

    .footer-links li {
        margin-bottom: 4px;
    }

    .footer-col h4 {
        margin-bottom: 6px;
    }

    .footer-grid {
        margin-bottom: 10px;
        gap: 18px;
    }

    footer {
        padding: 20px 0 30px;
    }

    .stat-number {
        font-weight: 600;
        font-size: 1.2rem;
    }

    .indian-text h2 {
        font-size: 1.4rem;
        margin-bottom: 9px;
        font-weight: 100 !important;
    }

    h1, h2, h3, h4, h5, h6 {
        font-weight: 200 !important;
    }

    .f2{
        font-size: 1rem;
        font-weight: 300;
    }

    .why-icon {
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
    }

    .why-card {
        flex-direction: column;
    }

    .submit-btn {
        font-size: 0.8rem;
    }

    .form-group label {
        display: flex;
    }

    .benefit-item {
        margin-bottom: 1rem;
    }

    .hero-benefits {
        display: block;
    }

    .slide-card-7 h4 {
        font-weight: 100;
    }

    .step-card {
        margin-bottom: 2rem;
    }

    .step-card h3 {
        font-weight: 100;
        font-size: 1rem;
    }

    .why-list-item p {
        font-weight: 300;
    }

    .f1{
        font-size: 1.2rem;
        font-weight: 500;
    }

    .viz-content h4 {
        font-size: 1rem;
        font-weight: 100;
    }

    .platform-card h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .benefit-8-card h4 {
        font-size: 0.9rem;
    }

    .btn {
        text-align: center;
    }

    .hero-badge-item {
        width: 100%;
        text-align: center;
        display: block;
    }

    .bulletin-content h2 {
        font-size: 1.1rem;
        font-weight: 200;
    }

    .bulletin-content h1 {
        font-size: 1.1rem;
    }

    .process-steps {
        display: block;
    }

    .btn {
        display: inline;
    }

    .cta-faq h2 {
        font-size: 1.5rem;
        margin-bottom: 6px;
        font-weight: 500;
    }

    .category-title {
        font-size: 1.4rem;
        font-weight: 500;
    }

    .search-input {
        font-size: 10px;
    }

    .faq-hero h1 {
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: 6px;
        line-height: 1.8rem;
    }

    .contact-hero h1 {
        font-size: 1.3rem;
        font-weight: 400 !important;
    }

    .cta-section h2 {
        font-size: 1.3rem;
        font-weight: 300;
    }

    .value-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1px;
        font-weight: 600;
    }

    .story-content h2 {
        font-size: 1.3rem;
        margin-bottom: 4px;
        font-weight: 300 !important;
    }

    .vm-card h2 {
        font-size: 1.2rem;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .about-hero h1 {
        font-size: 1.3rem;
        font-weight: 400 !important;
        letter-spacing: 0;
    }

    .pricing-hero h1 {
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 4px;
        letter-spacing: 0;
    }

    .roi-item h4 {
        font-size: 1rem;
        font-weight: 500;
    }

    .roi-content h2 {
        font-size: 1.2rem;
    }

    .benefit-title {
        font-size: 1rem;
        font-weight: 100;
    }

    .section-title {
        font-size: 1rem;
        margin-bottom: 1px;
        font-weight: 200;
    }

    .hero h1 { font-size: 42px; }

    .nav-menu, .header-actions { display: none; }

    .hamburger { display: block; }
    .mobile-nav { display: block; }

    .mega-menu, .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        padding: 0;
        border: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-grid, .why-grid, .command-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-visual { display: none; }

    .why-features { order: 2; }
    .why-img-container { order: 1; margin-bottom: 30px; }

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

    .mobile-nav { width: 85%; max-width: 320px; }

    .section-padding { padding: 60px 0; }

    .section-header h2 { font-size: 32px; }

    .hero-content h1 {
        font-size: 1.2rem !important;
        font-weight: 400;
        line-height: normal;
    }

    .hero-content p {
        font-size: 16px;
        max-width: 100%;
        font-weight: bold;
    }

    .hero-btns { flex-direction: column; align-items: center; }
    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        display: block;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero-content h1 { font-size: 28px; }

    .section-header h2 {
        font-size: 1.1rem !important;
    }

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

    .feature-card { padding: 24px; }

    .scenario-card { height: auto; }

    .mobile-nav { width: 90%; }
}


/* Digital Advertising screen Digital Advertising screen Digital Advertising screen Digital Advertising screen Digital Advertising screen
Digital Advertising screen Digital Advertising screen Digital Advertising screen Digital Advertising screen Digital Advertising screen */


.onair-page .onair-hero {
    padding: 140px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/digitaladve5.png");
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.onair-page .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: floatShape 10s infinite alternate;
}

.onair-page .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    opacity: 0.15;
    top: -100px;
    right: -100px;
}

.onair-page .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    opacity: 0.1;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.onair-page .hero-grid {
    display: grid;
    gap: 250px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.onair-page .hero-tagline {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
    color: var(--primary-light);
}

.onair-page .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.onair-page .hero-content p {
    font-size: 18px;
    color: #eef2ff;
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.8;
}

.onair-page .hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.onair-page .btn-primary {
    padding: 12px 30px;
    font-size: 16px;
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.onair-page .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.onair-page .btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.onair-page .btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.onair-page .trust-badges {
    display: flex;
    gap: 24px;
}

.onair-page .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #94A3B8;
    font-weight: 500;
}

.onair-page .trust-item i {
    background: rgba(16, 185, 129, 0.1);
    padding: 5px;
    border-radius: 50%;
}

.onair-page .canvas-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.onair-page .screen-frame {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
}

.onair-page .canvas-wrapper:hover .screen-frame {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

.onair-page .canvas-loading {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

.onair-page #adAnimationCanvas {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: block;
}

.onair-page .float-badge {
    position: absolute;
    background: var(--bg-white);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatBadge 6s ease-in-out infinite;
    z-index: 5;
    white-space: nowrap;
}

.onair-page .badge-1 { top: 10%; left: -20px; }
.onair-page .badge-2 { bottom: 20%; right: -20px; animation-delay: 1s; }

.onair-page .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.onair-page .section-subtitle {
    display: block;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
}

.onair-page .section-header h2 {
    font-size: 32px;
    color: var(--text-main);
    font-weight: 600;
}

.onair-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.onair-page .feature-card {
    background: rgba(79, 70, 229, 0.08);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.onair-page .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.12);
    border-color: rgba(79, 70, 229, 0.1);
}

.onair-page .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.onair-page .feature-card:hover::before {
    opacity: 1;
}

.onair-page .icon-box {
    width: 60px;
    height: 60px;
    background: #EEF2FF;
    color: #e5a546;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: transform 0.4s ease;
}

.onair-page .feature-card:hover .icon-box {
    transform: scale(1.1) rotate(-5deg);
    background: #e5a546;
    color: white;
}

.onair-page .feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.onair-page .feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.onair-page .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    margin-top: 60px;
}

.onair-page .process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 0;
    display: none;
}

.onair-page .step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.onair-page .step-card:hover {
    transform: translateY(-5px);
}

.onair-page .step-number {
    width: 40px;
    height: 40px;
    background: white;
    border: 4px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 5px white;
}

.onair-page .industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.onair-page .industry-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.onair-page .industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.onair-page .industry-img-wrap {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.onair-page .industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.onair-page .industry-card:hover .industry-img {
    transform: scale(1.08);
}

.onair-page .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onair-page .industry-card:hover .card-overlay {
    opacity: 1;
}

.onair-page .overlay-icon {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.onair-page .industry-card:hover .overlay-icon {
    transform: translateY(0);
}

.onair-page .industry-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.onair-page .industry-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.onair-page .cta-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%);
    position: relative;
    overflow: hidden;
}

.onair-page .cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.onair-page .cta-visual h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.onair-page .cta-visual p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.onair-page .feature-list-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.onair-page .visual-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--text-main);
}

.onair-page .v-icon {
    width: 30px;
    height: 30px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onair-page .form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
}

.onair-page .form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--text-main);
}

.onair-page .form-group {
    margin-bottom: 24px;
}

.onair-page .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
}

.onair-page .form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.onair-page .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}

.onair-page .btn.full-width {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 16px;
    letter-spacing: 1px;
}

@keyframes floatShape {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-20px, 40px); }
}

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

@media (max-width: 1024px) {
    .onair-hero {
        height: 100vh;
    }

    .onair-feature h4 {
        font-weight: 500 !important;
    }

    .onair-gallery {
        border-radius: 7px !important;
    }

    .onair-gallery-grid {
        grid-template-columns: none;
        gap: 20px;
        margin-top: 20px;
    }

    .why-list p {
        border-radius: 7px;
        padding: 7px 18px;
    }

    .why-wrapper-grid > div > h2{
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .viz-card {
        border-radius: 7px;
        padding: 23px;
    }

    .platform-card {
        padding: 17px;
        border-radius: 8px;
    }

    .platform-6-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 14px;
        margin-top: 23px;
    }

    .benefit-8-card {
        padding: 20px 20px;
        border-radius: 7px;
    }

    .bulletin-content p {
        line-height: 1.4rem;
    }

    .bulletin-hero {
        background-size: cover;
        background-position: center;
    }

    .display-hero {
        background-size: cover;
        background-position: center;
    }

    .tech-item h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .tech-item {
        border-radius: 4px;
    }

    .section-header p {
        font-size: 15px;
        line-height: 1.3rem;
    }

    .platform-grid {
        grid-template-columns: repeat(auto-fit, minmax(249px, 1fr));
        gap: 18px;
    }

    .plat-card {
        padding: 20px;
        border-radius: 9px;
    }

    .plat-card h3 {
        font-size: 14px;
    }

    .cap-card h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .cap-icon {
        margin: 0 auto -6px;
    }

    .cap-card {
        padding: 15px 20px;
        border-radius: 8px;
    }

    .display-hero-content h1 {
        font-size: 22px;
        line-height: 2rem;
    }

    .mobile-nav > ul > li > a, .mobile-link-item {
        padding: 15px 25px !important;
    }

    .card-header h3 {
        font-size: 1rem;
    }

    .price-tag span:not(.currency) {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .onair-page .industry-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .onair-page .hero-grid, .onair-page .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .onair-page .hero-btns {
        justify-content: center;
    }
    .onair-page .hero-content {
        margin-bottom: 40px;
    }
    .onair-page .canvas-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .onair-page .process-steps::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .onair-page .hero-content h1 {
        font-size: 16px !important;
        font-weight: 400 !important;
        line-height: 1.3rem;
    }
    .onair-page .trust-badges { flex-direction: column; align-items: center; gap: 15px; }
    .onair-page .industry-img-wrap { height: 200px; }
}

/*  DIGITAL NOTICE BOARD DIGITAL NOTICE BOARD  DIGITAL NOTICE BOARD  DIGITAL NOTICE BOARD  DIGITAL NOTICE BOARD  DIGITAL NOTICE BOARD  DIGITAL NOTICE BOARD */

.onair-container{
    max-width:1280px;
    margin:auto;
    padding:80px 20px;
}
.onair-center{text-align:center}
.onair-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
}
.onair-sub{
    max-width:700px;
    margin:auto;
}

.onair-btn{
    padding:14px 36px;
    border-radius:50px;
    border:none;
    font-weight:600;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:10px;
}
.onair-btn-primary{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
}

.onair-hero {
    position: relative;
    width: 100%;
    min-height: 750px;
    background-image: url("images/digitalnoticeboardbanner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.onair-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
    );
}

.onair-hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.onair-hero-content {
    color: white;
    max-width: 620px;
    padding: 280px 0;
}

@media (max-width: 768px) {
    .onair-hero-content {
        padding: 80px 20px;
        text-align: center;
    }
}

.onair-hero h1{
    font-size:56px;
}
.onair-hero p{
    font-size:20px;
    margin:25px 0;
}

.onair-benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:40px;
}
.onair-benefit{
    background:rgba(79, 70, 229, 0.08);
    padding:30px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
}
.onair-benefit i{
    font-size:32px;
    color:var(--primary);
    margin-bottom:15px;
}
.onair-benefit:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.onair-gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}
.onair-gallery{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}
.onair-gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
}
.onair-gallery div{
    padding:20px;
}

.onair-features-box{
    background:#fff;
    padding:70px;
    border-radius:30px;
    box-shadow:0 30px 60px rgba(0,0,0,.08);
}
.onair-features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:40px;
    margin-top:50px;
}
.onair-feature i{
    font-size:26px;
    color:var(--primary);
    margin-bottom:10px;
}

.onair-steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:50px;
}
.onair-step span{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin:0 auto 20px;
}
.onair-section-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.onair-section-card:hover {
    box-shadow: 0 18px 50px rgba(0,0,0,0.1);
    border-color: #c7d2fe;
    transform: translateY(-4px);
}

.onair-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.onair-feature {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.onair-feature i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 14px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.onair-feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.onair-feature p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.onair-feature:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.onair-feature:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.onair-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.onair-step {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.onair-step span {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(79,70,229,0.35);
    transition: transform 0.3s ease;
}

.onair-step h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.onair-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.onair-step:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 48px rgba(0,0,0,0.14);
}

.onair-step:hover span {
    transform: scale(1.1) rotate(-5deg);
}

@media (max-width: 600px) {
    .onair-step {
        padding: 26px 20px;
        border-radius: 8px;
    }
}

@media (max-width: 600px) {
    .onair-feature {
        padding: 24px 18px;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .onair-section-card {
        padding: 40px 20px;
        border-radius: 8px;
        margin-top: 2rem;
    }
}

@media(max-width:768px){
    .onair-hero h1{
        font-size: 21px;
        font-weight: 800 !important;
    }
    .onair-features-box{padding:40px}
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text-main);
    border-radius: 3px;
    transition: all 0.25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.open span:nth-child(1) {
    transform: rotate(135deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-135deg) translate(7px, -6px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: white;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
}

.mobile-nav.active {
    display: block;
    transform: translateX(0);
    padding-top: 1rem;
}

.mobile-nav-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.close-nav {
    font-size: 32px;
    cursor: pointer;
    color: #64748b;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav > ul > li > a,
.mobile-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-submenu {
    display: none;
    background: #f8fafc;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu a {
    padding: 14px 24px 14px 48px;
    font-size: 15px;
    color: #475569;
}

.mobile-nav-actions {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 12px;
}

.mobile-btn {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

.mobile-btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.mobile-btn-primary {
    background: var(--primary);
    color: white;
}

.nav-menu,
.header-actions {
    display: flex;
}

@media (max-width: 1024px) {
    .nav-menu,
    .header-actions {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .mobile-nav,
    .mobile-overlay {
        display: block;
    }
}

.mobile-btn {
    padding: 14px 20px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 8px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border: 2px solid transparent !important;
    min-height: 50px !important;
}

.mobile-btn-outline {
    background: white !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.mobile-btn-outline:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.2) !important;
}

.mobile-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3) !important;
}

.mobile-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4) !important;
}

.mobile-btn i {
    font-size: 16px !important;
    transition: transform 0.3s ease !important;
}

.mobile-btn:hover i {
    transform: translateX(3px) !important;
}

.mobile-btn:active {
    transform: translateY(1px) !important;
}

.mobile-btn::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 5px !important;
    height: 5px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 0 !important;
    border-radius: 50% !important;
    transform: scale(1) translate(-50%) !important;
}

.mobile-btn:active::after {
    animation: mobileRipple 0.6s ease-out !important;
}

@keyframes mobileRipple {
    0% {
        transform: scale(0) !important;
        opacity: 0.5 !important;
    }
    100% {
        transform: scale(25) !important;
        opacity: 0 !important;
    }
}

.mobile-nav li:last-child {
    border-bottom: none !important;
}

.mobile-nav > ul > li:has(.mobile-btn) {
    padding: 1px 35px !important;
    background: white !important;
}

/* Add logo styling for mobile */
.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.mobile-logo i {
    color: var(--primary);
    font-size: 20px;
}

.mobile-logo-img {
    height: 40px;
    width: auto;
}

.realestate-hero {
    padding: 225px 0 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/realestatebanner.png");
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.realestate-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.corporate-hero {
    padding: 225px 0 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    url("images/corporatebanner.png");
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.corporate-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

/* =========================================
   TERMS & CONDITIONS PAGE (Simplified)
========================================= */

.terms-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75)),
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
    url("images/banner1.png");
    color: white;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
}

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

.terms-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-hero-content .hero-badge i {
    color: var(--secondary);
}

.terms-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-hero p {
    font-size: 1.2rem;
    color: #e0e7ff;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 685px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.last-updated i {
    color: var(--secondary);
}

/* Terms Content */
.terms-content {
    padding: 60px 0;
    background: var(--bg-body);
}

/* Intro Card */
.terms-intro-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.terms-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.terms-intro-card h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.terms-intro-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 800;
    margin: 0 auto;
}

/* Terms Sections */
.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

.term-section {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.term-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.term-header {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid var(--border-light);
}

.term-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    min-width: 60px;
}

.term-title h3 {
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.term-title p {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.term-body {
    padding: 30px;
}

/* Term Card */
.term-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.term-card:last-child {
    margin-bottom: 0;
}

.term-card.highlight {
    border-left: 4px solid var(--primary);
    background: rgba(79, 70, 229, 0.02);
}

.term-card.highlight:hover {
    background: rgba(79, 70, 229, 0.05);
    border-color: var(--primary-light);
}

.term-card.payment {
    border-left: 4px solid #10B981;
    background: rgba(16, 185, 129, 0.02);
}

.term-card.refund {
    border-left: 4px solid #F59E0B;
    background: rgba(245, 158, 11, 0.02);
}

.term-card .term-icon,
.term-card .payment-icon,
.term-card .refund-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.term-card .term-icon {
    background: var(--primary);
}

.term-card .payment-icon {
    background: #10B981;
}

.term-card .refund-icon {
    background: #F59E0B;
}

.term-card h4 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.term-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Term Grid */
.term-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.term-feature {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.term-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-icon.security {
    background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
}

.feature-icon.ownership {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
}

.feature-icon.rules {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
}

.term-feature h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.term-feature p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Warning Card */
.warning-card {
    background: #FFF9ED;
    border: 2px solid #FBBF24;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    width: 50px;
    height: 50px;
    background: #F59E0B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-content h4 {
    font-size: 1.3rem;
    color: #92400E;
    margin-bottom: 15px;
}

.warning-content p {
    color: #92400E;
    line-height: 1.6;
    margin-bottom: 20px;
}

.responsibility-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.responsibility-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #92400E;
    font-weight: 500;
}

.responsibility-list i {
    color: #10B981;
    font-size: 1rem;
}

.important-note {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.important-note i {
    color: #D97706;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.important-note p {
    color: #92400E;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

/* Liability Card */
.liability-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 2px solid #BAE6FD;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.liability-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.liability-content p {
    color: var(--text-main);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.liability-content .liability-note {
    color: var(--secondary);
    font-weight: 600;
    background: rgba(6, 182, 212, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid var(--secondary);
}

/* Contact Box */
.contact-box {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.contact-item h5 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.contact-message {
    color: var(--text-muted);
    font-style: italic;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
    margin: 25px 0 0;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .term-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 120px 0 60px;
    }

    .terms-hero h1 {
        font-size: 2.5rem;
    }

    .terms-hero p {
        font-size: 1.1rem;
    }

    .terms-intro-card {
        padding: 30px 25px;
    }

    .intro-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .terms-intro-card h2 {
        font-size: 1.7rem;
    }

    .term-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 25px;
    }

    .term-number {
        min-width: auto;
    }

    .term-title h3 {
        font-size: 1.4rem;
    }

    .term-card,
    .warning-card,
    .liability-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .warning-icon,
    .liability-icon {
        margin: 0 auto;
    }

    .contact-box {
        padding: 30px 25px;
    }

    .acceptance-box {
        padding: 40px 25px;
    }

    .dates {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }

    .terms-intro-card {
        padding: 25px 20px;
    }

    .term-body {
        padding: 25px 20px;
    }

    .term-card,
    .warning-card,
    .liability-card {
        padding: 20px;
    }
}


/* cancellation policy cancellation policy cancellation policy cancellation policycancellation policy cancellation policy cancellation policy*/

.cancellation-table-container {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.table-header {
    display: flex;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 20px;
}

.table-header .table-col {
    flex: 1;
    text-align: center;
}

.table-header h4 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.table-row {
    display: flex;
    padding: 25px 20px;
    border-bottom: 1px solid var(--border-light);
    transition: background-color 0.3s ease;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background-color: rgba(79, 70, 229, 0.02);
}

.table-col {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.highlight-col {
    border-right: 1px solid var(--border-light);
}

.charge-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.charge-percent {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.charge-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.charge-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.window-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 182, 212, 0.1);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.2rem;
}

.window-badge i {
    font-size: 1.1rem;
}

.window-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(146, 64, 14, 0.2);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D97706;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h5 {
    font-size: 1.05rem;
    color: #92400E;
    margin-bottom: 5px;
}

.info-text p {
    color: #92400E;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .table-header {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .table-row {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }

    .highlight-col {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 25px;
    }

    .charge-percent {
        font-size: 2.5rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }
}