
/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');*/
/* font family start*/
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --lime: #C8FF00; --black: #000; --white: #fff; --dark-bg: #1A1A1A;
  --card-dark: #2A2A2A; --beige: #F0EBDF; --muted: #999; --peach: #FDDCB5;
  --green-badge: #4ADE80; --pink-badge: #F472B6; --teal-badge: #2DD4BF; --orange-badge: #FB923C;
}
body { font-family: "Overused-medium"; background: var(--black); color: #fff; overflow-x: hidden; }

/* FLASH BAR */
.flash-bar { background: var(--lime); color: var(--black); text-align: center; padding: 10px 20px; font-size: 14px; font-weight: 500; }

/* HEADER */
.header { display: flex; align-items: center; justify-content: space-between; padding: 20px 70px; position: absolute; top: 40px; left: 0; right: 0; z-index: 100; }
.logo { width: 246px; height: 18px;  }
.nav-center { display: flex; align-items: center; gap: 32px; background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border-radius: 50px; padding: 14px 40px; border: 1px solid rgba(255,255,255,0.1); }
.nav-center a { color: #fff; text-decoration: none; font-size: 14px; opacity: 0.9; }
.nav-center a:hover { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.btn-login { color: #fff; background: none; border: none; font-size: 14px; cursor: pointer; font-weight: 500; }
.btn-started { background: #fff; color: var(--black); border: none; padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; }
.btn-started:hover { background: #e0e0e0; }
.custom-navbar {background-color: #000; }
.nav-text {color: #fff;}

/* HERO */
.hero { position: relative; top: -90px; width: 100%; height: 750px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/home-page/Banner-Image.png'); background-size: cover; background-position: center; background-repeat: no-repeat;}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 10; max-width: 800px; padding: 200px 70px 80px; }
.hero-content h1 { font-size: 50px; font-weight: 600; line-height: 0.92; letter-spacing: -0.02em; margin-bottom: 28px; }
.hero-content p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 560px; }
.btn-trial { display: inline-block; background: var(--lime); color: var(--black); padding: 18px 36px; border-radius: 50px; font-size: 16px; font-weight: 600; text-decoration: none; cursor: pointer; transition: transform 0.2s; }
.btn-trial:hover { transform: translateY(-1px); }

/* CLIENTS */
.clients { background: var(--black); padding: 40px 70px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.clients-track { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px; }
.logo-wrapper {width: 120px; height: 60px; display: flex; align-items: center; justify-content: center; }
.client-logo { max-width: 100%; max-height: 100%;object-fit: contain; opacity: 0.8; filter: brightness(0) invert(1); transition: opacity 0.3s ease;}
.client-logo:hover {opacity: 1; }

/* BUSINESS NEEDS */
.business-needs { background: var(--black); padding: 100px 70px 80px; }
.section-title { text-align: center; font-family: "Radwave"; font-size: 52px; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 60px; }
.needs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; padding: 0 80px;}
.need-card { display: flex; flex-direction: column; }
.need-card-img-wrapper {position: relative; width: 100%; height: 400px; border-radius: 24px; overflow: hidden; margin-bottom: 9px; }
.need-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.need-card-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0; 
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none; 
}
.need-card-body { padding: 0 10px; }
.need-card-label { font-size: 13px; text-transform: uppercase; color: #888; font-weight: 500; letter-spacing: 0.05em; margin-top: -10px; margin-bottom: 8px; }
.need-card-body h3 { font-size: 30px; font-weight: 500; margin-bottom: 12px; }
.need-card-body p { font-size: 16px; color: #aaa; line-height: 1.5; margin-bottom: 20px; max-width: 450px; }
.learn-more { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; text-decoration: underline; text-underline-offset: 4px; font-weight: 500; }

/* DIFFICULTIES */
.difficulties { background: var(--black); padding: 100px 70px 80px; }
/*.difficulties .section-title { color: var(--peach); font-style: italic; font-weight: 500; }*/
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.diff-card { background: var(--card-dark); border-radius: 20px; padding: 32px 28px 20px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;}
.diff-badge { display: inline-block; padding: 5px 14px; border-radius: 20px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; width: fit-content; }
.diff-badge.green { background: var(--green-badge); color: var(--black); }
.diff-badge.pink  { background: var(--pink-badge); color: var(--black); }
.diff-badge.teal  { background: var(--teal-badge); color: var(--black); }
.diff-badge.orange{ background: var(--orange-badge); color: var(--black); }
.diff-card h3 { font-size: 28px; font-weight: 600; line-height: 1.15; margin-bottom: 16px; }
.diff-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 24px; }
.diff-card-img { height: 220px; object-fit: cover; object-position: top; border-radius: 12px; display: block; }

/*CHALLENGES*/
.challenges-section {
    background-color: #000; 
    padding: 0px 0px;      
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.challenges-section img {    
    width: 100%;           
    height: auto;          
    display: block;
    mix-blend-mode: screen; 
}
@media (max-width: 768px) {
    .challenges-section {
        padding: 40px 20px;
    }
}

/*FEATURES*/
.features-section {
    background-color: var(--bg-black);
    color: white;
    padding: 100px 50px;
    font-family: sans-serif;
    text-align: center;
}
.features-header h2 {
    margin-bottom: 15px;
}
.features-header p {
    color: #888;
    font-size: 18px;
    margin-bottom: 80px;
}
.features-grid {
    display: flex;
    flex-wrap: wrap;      
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.features-card {
    /* (100% / 4 columns) - (gap / adjustment) */
    flex: 0 1 calc(25% - 30px); 
    min-width: 250px; /* Prevents cards from getting too squashed */
    
    /* Keep your existing card styles (bg, border-radius, etc.) here */
    background: #111;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    height: 300px;
    display: flex ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.features-card:nth-child(1),
.features-card:nth-child(4) {
    margin-top: 100px;
}
.features-card:nth-child(6) {
    margin-top: -100px;
}
.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Glowing radial gradient for that "orb" look */
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}
.icon-box .img {
    width: 80%;
    height: auto;
}
.features-card p {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ccc;
}

/*SYSTEM OVERVIEW*/
.system-overview {
    background-color: #FFFCF3;
    padding: 100px 5%;
    text-align: center;
}
.system-header h2 {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #000;
}
.system-header p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 60px;
    color: #000;
}
.system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.system-card {
    background-color: #F0ECE1;
    border-radius: 12px;
    padding: 15px; 
    text-align: left;
    display: flex;
    flex-direction: column;
}
.card-img-box {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}
.card-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
}
@media (max-width: 1024px) {
    .system-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .system-grid {
        grid-template-columns: 1fr;
    }
    .system-header h2 {
        font-size: 32px;
    }
}

/*INDIAN COMMMERCE*/
.indian-commerce {
    background-color: #000;
    color: #fff;
    display: flex;
    padding: 80px 5%;
    gap: 50px;
}
.commerce-left {
    flex: 1;
}
.sticky-content {
    position: sticky;
    top: 100px; /* Keeps the text visible as you scroll the cards */
}
.sticky-content h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 24px;
}
.sticky-content p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 400px;
}
.btn-primary {
    display: inline-block;
    background-color: #d4ff70; /* Lime green from image */
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}
.commerce-right {
    flex: 1.5;
}
.commerce-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.commerce-card {
    background-color: #f1efea; /* Off-white card background */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.card-image {
    width: 100%;
    height: 250px;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-info {
    padding: 24px;
    color: #000; /* Text inside cards is black */
}
.card-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.card-info p {
    font-size: 14px;
    line-height: 1.4;
    color: #444;
}
@media (max-width: 1024px) {
    .indian-commerce {
        flex-direction: column;
    }

    .sticky-content {
        position: relative;
        top: 0;
        margin-bottom: 50px;
    }

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

/*OPERATIONS*/
.operations-section {
    background-color: #FFFCF3;
    padding: 100px 5%;
    text-align: center;
    overflow: hidden;
}
.ops-header h2 {
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
    color: #000;
}

.ops-header p {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    color: #000;
}

.ops-header p span {
    font-weight: 700;
    font-style: italic;
}

.btn-demo {
    display: inline-block;
    background-color: #d4ff70;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #000;
    margin-bottom: 80px;
}
.ops-slider {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}
.ops-slider::before {
    display: none;
}

.ops-item {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    text-align: left;
}
.ops-item::before {
    content: "";
    position: absolute;
    top: 35px;          
    width: 100%;       
    height: 2px;
    border-top: 2px dashed #ccc;
    z-index: -1;       
}

/* 3. Hide the line on the very last item (EOD) */
.owl-item:last-child .ops-item::before {
    display: none;
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background-color: #fff; /* Fallback */
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.icon-box img {
    width: 50% !important;
    height: auto;
}
.blue-bg { background-color: #e3f2fd; color: #1e88e5; }
.red-bg { background-color: #fbe9e7; color: #e53935; }
.purple-bg { background-color: #f3e5f5; color: #8e24aa; }
.green-bg { background-color: #e8f5e9; color: #43a047; }
.pink-bg { background-color: #eed1e5; color: #d81b60; }

.timestamp {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
}

.ops-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #000;
}

.ops-content p {
    font-size: 14px;
    color: #000;
    line-height: 1.5;
}


/* Specific Orb Colors (Simulating the image) */
.cyan { background-color: #0e3a40; box-shadow: 0 10px 30px rgba(14, 58, 64, 0.5); }
.gold { background-color: #3d3119; box-shadow: 0 10px 30px rgba(61, 49, 25, 0.5); }
.blue { background-color: #1a2a40; box-shadow: 0 10px 30px rgba(26, 42, 64, 0.5); }
.green { background-color: #1e2d24; box-shadow: 0 10px 30px rgba(30, 45, 36, 0.5); }
.red { background-color: #3d1a1a; box-shadow: 0 10px 30px rgba(61, 26, 26, 0.5); }
.purple { background-color: #2a1a40; box-shadow: 0 10px 30px rgba(42, 26, 64, 0.5); }
.silver { background-color: #2e2e2e; box-shadow: 0 10px 30px rgba(46, 46, 46, 0.5); }

/* Responsive */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-card:nth-child(even) { margin-top: 0px; }
  .features-card:nth-child(odd) { margin-top: 0; }
}

/* MANAGE PLATFORM */
.manage-platform { background: var(--beige); padding: 100px 70px 80px; color: var(--black); }
.manage-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 50px; }
.manage-header h2 { font-size: 52px; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; max-width: 500px; }
.manage-right { display: flex; flex-direction: column; align-items: flex-end; gap: 28px; max-width: 500px; }
.manage-right p { font-size: 16px; line-height: 1.5; color: #444; text-align: right; }
.manage-arrows { display: flex; gap: 12px; }
.manage-arrows button { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--black); background: none; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.manage-arrows button:hover { background: var(--black); color: #fff; }
.manage-grid { display: block; }
.manage-card { background: rgba(0,0,0,0.04); border-radius: 20px; overflow: hidden; padding: 20px; }
.manage-card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 14px; margin-bottom: 20px; display: block; }
.manage-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.manage-card p { font-size: 13px; color: #666; line-height: 1.45; }

/* GROWTH */
.growth-section { background: var(--black); padding: 100px 70px; }
.growth-section h2 { font-size: 52px; font-weight: 500; margin-bottom: 16px; }
.growth-section .sub { font-size: 16px; color: var(--muted); max-width: 600px; line-height: 1.6; margin-bottom: 60px; }
.growth-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.growth-card { background: var(--dark-bg); border-radius: 20px; padding: 32px 24px; }
.growth-card:hover { background: #222; }
.growth-num { font-size: 14px; font-weight: 700; color: var(--lime); margin-bottom: 16px; }
.growth-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.growth-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* CTA */
.cta-section { background: var(--dark-bg); border-radius: 30px; margin: 0 40px 80px; padding: 100px 80px; text-align: center; }
.cta-section h2 { font-size: 52px; font-weight: 600; margin-bottom: 20px; }
.cta-section .sub { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto 40px; line-height: 1.6; }

/* FOOTER */
.footer { background: var(--black); padding: 60px 70px 30px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 40px; }
.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }

/* APPOINTMENT WIDGET */
.appt-widget { position: fixed; bottom: 30px; right: 30px; background: rgba(40,40,40,0.95); backdrop-filter: blur(10px); border-radius: 16px; padding: 20px 24px; max-width: 260px; z-index: 1000; border: 1px solid rgba(255,255,255,0.1); }
.appt-widget .close { position: absolute; top: 10px; right: 12px; background: none; border: none; color: #999; font-size: 18px; cursor: pointer; }
.appt-widget h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.appt-widget p { font-size: 12px; color: var(--muted); margin-bottom: 12px; line-height: 1.4; }
.appt-widget a { font-size: 11px; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; text-decoration: underline; }

@media (max-width: 1024px) {
    .needs-grid, .diff-grid { grid-template-columns: 1fr 1fr; }
    .manage-grid, .growth-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1, .section-title, .manage-header h2, .growth-section h2, .cta-section h2 { font-size: 38px; }
}
@media (max-width: 768px) {
    .header { padding: 16px 24px; }
    .nav-center { display: none; }
    .bottom-fixed-btn {display: none !important;}
    .logo {height: 13px; width: 154px; }
    .hero-bg { background-position: right; background-repeat: no-repeat; padding-left: 580px; }
    .hero-content { padding: 160px 24px 60px; padding-top: 44vh; }
    .hero-content h1 { font-size: 36px; }
    .business-needs, .difficulties, .manage-platform, .growth-section { padding: 60px 24px; }
    .needs-grid, .diff-grid, .manage-grid, .growth-grid { grid-template-columns: 1fr; }
    .needs-grid {padding: 0px;}
    .manage-header { flex-direction: column; gap: 20px; }
    .cta-section { margin: 0 16px 60px; padding: 60px 24px; }
    .clients-track { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .features-section {padding: 100px 20px;}
    .features-grid {display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 0px;}
    .features-card {min-width: unset;}
    .footer {overflow-x: hidden;}
}
@media (max-width: 410px) {
    .logo {height: 13px; width: 140px; }
}