@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --primary: #FF4D00;
    --primary-hover: #E64E00;
    --dark: #000000;
    --gray: #4B5563;
    --light-gray: #F9FAFB;
    --light-gray-2: #F9FAFB;
    --border: #E5E7EB;
    --white: #FFFFFF;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 95%;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 0px 0 100px;
}


h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -1.2px;
    vertical-align: middle;
    font-family: var(--font-heading);


}

p {
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #323232;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.bg-light {
    background: #F9FAFB;

}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Header styles removed to avoid overriding shared site header */

/* Hero Section */
.hero {
    padding: 100px 0 140px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    align-items: flex-start;
}

.badge-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.line {
    width: 40px;
    height: 2px;
    background: #0D0421;
}

.badge-text {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: #0D0421;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #111827;
}

.text-primary {
    color: var(--primary);
}

.hero-description {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #323232;
    margin-bottom: 30px;

}

.hero-btns {
    display: flex;
    gap: 24px;
}

.btn {
    padding: 12px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 25px rgba(255, 87, 0, 0.2);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 87, 0, 0.3);
}

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

.btn-outline:hover {
    background: rgba(255, 87, 0, 0.05);
    transform: translateY(-4px);
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-img {
    border-radius: 32px;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-container:hover .hero-img {
    transform: scale(1.02) rotate(-1deg);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: #FF4D0099;
    border: 1px solid #FFFFFF1A;
    backdrop-filter: blur(20px);
    padding: 18px 28px;
    border-radius: 24px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.dot {
    width: 10px;
    height: 10px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 15px #fbbf24;
}

.badge-info span {
    display: block;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #F8BD2D;
}

.badge-info p {
    font-size: 16px;
    color: #fff;
}

/* Stats Section */
.stats {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-container {
    background: var(--white);
    border-radius: 24px;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid #32323266;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: var(--border);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #323232;

}

/* Engineered in India Section */
.engineered-india {
    padding-top: 100px;
    background-color: var(--light-gray-2);
    position: relative;
    overflow: hidden;
}

.engineered-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.engineered-content h2 {
    margin-bottom: 40px;
    color: var(--dark);

}

.engineered-content .description {

    margin-bottom: 20px;

}

.work-with {
    margin: 48px 0;
}

.work-with h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--dark);
}

.work-with-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.work-card {
    background: #303030;
    color: var(--white);
    padding: 24px 20px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
    align-items: baseline;
}

.work-card img {
    height: 20px;
    object-fit: contain;
}

.work-card:hover {
    background: #404040;
    transform: translateY(-5px);
}

.work-card i {
    width: 24px;
    height: 24px;
    color: var(--white);
    opacity: 0.9;
}

.work-card span {
    font-size: 14px;
    font-weight: 700;
}

.bottom-text {
    width: 85%;
}

/* Media Collage */
.engineered-media {
    position: relative;
    z-index: 1;
}

.media-collage {
    display: flex;
    gap: 25px;
    align-items: flex-end;
    padding-top: 20px;
}

.collage-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.collage-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 10px solid #241A3899;
    background: #fdfdfd;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

}

.collage-item img {
    width: 100%;
    height: auto;
    display: block;
}

.item-1 img {
    min-height: 192px;
    object-fit: cover;
}

.item-2 img {
    min-height: 320px;
    object-fit: cover;
}

.item-3 img {
    min-height: 256px;
    object-fit: cover;
}

.item-4 img {
    min-height: 160px;
    object-fit: cover;
}

.india-badge {
    position: absolute;
    top: -65px;
    right: -40px;
    width: 160px;
    height: 160px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    background: transparent;
}

.india-badge p {
    color: var(--primary);


    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;

}



.overflow-visible {
    overflow: visible;
}

/* Featured Products Section */
.featured-products {
    background-color: #1a1a1a;
    padding: 100px 0;
    color: var(--white);
}

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

.section-header .subtitle {
    color: var(--primary);
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 2.4px;
    text-transform: uppercase;

    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 24px;
    color: var(--white);
}

.section-header .description {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.section-header .main-text {
    color: #BDC8CD;
}

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

.product-card {
    background: #303030;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    background: #2d2d2d;
}

.product-image {
    position: relative;
    height: 240px;
}

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

.trending-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--white);
}

.product-info p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    font-weight: 400;
    color: #EADDFF;
    margin-bottom: 20px;
}

.tag-group {
    margin-bottom: 16px;
}

.tag-label {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 4px;
}

.tag-group p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #EADDFF;


}

.btn-specs {
    margin-top: auto;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #3D494C;
    border-radius: 10px;
    color: #EADDFF;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;

}

.btn-specs:hover {
    border-color: var(--primary);
    color: var(--white);
    background: rgba(255, 77, 0, 0.05);
}

/* More Options Card */
.more-options-card {
    /* background: #262626;
    border: 1px solid var(--primary);
    border-radius: 20px; */
    padding: 40px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.more-options-card .card-content {
    width: 100%;
    background: #303030;
    border: 1px solid #FF4D00;
    padding: 30px;
}

.premium-badge {
    color: var(--primary);
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;

}

.more-options-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
}

.more-options-card p {
    font-size: 14px;
    color: #EADDFF;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-explore {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);

    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;

}

.btn-explore:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.2);
}


/* Setup Process Section */
.setup-process {
    padding: 100px 0;
    background-color: var(--white);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    color: var(--primary);
    margin-bottom: 40px;
}

.description-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.description-wrap p {
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1.4px;
    text-align: center;
    vertical-align: middle;

    max-width: 85%;
}

.side-line {
    flex: 1;
    height: 1px;
    background-color: #3D494C;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.process-card {
    background: var(--white);
    border: 1px solid #FF4D00;
    /* Light orange border */
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    transition: var(--transition);
}

.process-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(255, 77, 0, 0.05);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.proc-icon {
    width: 64px;
    height: 64px;
    background-color: #e0f2fe;
    /* Light blue */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    /* Darker blue icons */
}

.proc-icon i {
    width: 24px;
    height: 24px;
}

.proc-num {
    font-size: 48px;
    font-weight: 800;
    color: #29415E;
}

.card-body h3 {
    font-family: var(--font-heading);
    margin-bottom: 16px;
    color: #323232;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    vertical-align: middle;

}

.card-body p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    letter-spacing: 0px;
    vertical-align: middle;


    margin-bottom: 10px;
}

.proc-list {
    margin-top: auto;
}

.proc-list span {
    font-weight: 700;
    font-size: 13px;
    color: #374151;
    display: block;
    margin-bottom: 12px;
}

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

.proc-list li {
    font-size: 13px;
    line-height: 1.4;
    color: #6b7280;
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
}

.proc-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.summary-text {
    margin-top: 16px;
    font-weight: 600;
    color: #4b5563;
    font-size: 13px !important;
}

/* Setup CTA Banner */
.setup-cta-banner {
    background-color: #241A3899;
    /* Gray box from image */
    border-radius: 24px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.banner-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
    vertical-align: middle;
}

.banner-content p {
    font-size: 18px;
    color: #BDC8CD;
    margin-bottom: 0;
}

.setup-cta-banner .btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;


    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;

}

.setup-cta-banner .btn-primary:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}



/* Market ROI Section */
.market-roi {
    padding: 100px 0;
    background-color: #f8fafc;
}

.market-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.market-content h2 {
    margin-bottom: 30px;
    color: var(--dark);
}

.market-content p {
    margin-bottom: 30px;
    color: #0D0421;
}

.market-look-for h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 18px;
    color: #0D0421;

}

.market-look-for ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    margin-left: 14px;
}

.market-look-for li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 15px;
    color: #0D0421;
    font-size: 18px;
}

.market-look-for li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0D0421;
    font-weight: bold;
}

.market-summary {
    color: #0D0421;
}

.roi-box {
    background: var(--white);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid #3232321A
}

.timeline-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.roi-icon {
    width: 46px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roi-info h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.roi-info p {
    font-size: 16px;
}

.roi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.roi-tags span {
    color: #0D0421;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    vertical-align: middle;
}

.potential-box {
    position: relative;
}

.potential-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.orange-bar {
    width: 8px;
    height: 32px;
    background-color: #F8BD2D;
    border-radius: 1000px;
}

.potential-box h3 {
    font-size: 24px;
    color: var(--primary);
}

.potential-box p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    vertical-align: middle;

    margin-bottom: 30px;
}

.revenue-table {
    margin-bottom: 30px;
}

.table-labels {
    display: flex;
    /* justify-content: space-between; */
    margin-bottom: 12px;
    gap: 30%;
}

.table-labels span {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #0D0421;


}

.table-content {
    display: flex;
    border: 1px solid #3030301A;
    overflow: hidden;
    align-items: center;
    background: #F9FAFB;

}

.table-cell {
    flex: 1;
    padding: 20px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    vertical-align: middle;

}

.table-cell.highlight {
    /* background: var(--white); */
    border-left: 2px solid #3030301A;
    height: 100%;
}

.table-cell strong {
    font-size: 18px;
    color: #0f172a;
}

.roi-footer-note {
    background-color: #F9FAFB;
    padding: 16px 24px;
    border-radius: 24px;
}

.roi-footer-note p {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #120826;

}

/* Funtime ROI Box */
.funtime-roi-box {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    border: 1px solid #3232321A
}

.roi-icon.orange-bg {
    width: 54px;
    height: 64px;
}

.funtime-roi-content h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: var(--primary);
    margin-bottom: 16px;
}

.funtime-roi-content .roi-tags {
    margin-bottom: 8px;
}

.funtime-roi-content p {
    margin: 0;
    font-size: 14px;
}


/* Operator Benefits Section */
.operator-benefits {
    padding: 80px 0;
    /* background-color: #f9fafb; */
}

.operator-benefits .bg-light {
    padding: 60px;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header h2 {
    color: #120826;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.benefit-icon {
    margin-bottom: 24px;
    color: var(--primary);
    width: 37px;
}

.benefit-icon i {
    width: 40px;
    height: 40px;
}

.benefit-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.benefit-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #323232;
    margin-bottom: 30px;
    flex-grow: 1;
}

.benefit-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
    vertical-align: middle;
    text-transform: uppercase;

    transition: var(--transition);
}

.benefit-link i {
    width: 16px;
    height: 16px;
}

.benefit-link:hover {
    gap: 12px;
}



/* Venues Serve Slider */
.venues-serve {
    padding: 100px 0;
    background-color: var(--white);
}

.venues-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.venues-header .subtitle {
    color: #0D0421;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 2.4px;
    vertical-align: middle;
    text-transform: uppercase;

    display: block;
    margin-bottom: 16px;
}

.venues-header h2 {
    color: var(--primary);
}

.slider-controls {
    display: flex;
    gap: 16px;
}

.control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: #64748b;
}

.control-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(255, 77, 0, 0.05);
}

.control-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #e2e8f0;
    color: #cbd5e1;
}


.venues-slider-wrap {
    overflow-x: auto;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.venues-slider-wrap::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.venues-slider {
    display: flex;
    gap: 24px;
    width: max-content;
}

.venue-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    color: var(--white);
    flex-shrink: 0;
}

.venue-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.venue-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 580px;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: 2;
}

.venue-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 3;

}

.venue-content .venues-header-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.venue-icon {
    width: 50px;
    height: 40px;
    background-color: rgba(14, 165, 233, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    margin-bottom: 12px;
}

.venue-icon i {
    width: 20px;
    height: 20px;
}

.venue-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
    vertical-align: middle;

    margin-bottom: 12px;
    color: #EADDFF;
}

.venue-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #BDC8CD;

    margin-bottom: 0;
}

/* Specific Sizes for Bento Look */
.venue-card.large {
    width: 580px;
    height: 630px;
}

.venue-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 580px;
}

.venue-card.wide {
    width: 100%;
    height: 303px;
}

.venue-row {
    display: flex;
    gap: 24px;
    height: 303px;
}

.venue-card.small {
    flex: 1;
    height: 100%;
}

.venue-card.tall {
    width: 380px;
    height: 630px;
}

/* Installation Process Section */
.installation-process {
    padding: 100px 0;
    background-color: #F9FAFB;
}

.proc-header {
    text-align: center;
    margin-bottom: 80px;
}

.proc-header h2 {
    margin-bottom: 30px;
}

.proc-desc-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

.proc-desc-wrap p {

    line-height: 100%;
    letter-spacing: 1.4px;
    text-align: center;
    vertical-align: middle;

    margin-bottom: 0;
}

.orange-line-small {
    width: 60px;
    height: 1px;
    background-color: var(--primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.step-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.step-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.step-num {
    font-size: 44px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.step-icon {
    /* Light blue */
    width: 24px;
    height: 24px;
    margin-top: 46px;
    position: absolute;
}

.step-info h3 {
    color: var(--primary);
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;

}

.step-info p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #323232;


}

.proc-bottom-text {
    text-align: center;
}

.proc-bottom-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 1.4px;
    text-align: center;
    vertical-align: middle;
    font-weight: 500;
    color: #323232;

}



/* Service Support Section */
.service-support {
    padding: 100px 0;
    background-color: var(--white);
}

.service-header {
    text-align: center;
    margin-bottom: 80px;
}

.service-header h2 {
    color: var(--primary);
    margin-bottom: 40px;
}

.service-support .description-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
    max-width: 100% !important;
}

.service-support .description-wrap p {

    line-height: 25px;

}

.service-support .side-line {
    flex: 1;
    height: 1px;
    background-color: #FF4D00;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: #313131;
    /* Dark gray from image */
    border-radius: 32px;
    padding: 50px;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    vertical-align: middle;

    color: var(--primary);
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-left: 20px;
}

.service-card li {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;
    vertical-align: middle;

    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #FFFFFF;
}

.service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--white);
}

.service-footer-note {
    text-align: center;
}

.service-footer-note p {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 1.4px;
    text-align: center;
    vertical-align: middle;

}


/* Projects Showcase Section */
.projects-showcase {
    padding: 100px 0;
    background-color: #F9FAFB;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.projects-header h2 {
    color: #120826;
}

.projects-header p {
    text-align: right;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;

}

.projects-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-areas:
        "mall cafe"
        "kids kids";
    gap: 30px;
}

.mall-project {
    grid-area: mall;
    height: 460px;
}

.cafe-project {
    grid-area: cafe;
    height: 460px;
}

.kids-project {
    grid-area: kids;
    height: 380px;
}

.project-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    color: var(--white);
}

.project-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.project-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: 2;
}

.project-content {
    position: relative;
    z-index: 3;
    padding: 40px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 95%;
    justify-content: space-between;
}

.project-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #66D5F133;
    color: #66D5F1;
    border-radius: 9000px;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
    vertical-align: middle;

    margin-bottom: 24px;
    width: fit-content;
}

.project-badge.yellow {
    background: #F8BD2D33;
    color: #F8BD2D;
}

.project-badge.orange {
    background: #FFB59E33;
    color: #FFB59E;
}

.project-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
    vertical-align: middle;

    margin-bottom: 20px;
}

.project-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #BDC8CD;

    margin-bottom: 16px;
}

.project-result span {
    color: var(--white) !important;
}


/* Machine Types Slider (Swiper) */
.machine-types {
    padding: 100px 0 0;
    background-color: #141414;
    /* Deep dark background */
}

.types-header {
    text-align: center;
    margin-bottom: 60px;
}

.types-header h2 {
    color: var(--white);
}

.types-swiper {
    padding-bottom: 80px;
}

.type-card {
    background-color: #262626;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    height: auto;
    min-height: 276px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid #FF4D00;
    justify-content: flex-start;

}

.type-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.1);
}

.type-num {
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: var(--white);
    line-height: 1;
    text-align: right;
    margin-bottom: 20px;
}

.type-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: var(--white);
    margin-bottom: 16px;
}

.type-card p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    letter-spacing: 0px;
    vertical-align: middle;

    color: #BDC8CD;
    margin-bottom: 0;
}

.types-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.types-prev,
.types-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #374151;
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.types-prev:hover,
.types-next:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.types-next {
    border-color: var(--primary);
    color: var(--primary);
}

.machine-types .types-prev.swiper-button-lock,
.machine-types .types-next.swiper-button-lock {
    display: inline-flex !important;
}


/* Trusted Operators Section */
.trusted-operators {
    padding: 100px 0;
    background-color: #F9FAFB;
}

.operators-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.operators-titles h2 {
    color: var(--primary);
    margin-bottom: 24px;
}

.operators-subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #323232;

    padding: 6px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}

.operators-stats {
    flex: 1;
    max-width: 630px;
}

.stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-box {
    flex: 1;
    background: var(--white);
    border: 1px solid #f1f5f9;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.stat-box.full {
    width: 100%;
}

.yellow-bar {
    width: 8px;
    height: 32px;
    background-color: #F8BD2D;
    border-radius: 3px;
    flex-shrink: 0;
}

.stat-info strong {
    display: block;
    font-size: 24px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-info span {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0px;
    vertical-align: middle;

    color: #323232;
}

.operators-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #1a1a2e;
    /* Dark navy from image */
    padding: 40px;
    border-radius: 32px;
    color: var(--white);
}

.testimonial-card p {
    font-weight: 400;
    font-size: 15px;
    line-height: 26.1px;
    letter-spacing: 0%;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.client-name {
    font-size: 15px;
    font-weight: 700;
    color: #F8BD2D;
    /* Yellow from image */
}



/* Comparison Table Section */
.comparison-section {
    padding: 100px 0;
    background-color: var(--white);
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-header h2 {

    margin-bottom: 12px;
}

.comparison-header p {
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #323232;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 77, 0, 0.15);
}

.table-row {
    display: flex;
    background-color: var(--primary);
    /* Bright orange */
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row.header {
    background-color: #92381f;
    /* Dark orange/brown header */
    border-bottom: none;
    color: #BDC8CD;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.6px;
    vertical-align: middle;
    text-transform: uppercase;

}

.table-row:last-child {
    border-bottom: none;
}

.cell {
    flex: 1;
    padding: 30px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cell:last-child {
    border-right: none;
}

.cell.highlight {
    background-color: rgba(0, 0, 0, 0.03);
    /* Subtle contrast for middle column */
    font-weight: 700;
}

.cell-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}



/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #1a1a1a;
    color: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}


.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #262626;
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: #303030;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    background-color: #303030;
}

.plus-icon,
.minus-icon {
    width: 26px;
    height: 26px;
    color: #FFFFFF
}

.minus-icon {
    display: none;
}

.faq-item.active .minus-icon {
    display: block;
}

.faq-item.active .plus-icon {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #303030;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 30px;
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    color: #BDC8CD;
    border-top: 1px solid #BDC8CD;


}

/* Solutions India Section */
.solutions-india {
    padding: 100px 0;
    background-color: #141414;
    color: var(--white);
    text-align: center;
}

.india-header h2 {
    margin-bottom: 30px;
}

.solutions-india .description-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 100%;
}

.solutions-india .side-line {
    flex: 0 0 100px;
    height: 1px;
    background-color: #313131;
}

.solutions-india p {
    color: #BDC8CD !important;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 1.4px;
    text-align: center;
    vertical-align: middle;

    margin: 0;
}

.cities-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.cities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    vertical-align: middle;

    color: var(--white);
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #fbbf24;
    border-radius: 50%;
}

.india-footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af !important;
}


/* Get Quote Section */
.get-quote {
    padding: 100px 0;
    background-color: var(--white);
}

.quote-grid {
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

.quote-info h2 {
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    vertical-align: middle;

    color: #323232;
    margin-bottom: 40px;
}

.quote-info h2 span {
    color: var(--primary);
}

.quote-info p {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 32.5px;
    letter-spacing: 0px;
    vertical-align: middle;

    color: #323232;
    margin-bottom: 40px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle.yellow {
    background-color: #fffbeb;
    color: #fbbf24;
}

.icon-circle.blue {
    background-color: #f0f9ff;
    color: #0ea5e9;
}

.contact-text .label {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #9ca3af;
    margin-bottom: 4px;
}

.contact-text strong {
    font-size: 18px;
    color: #111827;
}

.quote-form-wrap {
    position: relative;
}

.active-badge {
    position: absolute;
    top: -16px;
    right: -10px;
    background-color: #fcd34d;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #4b3e10;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.active-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.quote-form-card {
    background-color: #ff9f67;
    /* Peach/Light Orange */
    padding: 50px;
    border-radius: 32px;
}

.quote-form-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #323232;

    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #323232;

    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    background-color: #f97316;
    border: 2px solid #323232;
    color: var(--white);
    font-size: 16px;
    border-width: 0px 0px 2px 0px;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.quote-form-card .btn-yellow {
    width: 100%;
    padding: 18px;
    background-color: #facc15;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;

    color: #402D00;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.quote-form-card .btn-yellow:hover {
    background-color: #eab308;
    transform: scale(1.02);
}

/* Final CTA Section */
.final-cta {
    background: url('images/lbp/background-cta.webp');
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.final-cta h2 {
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -3px;
    text-align: center;
    vertical-align: middle;

    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 40px;
}

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

.final-cta .btn-outline {
    padding: 18px 36px;
    border: 2px solid #374151;
    background: transparent;
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.final-cta .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}



/* Footer styles removed to avoid overriding shared site footer */