:root {
    --primary-blue: #2563eb;
    --secondary-blue: #1d4ed8;
    --accent-orange: #f97316;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --border-color: #e2e8f0;

    /* Advanced Shadow System */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.1);

    /* Animation Timing */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: white;
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Scroll Animation Utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: rgba(43, 43, 43, 1);
    font-weight: 700;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-head h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.accent-text {
    color: var(--accent-orange);
}

/* Modern Dark Header */
nav {
    background: #03041A;
    /* padding: 1rem 0; */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 100%;
    width: 100%;
    display: block;
}



.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links a:hover {
    color: #f97316;
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-header {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-login {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-signup {
    background: #FF5000;
    color: white;
    /* border: 1px solid #f97316; */
}

.btn-signup:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

/* ===================================
   NAVIGATION DROPDOWNS
=================================== */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2000;
    margin-top: 10px;
}

/* Add a hover bridge to prevent menu from closing when moving cursor to dropdown */
.nav-links li::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    display: none;
}

.nav-links li.has-dropdown:hover::after {
    display: block;
}

.nav-links li:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: block !important;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    color: #2D3748 !important;
    padding: 12px 24px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    width: 100%;
    text-align: left;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #FF5000 !important;
    padding-left: 28px !important;
}

.dropdown-menu a i {
    font-size: 0.8rem;
    color: #718096;
    transition: transform 0.2s ease;
}

.dropdown-menu a:hover i {
    color: #FF5000;
    transform: translateX(3px);
}

/* Nested Submenu Position */
.dropdown-menu .submenu {
    position: absolute;
    top: -12px;
    left: 100%;
    min-width: 250px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2001;
    margin-left: 2px;
}

.dropdown-menu li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    display: block !important;
    transform: translateX(0);
}

/* Mobile Nav Adjustments */
@media (max-width: 768px) {

    .dropdown-menu,
    .dropdown-menu .submenu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 0 0 20px;
        transform: none !important;
        display: none;
        margin: 0;
        transition: none;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 15px !important;
    }

    .dropdown-menu a:hover {
        background: transparent;
        padding-left: 24px !important;
    }

    /* Active state for mobile toggling */
    .nav-links li.dropdown-open>.dropdown-menu,
    .dropdown-menu li.submenu-open>.submenu {
        display: block;
    }

    /* Mobile Arrow Rotations */
    .nav-links li.has-dropdown > a i,
    .dropdown-menu li.has-submenu > a i {
        transition: transform 0.3s ease;
    }

    .nav-links li.dropdown-open > a i {
        transform: rotate(180deg);
    }

    .dropdown-menu li.submenu-open > a i {
        transform: rotate(90deg);
    }

    /* Submenu internal spacing on mobile */
    .dropdown-menu .submenu a {
        padding-left: 20px !important;
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }
}

/* Original Buttons (for compatibility with other sections) */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-blue);
}

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-orange {
    background: var(--accent-orange);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    background-color: #e9ecf5;
    transition: background-image 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-1 {
    background-image: linear-gradient(rgba(233, 236, 245, 0.5), rgba(233, 236, 245, 0.5)), url("Assests/heroSliderImg1.jpg");
}

.hero-bg-2,
.hero-bg-3,
.hero-bg-4 {
    background-image: linear-gradient(rgba(233, 236, 245, 0.5), rgba(233, 236, 245, 0.1)), url("Assests/bnrBg.jpg");
}

.hero-grid {
    display: none;
    /* Hide by default */
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
    animation: fadeIn 0.5s ease-in-out;
}

.hero-grid.active {
    display: grid;
    /* Show active slide */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: rgba(43, 43, 43, 1);
    letter-spacing: -1px;
}

.hero-content h1 .accent-orange {
    color: var(--accent-orange);
}

.hero-content p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.4;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-book {
    background: rgba(255, 80, 0, 1);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-know {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 1);
    color: rgba(43, 43, 43, 1);
    background: transparent;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide1img-mob {
    display: none;
}

.hero-visual img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.kairo-badge {
    position: absolute;
    bottom: -30px;
    right: 0;
    text-align: center;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 5rem;
}

.indicator {
    width: 60px;
    height: 6px;
    background: #2B2B2B;
    border-radius: 3px;
    cursor: pointer;
}

.indicator.active {
    background: #345EC0;
}

/* Detailed Feature Section */
.features-detailed {
    padding: 5rem 0;
    /* background: #e9ecf5; */
    background: #D7E0F6;
    /* Light bluish bg from image */
}

.section-title-large {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 800;
}

.feature-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card-pro {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 20px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px 1px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-icon-title {
    display: flex;
    /* flex-direction: column; */
    gap: 0.8rem;
    align-items: center;
}

.card-icon-title img {
    width: 48px;
    height: 48px;
}

.card-icon-title h3 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
}

.feature-card-pro p {
    font-family: "Roboto", sans-serif;
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.btn-primary-large {
    background: #3b66c4;
    color: white;
    padding: 1.2rem 3.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary-large:hover {
    background: #2d51a3;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .feature-grid-8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .feature-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .feature-grid-8 {
        grid-template-columns: 1fr;
    }
}

/* Interactive Lifecycle Section */
.lifecycle {
    padding: 3rem 0;
    background: white;
}

.lifecycle-head {
    text-align: center;
    margin-bottom: 5rem;
}

.lifecycle-head h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.lifecycle-head p {
    color: #475569;
    font-size: 1.25rem;
    margin-top: 1rem;
}

.lifecycle-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.lifecycle-circle-visual img {
    width: 100%;
    max-width: 350px;
    display: block;
    margin: 0 auto;
}

.lifecycle-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lifecycle-tab {
    background: rgba(215, 224, 246, 1);
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    width: 100%;
}

.tab-label {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.tab-label img {
    width: 32px;
    height: 32px;
}

.lifecycle-tab .arrow img {
    width: 25px;
    height: auto;
    display: none;
    transition: all 0.3s;
}

.lifecycle-tab .arrow .arrow-ne {
    display: block;
}

.lifecycle-tab.active {
    background: rgba(0, 16, 55, 1);
}

.lifecycle-tab.active .tab-label {
    color: white;
}

.lifecycle-tab.active .arrow .arrow-ne {
    display: none;
}

.lifecycle-tab.active .arrow .arrow-sw {
    display: block;
}

.lifecycle-content-box {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.content-item {
    display: flex;
    gap: 1rem;
}

.content-item .icon-double {
    color: var(--accent-orange);
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.content-text h4 {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.content-text p {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .lifecycle-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lifecycle-tabs-nav {
        max-width: 500px;
        margin: 0 auto;
    }

    .lifecycle-circle-visual {
        order: 2;
    }

    .lifecycle-tabs-nav {
        order: 1;
    }

    .lifecycle-content-box {
        order: 3;
    }
}

/* Detailed Pricing Section */
.pricing-pro {
    /* padding: 8rem 0; */
    background: white;
}

.pricing-head-pro {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 4rem;
}

.pricing-head-pro h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.pricing-head-pro p {
    color: #475569;
    font-size: 1.15rem;
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: flex-start;
}

.pricing-card-pro {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.card-header-pro {
    border-radius: 8px;
    margin: 10px;
    padding: 0.5rem;
    text-align: center;
    background: rgba(52, 94, 192, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 280px;
}

.pricing-card-pro.featured .card-header-pro {
    background: rgba(52, 94, 192, 1);
    color: white;
}

.card-header-pro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.pricing-card-pro.featured .card-header-pro h3 {
    color: white;
}

.header-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #475569;
}

.pricing-card-pro.featured .header-desc {
    color: rgba(255, 255, 255, 0.9);
}

.price-pro {
    font-size: 1.6rem;
    font-weight: 600;
}

.btn-card {
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-blue {
    background: rgba(52, 94, 192, 1);
    color: white;
}

.btn-orange-card {
    background: rgba(255, 80, 0, 1);
    color: white;
}

.card-features-pro {
    padding: 2rem 1.5rem;
    height: 480px;
}

.card-features-pro h4 {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    color: #334155;
}

.feature-list-pro {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-list-pro li {
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 1.4;
}

.feature-list-pro li i {
    color: #3b66c4;
    font-size: 0.9rem;
}

.more-link {
    display: inline-block;
    color: #f97316;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    text-decoration: none;
}

/* Customer Success Stories Section */
.testimonials {
    margin: 3rem 0;
    padding: 60px 15px;
    background-image: url('Assests/HomePage/testimonial-bg-bnr.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.testi-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testi-slider-wrapper {
    overflow: hidden;
    margin: 40px 0;
    width: 100%;
}

.testi-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testi-card {
    min-width: 100%;
    background: transparent;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.testi-logo {
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-logo img {
    max-height: 100%;
    max-width: 200px;
    object-fit: contain;
}

.testi-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testi-content .quote {
    font-size: 4rem;
    color: var(--accent-orange);
    line-height: 1;
    display: block;
    margin-bottom: -1rem;
    font-family: serif;
}

.testi-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #334155;
    font-style: italic;
    margin-bottom: 2rem;
}

.testi-line {
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    margin: 0 auto;
}

.dot {
    cursor: pointer;
}


/* Minimalist Footer */
/* Minimalist Footer */
.footer-minimal {
    background: rgba(43, 43, 43, 1);
    color: rgba(255, 255, 255, 1);
    padding: 2rem 0;
    font-size: 14px;
    font-weight: 400;
    /* border-top: 1px solid rgba(255, 255, 255, 0.05); */
}

.footer-minimal .copyright {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.footer-minimal .container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links-pro {
    display: flex;
    gap: 15rem;
    /* Large gap as seen in image */
}

@media (max-width: 1200px) {
    .footer-links-pro {
        gap: 5rem;
    }
}

.footer-links-pro a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-pro a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-minimal .container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links-pro {
        gap: 2rem;
        justify-content: center;
    }
}

/* Next-Gen Innovations Section */
.innovations {
    /* padding: 8rem 0; */
    margin-bottom: 40px;
    background: #fff;
}

.innovations-head {
    text-align: center;
    margin-bottom: 3rem;
}

.innovations-head h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.innovations-flex {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    min-height: 560px;
    padding: 20px 0;
}

.innovation-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.innovation-item:hover {
    flex: 1.2;
    z-index: 10;
}

.innovation-card {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.innovation-item:hover .innovation-card {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-cover {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.6s ease;
}

.btn-watch-outer {
    margin-top: 15px;
    background: white;
    color: black;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(-5px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    width: 100%;
    text-align: center;
}

.innovation-item:hover .btn-watch-outer {
    opacity: 1;
    transform: translateY(0) scale(1.05);
    margin-top: 25px;
    /* Accommodate for card scale factor (450*0.05 / 2 = ~11px displacement) */
}

.btn-watch-outer:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 1100px) {
    .innovations-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .innovations-grid {
        grid-template-columns: 1fr;
    }
}

.capabilities-head-wrapper {
    padding: 1rem 0 2rem;
    background: white;
}

.capabilities {
    position: relative;
    padding: 2rem 0 8rem;
    background-image: url('Assests/accordion-bg.jpg');
    background-size: cover;
    background-position: center;
}

.montage-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1522071823991-b9671f9d7f1f?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.capabilities-head {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.capabilities-head h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
}

.capabilities-head .sub {
    color: #475569;
    font-weight: 600;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

.accordion-pro {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion-item-pro {
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item-pro:nth-child(odd) .accordion-header-pro {
    background: rgba(227, 227, 227, 1);
    color: rgba(43, 43, 43, 1);
}

.accordion-item-pro:nth-child(even) .accordion-header-pro {
    background: rgba(172, 172, 172, 1);
    color: white;
}

.accordion-header-pro {
    width: 100%;
    padding: 1.2rem 2rem;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    transition: all 0.3s;
}

.accordion-header-pro:hover {
    filter: brightness(0.95);
}

.accordion-header-pro i {
    font-size: 1rem;
    color: #334155;
    transition: transform 0.3s;
}

.accordion-content-pro {
    max-height: 0;
    overflow: hidden;
    background: #f8fafc;
    transition: all 0.3s ease-out;
}

.accordion-content-pro.active {
    max-height: 1000px;
    /* padding: 2rem; */
    border-top: 1px solid #cbd5e1;
}

.accordion-item-pro.active .accordion-header-pro {
    background: rgba(255, 226, 212, 1) !important;
    /* Premium brand blue */
    color: black !important;
}

.accordion-item-pro.active .accordion-header-pro i {
    transform: rotate(180deg);
}

/* Comparison Table Styles for Test Automation Capabilities */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 1rem;
    padding-bottom: 0.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.comparison-table th {
    color: #2563eb;
    font-size: 1rem;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
}

.comparison-table th:first-child {
    color: var(--accent-orange);
    text-align: left;
    font-size: 1.25rem;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: #334155;
}

.comparison-table td:first-child {
    background: rgba(255, 80, 0, 1);
    color: white;
    text-align: left;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    width: 35%;
}

.comparison-table td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.comparison-table .val-y {
    color: #1e293b;
}

.comparison-table .val-n {
    color: #94a3b8;
    font-weight: 400;
}

/* Workbench Info Section */
.workbench-header {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0)), url("Assests/next-gen-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
}

.workbench-header h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
}

.workbench-detail {
    padding: 6rem 0;
    background: white;
}

.workbench-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.video-placeholder img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.workbench-content h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #334155;
}

.workbench-content p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.marketplaces {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.marketplace-label {
    background: #1e293b;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

.market-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.market-logos img {
    height: 40px;
    /* opacity: 0.8; */
}

.btn-orange-full {
    background: rgba(255, 80, 0, 1);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
}

.btn-outline-dark {
    border: 1.5px solid #334155;
    color: #334155;
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .tabs-container {
        flex-direction: column;
    }
}

/* Plan Tab Detailed Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);

    display: flex;
    /* always flex */
    align-items: center;
    justify-content: center;

    z-index: 100000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.25s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.modal-open {
    overflow: hidden;
}

.modal-content {
    background: white;
    width: 95%;
    max-width: 1100px;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 5px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #475569;
    transition: all 0.2s;
}

.close-modal:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.modal-left h2 {
    color: #f97316;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.modal-left .modal-desc {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-preview {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.modal-preview img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.modal-caption {
    text-align: center;
    margin-top: 1.5rem;
    color: #334155;
    font-weight: 600;
    font-size: 1rem;
}

.modal-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-card-pro {
    background: white;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.modal-card-pro:hover {
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.1);
    transform: translateX(5px);
}

.modal-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-card-head img {
    width: 40px;
    height: 40px;
}

.modal-card-head h3 {
    color: #f97316;
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-card-pro ul {
    list-style: none;
    padding-left: 3.2rem;
}

.modal-card-pro ul li {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    position: relative;
    line-height: 1.4;
}

.modal-card-pro ul li::before {
    content: "•";
    color: #f97316;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.btn-outline-orange {
    border: 2px solid #f97316;
    color: #f97316;
    background: transparent;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline-orange:hover {
    background: #f97316;
    color: white;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem;
    }
}



/* CTA Section */
/* .cta-trial {
    margin-top: 10rem;
    height: 441px;
    position: relative;
    padding: 80px 0;
    overflow: visible;
    background: url("Assests/cta-bnr.png");
    background-size: cover;
} */
.cta-trial {
    margin-top: 10rem;
    min-height: 441px;
    position: relative;
    /* padding: 80px 0; */
    overflow: visible;
    background: url(Assests/cta-bnr.png);
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

/* .cta-wrapper {
    max-width: 1200px;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
} */
.cta-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* .cta-person {
    position: relative;
} */
.cta-person {
    position: relative;
    margin-top: -210px;
    z-index: 1;
}

.cta-person img {
    width: 100%;
    position: relative;
    top: -17rem;
}

/* .cta-content {
    color: #fff;
    max-width: 520px;
    text-align: center;
} */
.cta-content {
    color: #fff;
    max-width: 520px;
    text-align: center;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

.cta-text span {
    font-weight: 900;
    margin: 0 3px;
    font-size: 42px;
}

.cta-text em {
    font-style: italic;
}

.cta-btn {
    background: #fff;
    color: #e24c1c;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: #f4f4f4;
}

/* Mobile Responsive - upto 480px */
@media (max-width:480px) {
    .cta-trial {
        margin-top: 5rem;
        height: auto;
        padding: 20px 10px !important;
        /* overflow:hidden; */
    }

    .cta-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .cta-person {
        width: 80%;
    }

    .cta-person img {
        width: 100%;
        top: -6rem;
    }

    .cta-content {
        max-width: 100%;
        margin-top: -5rem;
    }

    .cta-content h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .cta-text {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .cta-text span {
        font-size: 26px;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Website Homepage */
.ecosystem {
    padding: 0px 0px 60px 0px;
    background: rgba(255, 255, 255, 1);
}

#cotsPage .ecosystem {
    background: rgba(245, 245, 245, 1);
}

/* .eco-container{
        max-width:1200px;
        margin: 0px 30px;
    } */

/* TITLE */
.eco-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
}

.eco-title span {
    color: #ff5a00;
}

/* GRID */
.eco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* CARD */
.eco-card {
    background: #fff;
    padding: 30px;
    box-shadow: -16px 3px 40px 0 rgba(194, 194, 194, 0.52);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.eco-card:hover {
    transform: translateY(-6px);
}

/* TAG */
.eco-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.07);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    width: 125px;
}

/* TITLE */
.eco-card h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #ff5a00;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.eco-card h3 img {
    width: 20px;
}

/* IMAGE */
.eco-img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* TEXT */
.eco-card p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 12px;
}

/* DEPLOY LINKS */
.eco-deploy {
    font-family: "Roboto", sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
}

.eco-deploy a {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: rgba(255, 80, 0, 1);
    font-size: 12px;
    line-height: 1.2;
}

/* BUTTON */
.eco-btn {
    display: inline-block;
    /* margin-top:10px; */
    margin-top: auto;
    background: linear-gradient(90deg, rgba(246, 76, 24, 1), rgba(238, 149, 57, 1));
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    width: 170px;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .eco-grid {
        grid-template-columns: 1fr;
    }
}

.quality-core {
    padding: 60px 20px 40px 20px;
    background:
        url("Assests/HomePage/core-bg.webp") center/cover no-repeat,
        #f5f5f5;
    /* fallback color */
}

.qc-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.qc-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.qc-title span {
    color: #FF5000;
}

/* GRID */
.qc-grid {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 20px;
}

/* RIGHT SIDE */
.qc-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CARDS */
.qc-card {
    background: rgba(255, 237, 228, 1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

/* PRIMARY CARD */
.qc-primary {
    background: rgba(255, 80, 0, 1);
    color: #fff;
}

.qc-primary p {
    color: #fff;
    margin-bottom: 10px;
}

/* BOTTOM */
.qc-bottom {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* HEADINGS */
.qc-card h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: white;
}

.qc-card h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: rgba(255, 80, 0, 1);
    line-height: 140%;
}

/* TEXT */
.qc-card p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: white;
    margin-bottom: 8px;
}

.qc-card p strong {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.qc-card h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: rgba(43, 43, 43, 1);
    margin-bottom: 10px;
}

.qc-right p,
.qc-bottom p {
    color: rgba(43, 43, 43, 1);
}

.qc-primary-hdng,
.qc-card-hdng1,
.qc-card-hdng2,
.qc-card-hdng3,
.qc-card-hdng4,
.qc-card-hdng5 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qc-primary-hdng {
    margin-bottom: 25px;
}

.qc-card-hdng1,
.qc-card-hdng2,
.qc-card-hdng3,
.qc-card-hdng4,
.qc-card-hdng5 {
    margin-bottom: 15px;
}

.engg-header {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0)), url(Assests/HomePage/engg-quality-bnr.png);
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
}

.engg-header h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

#homePage .testimonials {
    padding: 40px 0px !important;
    /* background:#e6d4c8; */
    position: relative;
    overflow: hidden;
    margin: 40px 40px 40px 40px;
}

/* WORLD MAP BACKGROUND */
#homePage .testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("Assests/world-map.png") center/cover no-repeat;
    opacity: 0.15;
}

/* CONTAINER */
.testi-container {
    max-width: 700px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* TITLE */
.testi-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.testi-title span {
    color: rgba(255, 80, 0, 1);
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.testi-subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    margin-top: 5px;
    color: rgba(43, 43, 43, 1);
    margin-bottom: 40px;
}

/* CARD */
.testi-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 3px 12px 1px rgba(0, 0, 0, 0.12);
}

/* LOGO */
.testi-logo img {
    height: 65px;
}

/* CONTENT */
.testi-content {
    position: relative;
}

.quote {
    font-size: 40px;
    color: #ff5a00;
    display: block;
    text-align: left;
}

.testi-content p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(43, 43, 43, 1);
    text-align: left;
    font-style: normal;
    line-height: 120%;
}

/* ORANGE LINE */
.testi-line {
    width: 60px;
    height: 8px;
    background: #ff5a00;
    border-radius: 5px;
    margin-top: 15px;
}

/* DOTS */
.testi-dots {
    margin-top: 25px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #ff5a00;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: #333;
    border-color: #333;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .testi-card {
        padding: 20px;
    }

    .testi-title {
        font-size: 26px;
    }
}

/* Reviews Section */
.reviews {
    margin: 0px 40px 0px 40px;
    padding: 40px 0;
    background: rgba(255, 246, 241, 1);
}

.reviews-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.reviews-title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: rgba(124, 123, 123, 1);
}

.reviews-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    align-items: center;
}

.reviews-logos img {
    height: 40px;
    opacity: 0.8;
    transition: 0.3s;
}

.reviews-logos img:hover {
    opacity: 1;
}

.influencer {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

/* TITLE */
.infl-title {
    font-size: 32px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: rgba(43, 43, 43, 1);
    margin-bottom: 25px;
}

.infl-title span {
    font-size: 32px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 80, 0, 1);
}

.infl-title span {
    color: rgba(255, 80, 0, 1);
}

/* OUTER CONTAINER (rounded + glow border) */
.infl-wrapper {
    max-width: 1100px;
    margin: auto;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

/* CARD */
.infl-card {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.infl-card img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: 0.3s;
}

.infl-card:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:900px) {
    .infl-wrapper {
        grid-template-columns: 1fr;
    }
}

/* KNOWLEDGE HUB */
.knowledge-hub {
    padding: 0px 20px 40px 20px;
    background: white;
}

.kh-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.kh-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.kh-title span {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 80, 0, 1);
}

.kh-title span {
    color: rgba(255, 80, 0, 1);
}

/* 4 CARDS GRID */
.kh-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.kh-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px 1px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}

.kh-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px 2px rgba(0, 0, 0, 0.18);
}

/* ICON */
.kh-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

/* LABEL */
.kh-card p {
    font-size: 18px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .kh-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    .kh-grid {
        grid-template-columns: 1fr;
    }
}

#homePage .hero-bg-2,
#homePage .hero-bg-3,
#homePage .hero-bg-4,
#homePage .hero-bg-5 {
    background: rgba(255, 226, 212, 1);
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#homePage .hero-bg-1 {
    background-image: linear-gradient(rgba(233, 236, 245, 0.5), rgba(233, 236, 245, 0.5)), url(Assests/HomePage/hero-slide1.webp);
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#homePage .lifecycle-circle-visual img {
    max-width: 400px;
}

#homePage .lifecycle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0rem;
}

#homePage .innovations {
    margin-bottom: 0px !important;
}

#homePage .workbenchMobHdr {
    display: none;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .qc-grid {
        grid-template-columns: 1fr;
    }

    .qc-row {
        grid-template-columns: 1fr;
    }

    .qc-bottom {
        grid-template-columns: 1fr;
    }
}


/* TruSim */
.trusim-hero {
    position: relative;
    padding: 60px 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("Assests/Trusim/trusimHeroBnr.webp");
    /* background-repeat:no-repeat; */
    background-position: right center;
    /* background-size:900px; */
}

/* container */
.trusim-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* content */
.trusim-content {
    max-width: 560px;
    color: white;
}

/* heading */
.trusim-content h1 {
    color: white;
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    /* line-height:1.25; */
    margin-bottom: 20px;
}

.trusim-content h3 {
    color: rgba(255, 80, 0, 1);
    font-size: 18px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
}

.trusim-content p {
    color: #cbd5e1;
    /* line-height:1.7; */
    margin-bottom: 30px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}

/* button */
.trusim-btn {
    background: rgba(255, 80, 0, 1);
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.trusim-btn:hover,
.pulse-buttons .btn-primary:hover {
    background: #ff7a33;
}

.impact-section {
    padding: 60px 20px;
}

.impact-container {
    max-width: 1200px;
    margin: auto;
    background: rgba(255, 237, 229, 1);
    border-radius: 18px;
    padding: 40px 50px;
}

.impact-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 50px;
}

/* cards */
.impact-cards {
    display: flex;
    gap: 30px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    padding: 30px;
    flex: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* icon + heading */
.impact-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.impact-icon {
    width: 42px;
    height: 42px;
    background: #ff5a00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-icon img {
    width: 20px;
}

.impact-card h3 {
    font-size: 20px;
    color: rgba(255, 80, 0, 1);
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

.impact-card p {
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    /* line-height:1.6; */
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

/* responsive */
@media(max-width:900px) {
    .impact-cards {
        flex-direction: column;
    }

    .impact-container {
        padding: 50px 30px;
    }
}

.core-capabilities {
    background: rgba(246, 229, 221, 1);
    padding: 60px 20px;
}

.core-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.core-title {
    text-align: center;
    font-size: 28px;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    margin-bottom: 50px;
}

.core-title span {
    color: rgba(255, 80, 0, 1);
}

/* GRID */
.core-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT FEATURES */
.core-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* CARD */
.core-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* HEADER */
.core-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.core-head img {
    width: 30px;
}

.core-head h3 {
    font-size: 16px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    margin-top: 5px;
}

/* TEXT */
.core-card p,
.core-bottom p {
    font-size: 16px;
    /* line-height:1.6; */
    color: rgba(0, 0, 0, 1);
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

/* IMAGE */
.core-image img {
    width: 100%;
    border-radius: 10px;
}

/* BOTTOM CARD */
.core-bottom {
    margin-top: 35px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE */
@media(max-width:992px) {
    .core-grid {
        grid-template-columns: 1fr;
    }

    .core-image {
        order: -1;
    }
}



/* PULSE */
.pulse-hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("Assests/Pulse/pulse-heroBnr.webp");
    background-size: cover;
    background-position: center;
}

/* container */
.pulse-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* content */
.pulse-content {
    max-width: 520px;
    color: white;
}

/* heading */
.pulse-content h1 {
    color: rgba(255, 255, 255, 1);
    font-size: 32px;
    font-weight: 700;
    /* line-height:1.25; */
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
}

/* subheading */
.pulse-content h3 {
    color: rgba(255, 80, 0, 1);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

/* paragraph */
.pulse-content p {
    color: white;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 16px;
}

/* buttons */
.pulse-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #ff5a00;
    color: white;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline:hover {
    background: white;
    color: #000;
}

/* responsive */
@media(max-width:992px) {
    .pulse-hero::after {
        display: none;
    }

    .pulse-content {
        max-width: 100%;
    }

    .pulse-buttons {
        flex-wrap: wrap;
    }
}

.pulse-engine {
    background: white;
    padding: 70px 20px 0px 20px;
}

.pulse-engine-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.pulse-engine-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
}

.pulse-engine-title span {
    color: rgba(255, 80, 0, 1);
}

/* GRID */
.pulse-engine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.pulse-engine-image img {
    width: 100%;
}

/* CONTENT */
.pulse-engine-content {
    max-width: 520px;
}

.pulse-engine-content p {
    font-size: 16px;
    /* line-height:1.7; */
    color: rgba(43, 43, 43, 1);
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.cap-title {
    font-weight: 600;
}

/* BUTTON */
.pulse-engine-btn {
    display: inline-block;
    margin-top: 15px;
    background: rgba(255, 80, 0, 1);
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.pulse-engine-btn:hover {
    background: #ff7a33;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .pulse-engine-grid {
        grid-template-columns: 1fr;
    }

    .pulse-engine-content {
        max-width: 100%;
    }
}

.pulse-capabilities {
    background: rgba(246, 229, 221, 1);
    padding: 60px 20px;
}

.pulse-capabilities-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.pulse-capabilities-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.pulse-capabilities-title span {
    color: rgba(255, 80, 0, 1);
}

/* GRID */
.pulse-capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT STACK */
.pulse-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* IMAGE */
.pulse-image img {
    width: 100%;
    border-radius: 6px;
}

/* CARD */
.pulse-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 22px;
    border-radius: 12px;
    border: 1.75px solid rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px 1px rgba(0, 0, 0, 0.12);
}

/* CARD HEADER */
.pulse-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.pulse-head img {
    width: 32px;
}

.pulse-head h3 {
    font-size: 16px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

/* TEXT */
.pulse-card p,
.pulse-full-card p {
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    /* line-height:1.6; */
}

/* TWO GRID */
.pulse-two-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* FULL CARD */
.pulse-full-card {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 22px;
    border-radius: 12px;
    border: 1.75px solid rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px 1px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */

@media(max-width:992px) {
    .pulse-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .pulse-two-grid {
        grid-template-columns: 1fr;
    }
}

/* Trusim payments */
.payments-hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("Assests/Payments/trusimHeroBnr.webp");
    background-size: cover;
    background-position: center;
}

/* CONTAINER */
.payments-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* CONTENT */
.payments-content {
    max-width: 520px;
}

/* HEADING */
.payments-content h1 {
    font-size: 44px;
    color: rgba(255, 80, 0, 1);
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
}

/* TEXT */
.payments-content p {
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* BUTTON */
.payments-btn {
    display: inline-block;
    background: rgba(255, 80, 0, 1);
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-weight: 16px;
}

.payments-btn:hover {
    background: #ff7a33;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .payments-hero::after {
        display: none;
    }

    .payments-content {
        max-width: 100%;
    }
}

.payment-simulation {
    background: #f3f3f3;
    padding: 80px 20px;
}

.payment-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT IMAGE BLOCK */
.payment-image-box {
    background: rgba(255, 226, 212, 1);
    padding: 20px;
    border-radius: 18px;
    position: relative;
}

.main-screen {
    width: 100%;
    border-radius: 8px;
}

.overlay-left {
    position: absolute;
    bottom: 20px;
    left: 40px;
    width: 260px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.overlay-right {
    position: absolute;
    bottom: 10px;
    right: 40px;
    width: 260px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* RIGHT CONTENT */
.payment-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}

.payment-content h2 span {
    color: #ff5a00;
}

.payment-content p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(43, 43, 43, 1);
}

.payment-content p strong {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: rgba(255, 80, 0, 1);
}

.payment-btn {
    display: inline-block;
    background: rgba(255, 80, 0, 1);
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}

.payment-btn:hover {
    background: #ff7a33;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .payment-container {
        grid-template-columns: 1fr;
    }

    .overlay-left,
    .overlay-right {
        display: none;
    }
}

.business-value {
    background: rgba(255, 237, 229, 1);
    padding: 40px 20px;
    border-radius: 18px;
    margin: 40px auto;
    max-width: 1200px;
}

.business-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: "Montserrat", sans-serif;
}

/* GRID */
.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.business-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.business-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 18px;
}

/* TITLE */
.business-card h3 {
    font-size: 18px;
    color: #ff5a00;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.business-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .business-grid {
        grid-template-columns: 1fr;
    }
}

.capabilities {
    padding: 20px 20px;
    margin-bottom: 30px;
    background: white;
}

.capabilities-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.capabilities-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
}

.capabilities-title span {
    color: #ff5a00;
}

/* GRID */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.cap-card {
    background: rgba(246, 229, 221, 0.4);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* HEADER */
.cap-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cap-head img {
    width: 40px;
}

.cap-head h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: rgba(255, 80, 0, 1);
}

/* TEXT */
.cap-card p {
    margin-bottom: 12px;
    color: rgba(43, 43, 43, 1);
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.cap-card ul {
    padding-left: 18px;
}

.cap-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.cap-card li b {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 80, 0, 1);
}

/* RESPONSIVE */
@media(max-width:900px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   Enterprises Page
   ============================================ */

.workbench-hero {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("Assests/Enterprises/EnterprisesHeroBnr.webp") center/cover no-repeat;
}

/* DARK LEFT OVERLAY */
.workbench-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.8) 85%,
            rgba(255, 80, 0, 0.8) 100%);
}

/* CONTAINER */
.workbench-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    width: 100%;
}

/* CONTENT */
.workbench-content {
    /* max-width:520px; */
    color: #fff;
}

/* TITLE */
.workbench-content h1 {
    font-size: 32px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
    color: rgba(255, 80, 0, 1);
    margin-bottom: 12px;
    border-left: 6px solid rgba(255, 80, 0, 1);
    padding-left: 10px;
}

/* SUBTITLE */
.workbench-content p {
    font-size: 18px;
    color: #e5e7eb;
}

.metrics-strip {
    background: rgba(255, 127, 55, 1);
    padding: 20px;
    height: 150px;
}

.metrics-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

/* METRIC */
.metric {
    text-align: center;
    color: #fff;
    padding: 10px 20px;
    position: relative;
}

/* vertical divider */
.metric:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: -20%;
    height: 150px;
    width: 1.75px;
    background: rgba(255, 255, 255, 1);
}

/* top text */
.metric-top {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.metric-top span {
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.4;
}

/* bottom */
.metric-bottom {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(43, 43, 43, 1);
}

/* responsive */
@media(max-width:900px) {
    .metrics-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .metric::after {
        display: none;
    }
}

.workbench-command {
    padding: 60px 20px 0px 20px;
    background: white;
}

.workbench-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.workbench-title {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.workbench-title span {
    color: rgba(255, 80, 0, 1);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 32px;
}

.workbench-title strong {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 80, 0, 1);
    display: block;
    margin-top: 5px;
}

/* GRID */
.workbench-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT IMAGE BLOCK */
.workbench-images {
    position: relative;
}

.main-screen {
    width: 100%;
    border-radius: 10px;
}

.screen-left {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 260px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.screen-right {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 260px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* CONTENT */
.workbench-hero .workbench-content p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: white;
    margin-top: 30px;
}

.workbench-grid .workbench-content p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: black;
}

/* BUTTONS */
.workbench-buttons {
    display: flex;
    gap: 15px;
}

.btn-demo {
    width: 225px;
    background: rgba(255, 80, 0, 1);
    color: #fff;
    padding: 14px 0px;
    border-radius: 4px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.btn-trial {
    text-align: center;
    width: 225px;
    border: 1px solid rgba(21, 21, 21, 1);
    padding: 14px 0px;
    border-radius: 4px;
    text-decoration: none;
    color: rgba(21, 21, 21, 1);
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .workbench-grid {
        grid-template-columns: 1fr;
    }

    .screen-left,
    .screen-right {
        display: none;
    }
}

.infrastructure-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.infra-container {
    max-width: 900px;
    margin: auto;
}

.infra-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: rgba(43, 43, 43, 1);
    margin-bottom: 10px;
}

.infra-title span {
    color: rgba(255, 80, 0, 1);
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.infra-subtitle {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: rgba(55, 55, 55, 1);
}

.strategic-section {
    background: #F5F5F5;
    padding: 20px 20px 0px 20px;
}

.strategic-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.strategic-content {
    color: #fff;
}

.strategic-content h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 15px;
    color: rgba(43, 43, 43, 1);
}

.strategic-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.infra {
    margin-bottom: 25px;
    color: rgba(0, 0, 0, 1);
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.35;
}

.infra span {
    color: rgba(0, 0, 0, 1);
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.35;
}

/* FEATURE ITEMS */
.strategic-item {
    margin-bottom: 20px;
}

.strategic-item h4 {
    color: rgba(255, 80, 0, 1);
    margin-bottom: 5px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.35;
}

.strategic-item p {
    color: rgba(43, 43, 43, 1);
    line-height: 1.35;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.strategic-item div {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* IMAGE */
.strategic-image img {
    width: 100%;
    max-width: 330px;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .strategic-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .strategic-image img {
        margin: auto;
    }
}

.core-dna {
    background: #F6E4DC;
    padding: 60px 20px;
}

.dna-container {
    max-width: 1200px;
    margin: auto;
}

.dna-title {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.dna-title span {
    color: rgba(255, 80, 0, 1);
}

.dna-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: rgba(55, 55, 55, 1);
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
}

/* GRID */
.dna-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px;
    row-gap: 25px;
}

/* CARD */
.dna-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px 1px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 1);
}

/* HEADER */
.dna-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.dna-head img {
    width: 34px;
}

.dna-head h4 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
}

/* TEXT */
.dna-card p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
}

/* RESPONSIVE */
@media(max-width:1000px) {
    .dna-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .dna-grid {
        grid-template-columns: 1fr;
    }
}

.plan-toggle {
    background: white;
    padding: 25px 20px;
}

.plan-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TABS */

.plan-tabs {
    display: flex;
    gap: 40px;
}

.tab {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    line-height: 1.2;
    cursor: pointer;
    color: rgba(43, 43, 43, 1);
    padding-bottom: 8px;
}

.tab.active {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: rgba(255, 80, 0, 1);
    border-bottom: 5px solid rgba(255, 80, 0, 1);
    line-height: 1.2;
}

/* ACTION BUTTONS */
.plan-actions {
    display: flex;
    gap: 20px;
}

.plan-actions .btn-primary {
    text-align: center;
    width: 220px;
    background: #ff5a00;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 22.5px;
}

.plan-actions .btn-primary:hover {
    background: #ff7a33;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .plan-container {
        flex-direction: column;
        gap: 20px;
    }
}




/* Mobile Responsive */

/* ============================================
   TENJIN - COMPLETE MOBILE RESPONSIVE CSS
   Breakpoints: 1200px | 1024px | 768px | 480px
   ============================================ */

/* ── Hamburger Menu ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Nav overlay for mobile ── */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-mobile-overlay.active {
    display: block;
}

/* ============================================
   LARGE DESKTOP (max-width: 1200px)
   ============================================ */
@media (max-width: 1200px) {
    .nav-links {
        gap: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .card-features-pro {
        height: auto;
        min-height: 400px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .innovations-flex {
        gap: 0.75rem;
    }

    .footer-links-pro {
        gap: 3rem;
    }
}

/* ============================================
   TABLET LANDSCAPE (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }

    /* Nav */
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .btn-header {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
    }

    /* Hero */
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn-book,
    .btn-know {
        padding: 0.85rem 1.8rem;
        font-size: 1rem;
    }

    /* Workbench */
    .workbench-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .workbench-content h3 {
        font-size: 1.5rem;
    }

    /* Features */
    .feature-grid-8 {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Lifecycle */
    .lifecycle-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .lifecycle-circle-visual {
        display: none;
    }

    /* Innovations */
    .innovations-flex {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .innovation-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 200px;
    }

    .innovation-card {
        height: 280px;
    }

    /* Modal */
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem;
        width: 95%;
    }
}

/* ============================================
   TABLET PORTRAIT (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

    /* ── Navigation ── */
    .hamburger {
        display: flex;
    }

    .nav-content {
        padding: 0.85rem 1.25rem;
        position: relative;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #03041A;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        z-index: 1000;
        transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 3px 0 !important;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        justify-content: space-between;
    }

    .nav-auth {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        position: fixed;
        right: -100%;
        width: 280px;
        padding: 0 2rem;
        bottom: 2rem;
        z-index: 1000;
        transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav-auth.open {
        right: 0;
    }

    .btn-header {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1rem;
    }

    .logo-group img {
        height: 40px;
        width: auto;
    }

    /* ── Hero ── */
    .hero {
        padding: 3.5rem 0 2rem;
        background-position: top center;
        background-size: 100% 100% !important;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }

    /*.hero-visual {*/
    /*    display: none;*/
    /*}*/

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin: 0 auto 2rem;
        max-width: 480px;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .btn-book,
    .btn-know {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .slider-indicators {
        margin-top: 2.5rem;
        gap: 0.75rem;
    }

    .indicator {
        width: 40px;
        height: 5px;
    }

    /* ── Trusted logos ── */
    .logo-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }

    .trusted h2 {
        font-size: 1.8rem !important;
        margin-bottom: 2.5rem !important;
    }

    /* ── Workbench Header ── */
    .workbench-header {
        padding: 4rem 1.25rem;
    }

    .workbench-header h2 {
        font-size: 1.6rem;
    }

    /* ── Workbench Detail ── */
    .workbench-detail {
        padding: 3.5rem 0;
    }

    .workbench-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .workbench-content h3 {
        font-size: 1.4rem;
    }

    .workbench-content p {
        font-size: 1rem;
    }

    .marketplaces {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .market-logos {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .market-logos img {
        height: 32px;
    }

    .workbench-btns {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .workbench-btns .btn {
        width: 100%;
        text-align: center;
    }

    /* ── Features ── */
    .features-detailed {
        padding: 3.5rem 0;
    }

    .section-title-large {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .feature-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-card-pro {
        padding: 16px 12px;
    }

    .btn-primary-large {
        padding: 1rem 2.5rem;
        font-size: 1.05rem;
    }

    /* ── Lifecycle ── */
    .lifecycle {
        padding: 3.5rem 0;
    }

    .lifecycle-head h2 {
        font-size: 1.9rem;
    }

    .lifecycle-head p {
        font-size: 1rem;
    }

    .lifecycle-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lifecycle-tabs-nav {
        width: 100%;
        max-width: 100%;
    }

    .lifecycle-tab {
        padding: 1rem 1.25rem;
    }

    .tab-label {
        font-size: 1rem;
    }

    /* ── Capabilities ── */
    .capabilities-head-wrapper {
        padding: 0.5rem 0 1.5rem;
    }

    .capabilities-head h2 {
        font-size: 1.8rem;
    }

    .capabilities {
        padding: 2rem 0 5rem;
    }

    .accordion-header-pro {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.7rem 0.6rem;
        font-size: 0.8rem;
    }

    /* ── Pricing ── */
    .pricing-head-pro h2 {
        font-size: 2rem;
    }

    .pricing-grid-4 {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .card-features-pro {
        height: auto;
    }

    /* ── Testimonials ── */
    .testimonials {
        margin: 4rem 0;
        padding: 40px 15px;
    }

    .testimonials-head h2 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* ── Innovations ── */
    .innovations-head h2 {
        font-size: 2rem;
    }

    .innovations-flex {
        flex-direction: column;
        gap: 1.5rem;
        min-height: unset;
    }

    .innovation-item {
        flex: none;
        width: 100%;
    }

    .innovation-item:hover {
        flex: none;
    }

    .innovation-card {
        height: 240px;
    }

    .btn-watch-outer {
        opacity: 1;
        transform: none;
        margin-top: 12px;
    }

    /* ── Modal ── */
    .modal-content {
        padding: 1.75rem 1.25rem;
        border-radius: 14px;
        width: 96%;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-left h2 {
        font-size: 1.8rem;
    }

    .close-modal {
        top: 10px;
        right: 12px;
    }

    /* ── Footer ── */
    .footer-minimal .container {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
        padding: 1.5rem;
    }

    .footer-links-pro {
        gap: 2.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ============================================
   MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {

    /* ── Nav ── */
    .nav-links {
        width: 80%;
        right: -100%;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-auth {
        width: 80%;
        right: -100%;
        padding: 0 1.25rem;
    }

    .nav-auth.open {
        right: 0;
    }

    /* ── Hero ── */
    .hero.hero-bg-1 {
        background-image: none !important;
        background-color: #e9ecf5;
    }

    .slide1img-mob {
        display: flex !important;
        margin-top: 2rem;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-book,
    .btn-know {
        text-align: center;
        padding: 0.9rem;
    }

    /* ── Trusted logos ── */
    .logo-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }

    .trusted h2 {
        font-size: 1.5rem !important;
        margin-bottom: 2rem !important;
    }

    /* ── Workbench header ── */
    .workbench-header h2 {
        font-size: 1.35rem;
    }

    /* ── Features ── */
    .section-title-large {
        font-size: 1.45rem;
    }

    .feature-grid-8 {
        grid-template-columns: 1fr;
    }

    /* ── Lifecycle ── */
    .lifecycle-head h2 {
        font-size: 1.6rem;
    }

    /* ── Capabilities ── */
    .capabilities-head h2 {
        font-size: 1.5rem;
    }

    .accordion-header-pro {
        font-size: 0.95rem;
        padding: 0.9rem 1rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.4rem;
        font-size: 0.72rem;
    }

    .comparison-table th:first-child {
        font-size: 0.95rem;
    }

    /* ── Pricing ── */
    .pricing-head-pro h2 {
        font-size: 1.65rem;
    }

    .pricing-grid-4 {
        max-width: 100%;
    }

    /* ── Testimonials ── */
    .testimonials-head h2 {
        font-size: 1.65rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.25rem 1rem;
    }

    /* ── Innovations ── */
    .innovations-head h2 {
        font-size: 1.65rem;
    }

    .innovation-card {
        height: 200px;
    }

    /* ── Lifecycle content ── */
    .content-text h4 {
        font-size: 1rem;
    }

    .content-text p {
        font-size: 0.9rem;
    }

    /* ── Modal ── */
    .modal-left h2 {
        font-size: 1.5rem;
    }

    .modal-card-pro {
        padding: 1.1rem 1rem;
    }

    .modal-card-head h3 {
        font-size: 1.05rem;
    }

    /* ── Footer ── */
    .footer-links-pro {
        gap: 1.5rem;
    }

    .footer-minimal {
        font-size: 13px;
    }

    /*.hero-grid {*/
    /*    display: flex;*/
    /*    flex-direction: column-reverse;*/
    /*}*/
}

/* ============================================
   SMALL MOBILE (max-width: 360px)
   ============================================ */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn-book,
    .btn-know {
        font-size: 0.9rem;
    }

    .feature-card-pro p {
        font-size: 0.88rem;
    }

    .card-icon-title h3 {
        font-size: 0.95rem;
    }

    .card-icon-title img {
        width: 36px;
        height: 36px;
    }

    .lifecycle-tab .tab-label {
        font-size: 0.9rem;
    }

    .comparison-table {
        font-size: 0.68rem;
    }
}

/* ============================================
   UTILITY: Scroll lock for modal / nav drawer
   ============================================ */
body.nav-open {
    overflow: hidden;
}

/* ============================================
   HAMBURGER JS HOOK — add to main.js:

   const hamburger = document.querySelector('.hamburger');
   const navLinks  = document.querySelector('.nav-links');
   const navAuth   = document.querySelector('.nav-auth');
   const overlay   = document.querySelector('.nav-mobile-overlay');

   function toggleNav() {
     const isOpen = navLinks.classList.toggle('open');
     hamburger.classList.toggle('open', isOpen);
     navAuth.classList.toggle('open', isOpen);
     overlay.classList.toggle('active', isOpen);
     document.body.classList.toggle('nav-open', isOpen);
   }

   hamburger.addEventListener('click', toggleNav);
   overlay.addEventListener('click', toggleNav);
   ============================================ */




/* Custom Additional CSS */
/* HOME PAGE */
#homePage .innovations-head h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 100%;
}

#homePage .innovations-head h2 span {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 100%;
    color: rgba(255, 80, 0, 1) !important;
}

#homePage .lifecycle-head h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: rgba(43, 43, 43, 1);
}

#homePage .lifecycle-head p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(43, 43, 43, 1);
}

#homePage .lifecycle-tab.active .tab-label span {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: white;
}

#homePage .lifecycle-head h2 span {
    color: rgba(255, 80, 0, 1);
}

#homePage .hero-content .hero-title {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 80, 0, 1);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#homePage .workbench-detail {
    padding: 4rem 0 !important;
}

#homePage .engg-header h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

#homePage .engg-header h2 span {
    color: rgba(255, 80, 0, 1);
    font-size: 32px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

#homePage .engg-header {
    padding: 5.5rem 0 !important;
}

#homePage .workbench-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: rgba(43, 43, 43, 1);
}

#homePage .workbench-content h3 span {
    color: rgba(255, 80, 0, 1);
}

#homePage .cta-person img {
    top: 0.7rem;
    border-bottom: 7px solid white;
}

#homePage .btn-book,
#homePage .btn-kno,
#homePage .btn-orange-full,
#homePage .btn-outline-dark,
#homePage .btn-outline-dark {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

#homePage .lifecycle {
    padding: 1rem 0;
}

#homePage .lifecycle-head {
    margin-bottom: 3rem;
}

#homePage .trusted {
    padding: 2rem 0 !important;
}

#homePage .trusted h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700 !important;
    font-size: 32px !important;
    line-height: 100%;
    margin-bottom: 2.5rem !important;
}

#homePage .innovations-head {
    margin-bottom: 2rem;
}


/* COTS PAGE */
.cots-section {
    background: rgba(245, 245, 245, 1);
    padding: 60px 20px;
}

/* HERO */
.cots-hero {
    margin: 0px 50px;
    position: relative;
}

.cots-image img {
    width: 52%;
    border-radius: 8px;
    height: 450px;
}

/* FLOATING CARD */
.cots-content {
    position: absolute;
    right: 26%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 1);
    padding: 35px;
    max-width: 700px;
    border-radius: 12px;
}

/* TITLE */
.cots-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cots-content h2 span {
    color: rgba(255, 80, 0, 1);
}

.cots-content p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    line-height: 1.2;
}

/* WHY SECTION */
.cots-why {
    margin-top: 60px;
    text-align: center;
    color: #fff;
}

.cots-why h2 {
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.cots-why span {
    color: #ff5a00;
}

.cots-sub {
    margin: 15px 0 40px;
    color: #aaa;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(55, 55, 55, 1);
    line-height: 1.2;
}

/* GRID */
.cots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARDS */
.cots-card {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 40px 0px rgba(255, 255, 255, 0);
}

.cots-card h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 1);
}

.cots-card.primary h3 {
    color: rgba(255, 255, 255, 1);
}

.cots-card p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
}

.cots-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* PRIMARY CARD */
.cots-card.primary {
    background: linear-gradient(135deg, rgba(224, 54, 9, 1), rgba(240, 183, 31, 1));
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .cots-content {
        position: static;
        transform: none;
        margin-top: -60px;
    }

    .cots-grid {
        grid-template-columns: 1fr;
    }
}

.ecosystem-section {
    background: rgba(245, 245, 245, 1);
    padding: 0px 20px;
    color: #fff;
}

.eco2-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.eco2-title {
    font-size: 30px;
    margin-bottom: 10px;
}

.eco2-title span {
    color: #ff5a00;
}

.eco2-sub {
    color: #aaa;
    /* margin-bottom: 50px; */
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(55, 55, 55, 1);
    line-height: 1.2;
}

#cotsPage .eco2-sub {
    margin-bottom: 50px;
}

#homePage .ecosystem {
    background: rgba(255, 255, 255, 1);
    padding: 10px 0px;
}

.eco-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: center;
}

#cotsPage .eco-container {
    max-width: 1200px;
    grid-template-columns: 420px 1fr;
    gap: 40px;
}

/* LEFT */
.eco-left img {
    width: 100%;
    max-width: 400px;
}

/* RIGHT GRID (IMPORTANT) */
.eco-right {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas:
        "oltp oltp oltp oltp erp erp"
        "crm crm crm digital digital digital"
        "workflow workflow workflow workflow workflow workflow";
    gap: 15px;
}

/* GRID AREAS */
.oltp {
    grid-area: oltp;
}

.erp {
    grid-area: erp;
}

.crm {
    grid-area: crm;
}

.digital {
    grid-area: digital;
}

.workflow {
    grid-area: workflow;
}

/* CARD */
.eco-card {
    background: rgba(255, 255, 255, 1);
    padding: 25px;
    border-radius: 8px;
    /* text-align: center; */
    position: relative;
}

.eco-card h3 {
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    gap: 10px;
    color: #ff5a00;
}

/* left line */
/* .eco-card h3::before,
.eco-card h3::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #ff5a00;
} */

/* IMAGE */
.eco-card img {
    max-width: 100%;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .eco-container {
        grid-template-columns: 1fr;
    }

    .eco-right {
        grid-template-columns: 1fr;
        grid-template-areas:
            "oltp"
            "erp"
            "crm"
            "digital"
            "workflow";
    }

    .eco-left {
        text-align: center;
    }
}

.advantage-section {
    padding: 0px 20px 60px 20px;
    background: rgba(245, 245, 245, 1);
    color: #000;
}

.adv-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.adv-title {
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.adv-title span {
    color: rgba(255, 80, 0, 1);
}

/* DESCRIPTION */
.adv-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: rgba(55, 55, 55, 1);
}

/* EXPLORE SECTION */
.explore-section {
    position: relative;
    padding: 100px 20px;
    color: #fff;
    background: url("Assests/Cots/explore-bnr.webp") right center / cover no-repeat;
}

.explore-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.7) 35%,
            rgba(0, 0, 0, 0.3) 65%,
            rgba(0, 0, 0, 0.1) 100%);
}

/* CONTENT */
.explore-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
    z-index: 1;
}

/* TITLE */
.explore-section h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    color: white;
}

/* TEXT */
.explore-section p {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: white;
}

.oltp-row {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.oltp-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.crm-row {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.digital-col {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.workflow-row {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .explore-section {
        padding: 70px 20px;
        background-position: center;
    }

    .explore-section h2 {
        font-size: 30px;
    }

    .explore-section p {
        font-size: 16px;
    }
}

/* ===================================
   LOGIN POPUP MODAL
=================================== */
.login-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.login-modal-overlay.active {
    display: flex;
}

.login-modal-content {
    position: relative;
    display: flex;
    /* gap: 24px; */
    min-width: 320px;
    max-width: 850px;
    width: 100%;
    border-radius: 12px;
    background: #f3f4f6;
    margin: 0 16px;
    overflow: hidden;
    align-items: stretch;
}

.login-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: #1e293b;
    border: none;
    color: #fff;
    font-size: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
}

.login-modal-close:hover {
    background: #FF5000;
}

/* Left image */
.login-modal-left {
    min-width: 320px;
    max-width: 401px;
    width: 401px;
    min-height: 317px;
    max-height: 398px;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 1);
}

.login-modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Right form */
.login-modal-right {
    flex: 1;
    min-width: 320px;
    max-width: 425px;
    border-radius: 12px;
    padding: 10px 6px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: rgba(238, 238, 238, 1);
}

.login-modal-logo {
    width: 107px;
    max-width: 107px;
    height: auto;
    padding: 10px;
    object-fit: contain;
}

.login-modal-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    color: #1e293b;
    max-width: 357px;
    padding: 0 10px;
}

.login-modal-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 300px;
    max-width: 313px;
    width: 100%;
    align-items: center;
}

.login-modal-input {
    width: 100%;
    min-width: 300px;
    max-width: 313px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    padding: 13px 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #374151;
    background-color: #F9F9F9;
    outline: none;
    transition: border-color 0.2s;
}

.login-modal-input:focus {
    border-color: #FF5000;
}

.login-modal-submit {
    width: 100%;
    min-width: 300px;
    max-width: 313px;
    height: 48px;
    border-radius: 4px;
    border: none;
    padding: 11px 35px;
    background: linear-gradient(180deg, #F2A16F 0%, #FF5000 100%);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.login-modal-submit:hover {
    opacity: 0.88;
}

.login-modal-privacy {
    max-width: 377px;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.login-privacy-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.1;
    color: #374151;
}

.login-privacy-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 10px;
    line-height: 1.4;
    color: #6b7280;
}

/* Login Modal — Responsive (≤750px) */
@media (max-width: 750px) {
    .login-modal-overlay {
        align-items: center;
        padding: 12px;
    }

    .login-modal-content {
        flex-direction: column;
        gap: 0;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 12px;
        max-width: 100%;
    }

    .login-modal-left {
        width: 100%;
        min-width: unset;
        max-width: 100%;
        min-height: 160px;
        /* max-height: 200px; */
    }

    .login-modal-right {
        min-width: unset;
        max-width: 100%;
        width: 100%;
        padding: 20px 12px;
        border-radius: 0 0 12px 12px;
    }

    .login-modal-heading {
        font-size: 16px;
    }

    .login-modal-input,
    .login-modal-submit {
        max-width: 100%;
        min-width: unset;
        width: 100%;
    }

    .login-modal-form-wrapper {
        max-width: 100%;
        min-width: unset;
        width: 100%;
        padding: 0 8px;
    }
}