﻿
/*=============== BANNER / SLIDER ===============*/
header .nav__data .nav__logo .logo-img,
.nav__data .nav__logo .logo-img,
.nav__logo .logo-img,
.logo-img {
    max-width: none !important;
    max-height: none !important;
    height: 64px !important; /* desired size: change 64px to 55/70 as needed */
    width: 160px !important;
    display: block !important;
    object-fit: contain !important;
    vertical-align: middle !important;
    transform: none !important;
}

/* ==================== SAP B1 HERO BANNER ==================== */
.sap-hero-banner {
    position: relative;
    height: 100vh; /* Full screen hero */
    background: url('images/sap-hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end; /* Align content to bottom */
    padding: 0 6%;
    overflow: hidden;
}

    /* Overlay with stylish gradient & diagonal cut */
    .sap-hero-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,35,75,0.85), rgba(0,120,200,0.55));
        z-index: 1;
    }

    /* Decorative diagonal shape on top */
    .sap-hero-banner::after {
        content: "";
        position: absolute;
        top: -20%;
        right: -30%;
        width: 80%;
        height: 120%;
        background: rgba(255,255,255,0.05);
        transform: rotate(-25deg);
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    margin-bottom: 8vh;
    animation: fadeInUp 1.2s ease-out forwards;
}

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 25px;
        color: #e8f1ff;
    }

.hero-buttons {
    display: flex;
    gap: 20px;
}

    .hero-buttons a {
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 40px; /* Pill shape buttons */
        background: #00b2a9;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
    }

        .hero-buttons a.secondary {
            background: transparent;
            border: 2px solid #fff;
        }

        .hero-buttons a:hover {
            background: #008f86;
        }

        .hero-buttons a.secondary:hover {
            background: rgba(255,255,255,0.15);
        }

/* Smooth entry animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Max-width: 1152px */
@media screen and (max-width: 1152px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons a {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* Max-width: 1118px */
@media screen and (max-width: 1118px) {
    .sap-hero-banner {
        padding: 0 4%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

        .hero-buttons a {
            width: 100%;
            text-align: center;
        }
}

/* Max-width: 300px */
@media screen and (max-width: 300px) {
    .hero-content {
        max-width: 100%;
        margin-bottom: 5vh;
    }

        .hero-content h1 {
            font-size: 1.8rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 0.9rem;
        }

    .hero-buttons a {
        font-size: 0.85rem;
        padding: 10px 15px;
        border-radius: 30px;
    }
}

/* ==================== WHAT IS SAP BUSINESS ONE ==================== */
.sap-section {
    padding: 80px 5%;
    background: #f9fafc;
    position: relative;
    overflow: hidden;
}

.divider-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.divider-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

    .divider-image img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transition: transform 0.4s ease-in-out;
    }

        .divider-image img:hover {
            transform: scale(1.05);
        }

.divider-content {
    flex: 1;
    min-width: 300px;
}

    .divider-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #003366;
        margin-bottom: 20px;
    }

    .divider-content p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.7;
    }

/* ==================== RESPONSIVE ==================== */

/* Max-width: 1152px */
@media screen and (max-width: 1152px) {
    .divider-wrapper {
        gap: 30px;
    }

    .divider-content h2 {
        font-size: 2.2rem;
    }

    .divider-content p {
        font-size: 1rem;
    }
}

/* Max-width: 1118px */
@media screen and (max-width: 1118px) {
    .divider-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .divider-content h2 {
        font-size: 2rem;
    }

    .divider-content p {
        font-size: 0.95rem;
    }

    .divider-image {
        margin-bottom: 30px;
    }
}

/* Max-width: 300px */
@media screen and (max-width: 300px) {
    .divider-content h2 {
        font-size: 1.6rem;
    }

    .divider-content p {
        font-size: 0.85rem;
    }

    .divider-wrapper {
        padding: 0 10px;
        gap: 20px;
    }
}

/* ==================== FEATURES & BENEFITS ==================== */
.features-benefits {
    padding: 80px 5%;
    background: linear-gradient(135deg, #e0f7fa 0%, #f1f6fa 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    /* Decorative background shapes */
    .features-benefits::before,
    .features-benefits::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 0;
    }

    .features-benefits::before {
        width: 400px;
        height: 400px;
        background: rgba(0, 119, 204, 0.15);
        top: -50px;
        left: -50px;
    }

    .features-benefits::after {
        width: 500px;
        height: 500px;
        background: rgba(0, 170, 136, 0.15);
        bottom: -100px;
        right: -100px;
    }

    .features-benefits h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #003366;
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
    }

/* Grid for feature boxes */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Individual feature box */
.feature-box {
    background: #fff;
    border-radius: 20px 20px 40px 20px;
    padding: 25px 20px 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    min-height: 250px;
}

    .feature-box::before {
        content: "";
        position: absolute;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #00b2a9, #0077cc);
        border-radius: 50%;
        top: -15px;
        left: -15px;
        opacity: 0.08;
        z-index: 0;
    }

/* Icon style */
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077cc, #00b2a9);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,119,204,0.25);
    position: relative;
    z-index: 1;
}

.feature-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.feature-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Hover Effects */
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

    .feature-box:hover .feature-icon {
        background: linear-gradient(135deg, #00b2a9, #005fa3);
        transform: scale(1.05);
    }

/* ==================== RESPONSIVE ==================== */

/* Max-width: 1152px */
@media screen and (max-width: 1152px) {
    .features-benefits h2 {
        font-size: 2.2rem;
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }
}

/* Max-width: 1118px */
@media screen and (max-width: 1118px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .features-benefits h2 {
        font-size: 2rem;
    }
}

/* Max-width: 300px */
@media screen and (max-width: 300px) {
    .features-benefits {
        padding: 40px 10px;
    }

        .features-benefits h2 {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

    .feature-box {
        padding: 20px 15px 25px;
        min-height: 200px;
    }

        .feature-box h3 {
            font-size: 1rem;
        }

        .feature-box p {
            font-size: 0.85rem;
        }
}
/* ==================== MODULES SECTION ==================== */
.module-section {
    padding: 80px 20px;
    background: #f0f4f8;
    font-family: 'Poppins', sans-serif;
    color: #222;
    position: relative;
    overflow: hidden;
    text-align: left;
}

    /* Animated spider-web background */
    .module-section::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background-image: radial-gradient(circle at 10% 20%, rgba(0, 170, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(0, 170, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(0, 170, 255, 0.05) 0%, transparent 50%);
        background-repeat: repeat;
        z-index: 0;
        animation: rotate-web 60s linear infinite;
    }

@keyframes rotate-web {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Headings above content */
.module-section h2,
.module-section p {
    position: relative;
    z-index: 1;
}

.module-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.module-section p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
}

/* Grid layout */
.modules-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 60px;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

/* Module tab */
.module-tab {
    flex: 1 1 calc(50% - 40px);
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    position: relative;
}

    /* Vertical accent line */
    .module-tab::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #00aaff;
        z-index: 1;
    }

    /* Animated connecting horizontal lines */
    .module-tab::after {
        content: '';
        position: absolute;
        width: 120px;
        height: 2px;
        background: rgba(0, 170, 255, 0.2);
        top: 50%;
        left: 2px;
        transform-origin: left center;
        animation: pulse-line 3s ease-in-out infinite alternate;
        z-index: 0;
    }

    .module-tab:nth-child(odd)::after {
        transform: rotate(0deg);
    }

    .module-tab:nth-child(even)::after {
        transform: rotate(10deg);
    }

@keyframes pulse-line {
    0% {
        transform: scaleX(0.5);
        opacity: 0.2;
    }

    50% {
        transform: scaleX(1);
        opacity: 0.5;
    }

    100% {
        transform: scaleX(0.7);
        opacity: 0.2;
    }
}

/* Tab Header */
.tab-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

    .tab-header i {
        font-size: 2rem;
        color: #00aaff;
        transition: transform 0.3s ease;
    }

    .tab-header h3 {
        font-size: 1.3rem;
        margin: 0;
        color: #111;
    }

/* Tab Content */
.tab-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Hover icon animation */
.module-tab:hover .tab-header i {
    transform: scale(1.2) rotate(10deg);
}

/* ==================== RESPONSIVE ==================== */

/* Max-width: 1152px */
@media screen and (max-width: 1152px) {
    .module-section h2 {
        font-size: 2.2rem;
    }

    .module-section p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .tab-header h3 {
        font-size: 1.2rem;
    }
}

/* Max-width: 1118px */
@media screen and (max-width: 1118px) {
    .modules-grid {
        gap: 30px 40px;
    }

    .module-tab {
        flex: 1 1 100%;
        padding-left: 0;
    }

        .module-tab::after {
            display: none;
        }
    /* remove connecting line on smaller screens */
}

/* Max-width: 300px */
@media screen and (max-width: 300px) {
    .module-section {
        padding: 40px 10px;
    }

        .module-section h2 {
            font-size: 1.6rem;
            margin-bottom: 20px;
        }

        .module-section p {
            font-size: 0.9rem;
            margin-bottom: 25px;
        }

    .tab-header i {
        font-size: 1.5rem;
    }

    .tab-header h3 {
        font-size: 1rem;
    }

    .tab-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* ==================== DEPLOYMENT SECTION ==================== */
.deployment-section {
    padding: 80px 20px;
    background: #f8faff;
    font-family: 'Poppins', sans-serif;
    color: #222;
    text-align: center;
    position: relative;
}

    /* Section Title and Subtitle */
    .deployment-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .deployment-section .section-subtitle {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 50px;
    }

/* Deployment Wrapper - two boxes side by side */
.deployment-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

/* Deployment Box */
.deployment-box {
    background: #ffffff;
    flex: 1 1 300px;
    max-width: 500px;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

/* Icon Circle */
.deployment-icon {
    width: 60px;
    height: 60px;
    background: #00aaff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Box Hover Effect */
.deployment-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

    .deployment-box:hover .deployment-icon {
        background: #007bbf;
        transform: scale(1.2);
    }

/* Box Heading */
.deployment-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111;
}

/* Box Paragraph */
.deployment-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #00aaff;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

    .cta-button:hover {
        background: #007bbf;
    }

    /* Secondary Button */
    .cta-button.secondary {
        background: #00aaff;
        color: #f0f0f0;
    }

        .cta-button.secondary:hover {
            background: #e0e0e0;
        }

/* ==================== RESPONSIVE ==================== */

/* Max-width: 1152px */
@media screen and (max-width: 1152px) {
    .deployment-section .section-title {
        font-size: 2.2rem;
    }

    .deployment-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .deployment-box h3 {
        font-size: 1.4rem;
    }

    .deployment-box p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 10px 22px;
        font-size: 0.95rem;
    }
}

/* Max-width: 1118px */
@media screen and (max-width: 1118px) {
    .deployment-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .deployment-box {
        max-width: 100%;
        padding: 25px 20px;
    }
}

/* Max-width: 300px */
@media screen and (max-width: 300px) {
    .deployment-section {
        padding: 40px 10px;
    }

        .deployment-section .section-title {
            font-size: 1.6rem;
            margin-bottom: 15px;
        }

        .deployment-section .section-subtitle {
            font-size: 0.85rem;
            margin-bottom: 25px;
        }

    .deployment-box h3 {
        font-size: 1.2rem;
    }

    .deployment-box p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .deployment-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
/* ==================== INDUSTRIES SECTION ==================== */
.sapindustry-section {
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    color: #111;
    position: relative;
    background: #f9f9f9; /* off-white background */
    overflow: hidden;
}

    /* Background dots overlay */
    .sapindustry-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle, rgba(0, 170, 255, 0.15) 1px, transparent 1px);
        background-size: 30px 30px; /* spacing between dots */
        z-index: 0;
    }

    /* Container */
    .sapindustry-section .container {
        position: relative;
        z-index: 1;
    }

    /* Section heading */
    .sapindustry-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: #111;
    }

/* Industries Grid */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Individual Industry Card */
.industry-card {
    flex: 1 1 200px;
    max-width: 250px;
    background: #fff;
    border: 2px solid #00aaff; /* outer line */
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

    /* Icon inside card */
    .industry-card i {
        font-size: 3rem;
        color: #00aaff;
        margin-bottom: 15px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    /* Industry Name */
    .industry-card h4 {
        font-size: 1.2rem;
        color: #111;
        margin: 0;
    }

    /* Hover effect */
    .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 170, 255, 0.15);
        border-color: #007bbf;
    }

        .industry-card:hover i {
            transform: scale(1.2) rotate(10deg);
            color: #007bbf;
        }

/* ==================== RESPONSIVE ==================== */

/* Max-width: 1152px */
@media screen and (max-width: 1152px) {
    .sapindustry-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .industry-card {
        padding: 25px 18px;
        max-width: 220px;
    }

        .industry-card h4 {
            font-size: 1.1rem;
        }

        .industry-card i {
            font-size: 2.8rem;
        }
}

/* Max-width: 1118px */
@media screen and (max-width: 1118px) {
    .industries-grid {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }

    .industry-card {
        flex: 1 1 180px;
        max-width: 200px;
    }
}

/* Max-width: 300px */
@media screen and (max-width: 300px) {
    .sapindustry-section {
        padding: 40px 10px;
    }

        .sapindustry-section h2 {
            font-size: 1.6rem;
            margin-bottom: 25px;
        }

    .industry-card {
        padding: 20px 15px;
        max-width: 100%;
    }

        .industry-card h4 {
            font-size: 1rem;
        }

        .industry-card i {
            font-size: 2rem;
        }
}

/* ==================== WHY LEXERON SECTION ==================== */
.sap-section {
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #111;
}

.why-container {
    display: flex;
    flex-wrap: wrap;
}

.why-content {
    flex: 1 1 50%;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
    background: #fff;
    text-align: left; /* LEFT ALIGN TEXT */
}

    .why-content h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

        .why-content h2 span {
            color: #00aaff;
        }

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .why-list li {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

        .why-list li i {
            font-size: 1.3rem;
            color: #00aaff;
            flex-shrink: 0;
        }

/* Image side */
.why-image {
    flex: 1 1 50%;
    position: relative;
}

    .why-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Subtle overlay on image */
    .why-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 170, 255, 0.15); /* light blue overlay */
        pointer-events: none;
    }

/* ==================== RESPONSIVE ==================== */

/* Max-width: 1152px */
@media screen and (max-width: 1152px) {
    .why-content {
        padding: 60px 40px;
    }

        .why-content h2 {
            font-size: 2.2rem;
        }

    .why-list li {
        font-size: 1rem;
    }

        .why-list li i {
            font-size: 1.2rem;
        }
}

/* Max-width: 1118px */
@media screen and (max-width: 1118px) {
    .why-container {
        flex-direction: column;
        min-height: auto;
    }

    .why-content,
    .why-image {
        flex: 1 1 100%;
    }

    .why-content {
        padding: 40px 25px;
    }

    .why-image img {
        height: auto;
    }
}

/* Max-width: 300px */
@media screen and (max-width: 300px) {
    .why-content {
        padding: 20px 15px;
    }

        .why-content h2 {
            font-size: 1.6rem;
            margin-bottom: 20px;
        }

    .why-list li {
        font-size: 0.9rem;
        line-height: 1.5;
        gap: 5px;
    }

        .why-list li i {
            font-size: 1rem;
        }
}
/* ==================== TALK TO EXPERT SECTION ==================== */
.talk-expert-section {
    padding: 40px 20px; /* Section padding */
    background: #f0f4f8;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #111;
    position: relative;
}

    .talk-expert-section h2 {
        font-size: 2rem; /* Heading size */
        margin-bottom: 15px;
    }

    .talk-expert-section p {
        font-size: 1rem; /* Paragraph size */
        margin-bottom: 25px;
        color: #555;
    }

.cta-button {
    display: inline-block;
    background-color: #00aaff;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .cta-button:hover {
        background-color: #0088cc;
        transform: translateY(-2px);
    }

/* Popup Form */
.popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    max-width: 90%;
    position: relative;
    text-align: left;
}

    .popup-content h3 {
        margin-top: 0;
        margin-bottom: 15px;
        color: #00aaff;
    }

    .popup-content input,
    .popup-content textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 0.95rem;
    }

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #00aaff;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .submit-btn:hover {
        background-color: #0088cc;
    }

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.3rem;
    cursor: pointer;
    color: #333;
}

/* ==================== RESPONSIVE ==================== */

/* Max-width: 1152px */
@media screen and (max-width: 1152px) {
    .talk-expert-section h2 {
        font-size: 1.9rem;
    }

    .talk-expert-section p {
        font-size: 0.98rem;
    }

    .cta-button {
        padding: 9px 22px;
        font-size: 0.98rem;
    }
}

/* Max-width: 1118px */
@media screen and (max-width: 1118px) {
    .talk-expert-section h2 {
        font-size: 1.8rem;
    }

    .talk-expert-section p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 9px 20px;
        font-size: 0.95rem;
    }
}

/* Max-width: 500px (mobile fallback) */
@media (max-width: 500px) {
    .talk-expert-section {
        padding: 30px 15px;
    }

        .talk-expert-section h2 {
            font-size: 1.7rem;
        }

        .talk-expert-section p {
            font-size: 0.95rem;
        }

    .cta-button {
        padding: 8px 20px;
        font-size: 0.95rem;
    }
}

/* Max-width: 300px */
@media screen and (max-width: 300px) {
    .talk-expert-section {
        padding: 25px 10px;
    }

        .talk-expert-section h2 {
            font-size: 1.5rem;
        }

        .talk-expert-section p {
            font-size: 0.85rem;
        }

    .cta-button {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}
/* ==================== FAQ SECTION ==================== */
/*FAQ*/
.cont {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e0f7fa 0%, #f1f6fa 100%);
    font-family: 'Poppins', sans-serif;
    color: #222;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.faq {
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e0f7fa 0%, #f1f6fa 100%);
    color: black;
    max-width: 1200px;
    margin-left: 170px;
    margin-right: 170px;
}

.faq-item {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.faq-title {
    flex: 1 1 50%;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
    background: #fff;
    text-align: left; /* LEFT ALIGN TEXT */
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background-color: #f7f7f7;
}

    .faq-title h2 {
        font-size: 2.5rem;
    }


.title-icon {
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 15px;
}

    .faq-content p {
        margin: 15px 0;
    }

.faq-item.expanded .faq-content {
    /* max-height now set dynamically via JS */
}

.faq-item.expanded .title-icon {
    transform: rotate(-180deg);
    transition: transform 0.3s ease;
}

/* Consultant Button */
.consultant-button {
    display: flex;
    justify-content: flex-end; /* Align button to the right */
    align-items: center;
    margin-top: 15px;
}

    .consultant-button .btn {
        background-color: #007BFF; /* Button color */
        color: #fff; /* Text color */
        padding: 10px 20px;
        font-size: 16px;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

        .consultant-button .btn:hover {
            background-color: #3399FF; /* Hover effect */
        }
/* For very small mobile screens like 300px */
@media screen and (max-width: 300px) {
    .faq {
        margin: 0 10px;
    }

    .faq-title {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

        .faq-title h2 {
            font-size: 1em;
        }

    .faq-content {
        font-size: 14px;
        padding: 0 10px;
    }

    .faq-item.expanded .faq-content {
        padding: 10px;
    }

    .consultant-button {
        justify-content: center; /* Center the button for smaller screens */
        margin-top: 10px;
    }
}

/* For screens up to 1118px (tablet/laptop range) */
@media screen and (max-width: 1118px) {
    .faq {
        margin-left: 40px;
        margin-right: 40px;
    }

    .faq-title {
        padding: 12px;
    }

        .faq-title h2 {
            font-size: 1.1em;
        }

    .faq-content {
        font-size: 15px;
        padding: 0 12px;
    }

    .faq-item.expanded .faq-content {
        padding: 12px;
    }

    .consultant-button {
        justify-content: flex-end; /* Keep button aligned to the right */
        margin-top: 15px;
    }
}

/* For screens up to 1152px */
@media screen and (max-width: 1152px) {
    .faq {
        margin-left: 60px;
        margin-right: 60px;
    }

    .faq-title h2 {
        font-size: 1.1em;
    }
}



/* ==================== RESOURCES SECTION ==================== */
#resources {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

    #resources .container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        flex-wrap: wrap;
    }

/* VIDEO SLIDER */
.video-slider {
    flex: 1 1 48%;
}

    .video-slider h2 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #1a73e8;
    }

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

    .slides-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: none;
    }

        .slides-wrapper iframe.active {
            display: block;
        }

.dots-wrapper {
    margin-top: 10px;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

    .dot.active {
        background-color: #1a73e8;
    }

/* ==================== BROCHURE SECTION FORM FIXES ==================== */
.brochure-section {
    flex: 1 1 48%;
}

    .brochure-section form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .brochure-section .row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

        .brochure-section .row input,
        .brochure-section .row select,
        .brochure-section .row textarea {
            flex: 1 1 48%;
            padding: 12px;
            font-size: 16px;
            border-radius: 5px;
            border: 1px solid #ccc;
            box-sizing: border-box;
        }

    .brochure-section textarea {
        flex: 1 1 100%;
        resize: vertical;
        min-height: 100px;
    }

    /* Ensure selects match other inputs */
    .brochure-section select {
        appearance: none;
        background-color: #fff;
    }

    /* Submit button */
    .brochure-section button {
        background-color: #1a73e8;
        color: #fff;
        border: none;
        cursor: pointer;
        transition: 0.3s;
        padding: 12px;
        font-size: 16px;
        border-radius: 5px;
        width: 100%;
    }

        .brochure-section button:hover {
            background-color: #155db2;
        }

/* Response message style */
#responseMessage {
    display: none;
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.4s ease;
    opacity: 0;
}

    #responseMessage.success {
        background-color: #e6f4ea;
        color: #2e7d32;
        border: 1px solid #2e7d32;
        opacity: 1;
    }

    #responseMessage.error {
        background-color: #fdecea;
        color: #d32f2f;
        border: 1px solid #d32f2f;
        opacity: 1;
    }

/* For very small mobile screens like 300px wide */
@media screen and (max-width: 300px) {
    #resources .container {
        flex-direction: column;
    }

    .video-slider,
    .brochure-section {
        flex: 1 1 100%;
    }

        .brochure-section .row {
            flex-direction: column;
            gap: 10px;
        }

            .brochure-section .row input,
            .brochure-section .row select,
            .brochure-section .row textarea {
                flex: 1 1 100%;
                font-size: 14px;
                padding: 10px;
            }

        .brochure-section button {
            font-size: 14px;
            padding: 10px;
        }
}

/* For tablets or small laptops (1118px and below) */
@media screen and (max-width: 1118px) {
    #resources .container {
        flex-direction: column;
        gap: 30px;
    }

    .video-slider,
    .brochure-section {
        flex: 1 1 100%;
    }

        .brochure-section .row {
            flex-direction: row;
            flex-wrap: wrap;
        }

            .brochure-section .row input,
            .brochure-section .row select {
                flex: 1 1 100%;
            }
}

/* For slightly wider screens (like 1152px) */
@media screen and (max-width: 1152px) {
    #resources .container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .video-slider,
    .brochure-section {
        flex: 1 1 100%;
    }

        .brochure-section .row input,
        .brochure-section .row select,
        .brochure-section .row textarea {
            flex: 1 1 100%;
        }
}

/* ==================== RESPONSIVE FIXES ==================== */
@media screen and (max-width: 768px) {
    .brochure-section .row {
        flex-direction: column;
    }

        .brochure-section .row input,
        .brochure-section .row select,
        .brochure-section .row textarea {
            flex: 1 1 100%;
        }
}

/* =============================
   CTA Section Layout
============================= */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e0f7fa 0%, #f1f6fa 100%);
    font-family: 'Poppins', sans-serif;
    color: #222;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
/*    align-items: center;*/
    align-items: flex-start;
}

.contact-text {
    flex: 1;
/*    min-width: 600px;*/
    min-width: 0;
}

.cta-buttons {
    flex: 0 0 auto;
/*    flex: 1;*/
    min-width: 300px;
    width:auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-button {
/*    flex:1;*/
/*    display:flex;*/
    flex-direction:column;
/*    gap:15px;*/   
    margin-bottom:15px;
    text-align:center;
    width:250px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

/* Buttons – desktop */
/*.contact-section .cta-button {
    width: 260px;
    max-width: 100%;
    white-space: nowrap;
}*/

.primary {
    background-color: #007bff;
    color: white;
}

.secondary {
    background-color: #f1f1f1;
    color: #333;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
    animation: fadeIn 0.3s ease-in-out;
}

.modal {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
}

    .modal input {
        width: 100%;
        padding: 8px;
        margin-bottom: 15px;
    }

.modal-buttons {
    display: flex;
    justify-content: space-between;
}

.form-message {
    margin-top: 10px;
    font-size: 14px;
    color: green;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}


/*Button*/

.container-buttons {
    display: flex;
    gap: 20px;
}

    .container-buttons a {
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 40px; /* Pill shape buttons */
        background: #00b2a9;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
    }

.buttons a.secondary {
    background: transparent;
    border: 2px solid #fff;
}

.buttons a:hover {
    background: #008f86;
}

.buttons a.secondary:hover {
    background: rgba(255,255,255,0.15);
}

/* Smooth entry animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Max-width: 1152px */
@media screen and (max-width: 1152px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons a {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* Max-width: 1118px */
@media screen and (max-width: 1118px) {
    .sap-hero-banner {
        padding: 0 4%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

        .hero-buttons a {
            width: 100%;
            text-align: center;
        }
}

/* Max-width: 300px */
@media screen and (max-width: 300px) {
    .hero-content {
        max-width: 100%;
        margin-bottom: 5vh;
    }

        .hero-content h1 {
            font-size: 1.8rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 0.9rem;
        }

    .hero-buttons a {
        font-size: 0.85rem;
        padding: 10px 15px;
        border-radius: 30px;
    }
}


/* =========================================
   GLOBAL MOBILE SAFETY FIX
========================================= */
html, body {
    overflow-x: hidden;
}

/* =========================================
   HERO FIX
========================================= */
@media (max-width: 768px) {
    .sap-hero-banner {
        height: auto;
        min-height: 100vh;
        padding: 80px 16px 40px;
        align-items: center;
    }

    .hero-content {
        margin-bottom: 0;
        max-width: 100%;
        text-align: left;
    }
}

/* =========================================
   FAQ SECTION FIX (BIGGEST ISSUE)
========================================= */
.faq {
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

@media (max-width: 1024px) {
    .faq {
        margin: 0 auto;
        max-width: 100%;
    }
}

/* =========================================
   CONTACT / CTA SECTION FIX
========================================= */

@media (max-width: 768px) {

    .contact-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .contact-text,
    .cta-buttons {
        width: 100%;
        min-width: 0;
    }

    .contact-section .cta-button {
        width: 100% !important; /* 🔥 force override */
        max-width: 100%;
        white-space: normal; /* 🔥 allows wrap */
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .contact-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .contact-text {
        min-width: 0;
        width: 100%;
    }

    .cta-buttons {
        width: 100%;
    }

    .contact-section .cta-button {
        margin-bottom: -20px;
        margin-top: 25px;
        margin-left: -20px;
        max-width: 100%;
    }
}

/* =========================================
   RESOURCES SECTION FIX
========================================= */
@media (max-width: 768px) {
    #resources .container {
        flex-direction: column;
    }

    .video-slider,
    .brochure-section {
        width: 100%;
        flex: 1 1 100%;
    }
}

/* =========================================
   MODULES SECTION FIX
========================================= */
@media (max-width: 768px) {
    .modules-grid {
        gap: 24px;
    }

    .module-tab {
        flex: 1 1 100%;
        padding-left: 0;
    }

        .module-tab::before,
        .module-tab::after {
            display: none;
        }
}

/* =========================================
   INDUSTRIES GRID FIX
========================================= */
@media (max-width: 768px) {
    .industries-grid {
        flex-direction: column;
        align-items: center;
    }

    .industry-card {
        max-width: 100%;
        width: 100%;
    }
}

/* =========================================
   FEATURES GRID FIX
========================================= */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   BUTTON SAFETY FIX (EVERYWHERE)
========================================= */
button,
a.cta-button {
    max-width: 100%;
    box-sizing: border-box;
}
