/* CSS Variables & Reset */
:root {
    --primary-color: #00AEEF;
    /* Cyan */
    --secondary-color: #003366;
    /* Navy */
    --accent-color: #0047AB;
    /* Royal Blue */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --bg-light: #F3F4F6;
    --bg-footer: #111827;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography & Utils */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.full-width {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 174, 239, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--secondary-color);
    border: 1px solid #e5e7eb;
}

.btn-white:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    /* Slightly more opaque for clarity */
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 16px 0;
    /* Increased padding */
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* New Logo Styling */
.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-full {
    height: 48px;
    /* Adjusted size for visibility */
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    /* More space between links */
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.btn-login {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Nav Action Links */
.nav-action {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 20px;
    background: #f8fafc;
    border-radius: 50px;
    /* Pill shape */
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.nav-action:hover {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.25);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px auto;
    transition: var(--transition);
}

/* Hero */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    border-bottom: 1px solid transparent;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    /* Softer gradient */
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.badge {
    background: rgba(0, 174, 239, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-btns .btn {
    white-space: nowrap;
}


/* Dedicated Recognitions Section */
.section-awards {
    background: #ffffff;
    padding: 40px 0;
    /* reduced padding */
    border-bottom: 1px solid #f1f5f9;
}

.awards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.awards-container h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    /* More subtle header */
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.awards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.award-item:hover {
    opacity: 1;
}

.award-item img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.award-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Specific style for the Microsoft placeholder */
.microsoft-placeholder-container {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.microsoft-placeholder-container:hover {
    opacity: 1;
}

/* Dedicated Recognitions Section END */


/* Hero Image */
.hero-image img {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0, 51, 102, 0.1));
    /* Cleaner shadow */
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-3deg);
    transition: transform 0.5s ease;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sections */
.section {
    padding: 100px 0;
    /* More spacing */
}

.section-header {
    max-width: 700px;
    margin: 0 auto 70px;
}

.badge-dark {
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 24px;
}

/* Creative Product Showcase Layout */
.product-showcase {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 140px;
}

.product-showcase.reverse-layout {
    flex-direction: row-reverse;
}

.showcase-visual {
    flex: 1;
    position: relative;
}

.showcase-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(2deg);
    transition: transform 0.4s ease;
}

.showcase-visual:hover .showcase-img {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-data-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-data-card.position-alt {
    right: auto;
    left: -20px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.data-row .label {
    color: var(--text-light);
    font-weight: 500;
}

.data-row .val {
    font-weight: 700;
    color: var(--text-dark);
}

.data-row .val.up {
    color: #10b981;
}

/* Green */
.data-row .val.active {
    color: #3b82f6;
}

/* Blue */

/* Showcase Content */
.showcase-content {
    flex: 1;
}

.badge-pill {
    display: inline-block;
    padding: 6px 14px;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.badge-pill.purple {
    background: #f3e8ff;
    color: #9333ea;
}

.desc-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Modules Grid - Bento Style */
.modules-section {
    background: #fafafa;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f1f5f9;
}

.modules-section h4 {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.modules-grid-creative {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.module-card-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
    border: 1px solid transparent;
}

.module-card-mini:hover {
    transform: translateY(-2px);
    border-color: #e2e8f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.module-card-mini span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.icon-box {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* Icon Box Colors */
.color-1 {
    background: #e0f2fe;
    color: #0284c7;
}

.color-2 {
    background: #fee2e2;
    color: #ef4444;
}

.color-3 {
    background: #dcfce7;
    color: #22c55e;
}

.color-4 {
    background: #f3e8ff;
    color: #a855f7;
}

.color-5 {
    background: #ffedd5;
    color: #f97316;
}

.color-6 {
    background: #f1f5f9;
    color: #475569;
}

.btn-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: margin-left 0.2s;
}

.btn-link:hover {
    margin-left: 5px;
}

/* Product Details */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.product-detail.reverse {
    direction: rtl;
}

.product-detail.reverse .product-text {
    direction: ltr;
}

.product-icon-lg {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: #ecfeff;
    /* Lighter cyan tint */
    color: var(--primary-color);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
}

.visual-card {
    /* Kept general container props just in case, though mostly replaced by img now */
    border-radius: 20px;
    min-height: 250px;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.tag {
    background: #f0f9ff;
    color: var(--secondary-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #e0f2fe;
}

/* Visual Info Card Overlay/Attachment */
.visual-info-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 24px;
    margin-top: -30px;
    /* Overlap effect or just closer */
    position: relative;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.visual-info-card h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.stat-row span:first-child {
    color: var(--text-light);
}

.stat-row .value {
    color: var(--primary-color);
    font-weight: 700;
}

.tiny-note {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 12px;
    text-align: right;
    margin-bottom: 0;
}

/* New Product Image Style */
.product-feature-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product-feature-img:hover {
    transform: scale(1.02);
}

/* Removed old img-caption style since replaced by card */


/* Mock Graphics */
.mock-chart {
    height: 120px;
    background: linear-gradient(180deg, rgba(0, 174, 239, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-bottom: 2px solid var(--primary-color);
    margin: 20px 0;
}

/* Trusted Clients - Marquee Style */
.trusted-clients {
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    padding: 80px 0;
    overflow: hidden;
    /* Hide scrollbar */
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0));
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
        /* Move by half the width of content + half gap */
    }
}

.trusted-clients .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.client-card-marquee {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    height: 200px;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.client-card-marquee:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.client-card-marquee img {
    max-height: 160px;
    max-width: 280px;
    width: auto;
    object-fit: contain;
    filter: none;
}

/* Modules Suite Section */
.section-suite {
    margin-top: 100px;
    /* Separation from previous section */
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.module-card {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.module-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.1);
}

.module-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
    padding: 10px;
    background: #f0f9ff;
    border-radius: 10px;
}

.module-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.module-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ROI Section */
.roi-section {
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
    padding: 100px 0;
}

.roi-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.roi-item h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.roi-item p {
    font-size: 1rem;
    line-height: 1.7;
}

/* About Section */
.section-about {
    background: var(--white);
    padding: 80px 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Responsive updates for new sections */
@media (max-width: 768px) {
    .roi-content {
        grid-template-columns: 1fr;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }
}

/* Trusted Clients END */


/* Why Choose */
.why-choose {
    background: var(--bg-light);
    /* Kept grey for contrast against trusted clients */
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

/* CTA Banner */
.cta-banner {
    background: var(--secondary-color);
    color: var(--white);
    padding: 50px 0;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 5px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Partners / Gallery Section */
/* Partners / Gallery Carousel Section */
.section-partners {
    background: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;
    /* Hide overflow for marquee */
    border-bottom: 1px solid #eee;
}

.partners-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
}

/* Scroll Animation Logic */
.partners-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollpartners 120s linear infinite;
    /* Slower for better viewing */
}

.partners-track:hover {
    animation-play-state: paused;
}

/* Keyframes for sliding RIGHT to LEFT (Standard Marquee like the logos) */
@keyframes scrollpartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
        /* Move left by half width */
    }
}

.partner-card-carousel {
    flex: 0 0 auto;
    width: 400px;
    /* Reduced width to show 3-4 on screen */
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* Stronger shadow for "professional" look */
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.partner-card-carousel:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.partner-card-carousel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* Ensure image covers the area nicely */
}

@media (max-width: 992px) {
    .partner-card-carousel {
        width: 450px;
    }
}

@media (max-width: 768px) {
    .partner-card-carousel {
        width: 320px;
        /* Mobile View */
    }
}

/* Footer */
.footer {
    background: var(--bg-footer);
    color: #9ca3af;
    padding: 60px 0 20px;
    font-size: 0.95rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--white);
}

.contact-link {
    color: var(--primary-color);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-footer {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--primary-color);
}

/* Large Modal */
.modal-content.modal-lg {
    max-width: 800px;
    width: 95%;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    /* Prevent overflow on small screens */
}

.modal-content.modal-lg .modal-header {
    background: #f8fafc;
    padding: 30px;
    margin-bottom: 0;
    border-bottom: 1px solid #e2e8f0;
}

.modal-content.modal-lg .modal-header h2 {
    margin-top: 10px;
}

.modal-body-scroll {
    padding: 30px;
    overflow-y: auto;
}

/* Detailed Modules Grid */
.detailed-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.detail-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease;
}

.detail-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.detail-card .icon-sm {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.detail-card h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.detail-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Tech Specs List */
.tech-specs-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-spec-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.tech-spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.spec-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

.modal-action-row {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

/* Impact / Testimonials Section */
.section-impact {
    background: #f8fafc;
    padding: 100px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.impact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.impact-card.featured {
    border: 1px solid var(--primary-color);
    background: #ecfeff;
}

.quote-icon {
    font-size: 4rem;
    color: #e2e8f0;
    line-height: 1;
    font-family: serif;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 24px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cp-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-bg);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.cp-info h5 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cp-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* About Section Styles */
.section-about {
    padding: 100px 0;
    background: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead-para {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creative-circle-visual {
    position: relative;
    width: 350px;
    height: 350px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.c1 {
    width: 100%;
    height: 100%;
    background: #ecfeff;
    top: 0;
    left: 0;
    animation: pulse 4s infinite;
}

.c2 {
    width: 80%;
    height: 80%;
    background: #cffafe;
    top: 10%;
    left: 10%;
    animation: pulse 4s infinite 1s;
}

.c3 {
    width: 60%;
    height: 60%;
    background: #a5f3fc;
    top: 20%;
    left: 20%;
    animation: pulse 4s infinite 2s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 2;
}

.content-overlay h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.content-overlay ul {
    list-style: none;
    padding: 0;
}

.content-overlay li {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Why Choose / Benefits Ecosystem */
.why-choose {
    background: #fdfdfd;
    padding: 100px 0;
}

.benefits-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card-lg {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.benefit-card-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #e0f2fe;
}

.ben-icon {
    font-size: 2.5rem;
    background: #f0f9ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.ben-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.ben-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Roadmap Section */
.section-roadmap {
    padding: 100px 0;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.roadmap-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.roadmap-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 0 5px #f0f9ff;
    transition: all 0.3s ease;
}

.roadmap-step:hover .step-circle {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.roadmap-step h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.roadmap-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0 10px;
}

.roadmap-line {
    flex-grow: 1;
    height: 3px;
    background: #e2e8f0;
    margin-top: 25px;
    /* Align with center of circle */
}

/* FAQ Section */
.section-faq {
    background: #f8fafc;
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #ffffff;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    /* Approximate max height */
    padding-bottom: 20px;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .benefits-grid-advanced {
        grid-template-columns: 1fr;
    }

    .roadmap-timeline {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .roadmap-line {
        display: none;
    }

    .roadmap-step {
        width: 100%;
    }
}

/* --- CONSOLIDATED RESPONSIVE STYLES --- */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {

    .container,
    .hero-container {
        padding: 0 30px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        /* Space for fixed navbar */
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .product-showcase,
    .product-showcase.reverse-layout {
        gap: 60px;
        margin-bottom: 100px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {

    /* General Typography */
    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    /* Section Spacing */
    .section,
    .section-impact,
    .section-about,
    .section-roadmap,
    .why-choose,
    .section-faq {
        padding: 60px 0;
    }

    /* Navbar */
    .menu-toggle {
        display: block;
        /* Ensure hamburger is visible */
    }

    .nav-links {
        display: none;
        /* Hidden by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 5px 0;
        text-align: center;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-image {
        max-width: 100%;
    }

    /* Product Showcases */
    .product-showcase,
    .product-showcase.reverse-layout {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .showcase-visual {
        order: -1;
        /* Image first */
    }

    .floating-data-card {
        display: none;
        /* Hide floating elements on mobile to prevent overflow */
    }

    .modules-grid-creative {
        grid-template-columns: 1fr;
        /* Stack modules */
    }

    /* Benefits Grid */
    .benefits-grid-advanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card-lg {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    /* Roadmap (Vertical) */
    .roadmap-timeline {
        flex-direction: column;
        align-items: center;
        position: relative;
        gap: 0;
    }


    .roadmap-line {
        width: 3px;
        height: 40px;
        margin: 0;
        flex-grow: 0;
    }

    .roadmap-step {
        width: 100%;
        margin-bottom: 20px;
    }

    .roadmap-step:last-child {
        margin-bottom: 0;
    }

    /* Impact / Testimonials */
    .impact-grid {
        grid-template-columns: 1fr;
    }

    /* About Section */
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text {
        text-align: center;
    }

    .stats-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .creative-circle-visual {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .social-links {
        justify-content: center;
    }

    .cta-flex {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    /* Modals */
    .modal-content,
    .modal-content.modal-lg {
        width: 95%;
        margin: 20px;
        max-height: 85vh;
    }

    .tech-spec-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    /* Right side is standard */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-border 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
    margin-top: 2px;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustment for WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Partners Marquee - Larger Cards */
/* Partners Marquee - Larger Cards */
.partner-card-marquee {
    background: var(--white);
    border-radius: 16px;
    padding: 15px;
    height: 450px;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    will-change: transform;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-card-marquee:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.partner-card-marquee img {
    object-fit: contain;
    height: 100%;
    max-height: 400px;
    width: auto;
    max-width: 100%;
    margin-bottom: 0;
    border-radius: 12px;
}

.partner-info {
    text-align: center;
    width: 100%;
}

.partner-info h5 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin: 0 0 4px 0;
    font-weight: 700;
    white-space: normal;
}

.partner-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Ensure Marquee Animation is Smooth and Fast */
.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    /* Faster animation: 25s for a smooth, reasonably fast flow */
    animation: scroll 25s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}