/* ========================================
   ESE Landing Page - Premium Modern CSS
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #002b12;
    --primary-light: #003d1a;
    --accent: #007205;
    --accent-2: #00a308;
    --accent-3: #f5c518;
    --gradient-1: linear-gradient(135deg, #007205, #00a308, #f5c518);
    --gradient-2: linear-gradient(135deg, #002b12, #003d1a);
    --gradient-3: linear-gradient(135deg, #007205 0%, #00a308 50%, #f5c518 100%);
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-light: rgba(255, 255, 255, 0.95);
    --text-primary: #f8fafc;
    --text-secondary: #a3c4b0;
    --text-dark: #1a1a2e;
    --surface: #002b12;
    --surface-2: #f7f9fc;
    --card-bg: rgba(0, 55, 22, 0.6);
    --card-bg-light: rgba(255, 255, 255, 0.95);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(0, 114, 5, 0.12);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background: var(--primary);
    overflow-x: hidden;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

p {
    line-height: 1.7;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-padding {
    padding: 70px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-title {
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 560px;
    font-size: 1.05rem;
}

.text-gradient {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Buttons ---------- */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-1);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00a308, #f5c518, #007205);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 114, 5, 0.4);
    color: white;
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.4s;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* ---------- Topbar ---------- */
.topbar {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-secondary);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
}

.topbar i {
    margin-right: 6px;
    color: var(--accent);
}

.topbar a i {
    color: #fff;
}

.topbar a:hover {
    color: var(--accent);
}

/* ---------- Navbar ---------- */
.navbar {
    background: rgba(0, 43, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(0, 43, 18, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 42px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-secondary) !important;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
    background: var(--glass);
}

.navbar-toggler {
    border: 1px solid var(--glass-border);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 114, 5, 0.2), transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.1), transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

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

    50% {
        transform: translate(30px, -30px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.hero-stat h3 {
    font-size: 2rem;
    margin-bottom: 4px;
}

.hero-stat p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* Hero visual - floating product cards */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 450px;
}

.float-card {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 28px;
    width: 220px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.float-card:hover {
    transform: translateY(-8px) scale(1.03) !important;
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.float-card .fc-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: white;
}

.float-card h5 {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.float-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.fc-1 {
    top: 0;
    left: 10%;
    animation: bobble 6s ease-in-out infinite;
}

.fc-2 {
    top: 30px;
    right: 5%;
    animation: bobble 7s ease-in-out infinite 1s;
}

.fc-3 {
    bottom: 60px;
    left: 5%;
    animation: bobble 8s ease-in-out infinite 0.5s;
}

.fc-4 {
    bottom: 20px;
    right: 10%;
    animation: bobble 6.5s ease-in-out infinite 1.5s;
}

.fc-1 .fc-icon {
    background: linear-gradient(135deg, #007205, #00a308);
}

.fc-2 .fc-icon {
    background: linear-gradient(135deg, #f5c518, #e6a800);
}

.fc-3 .fc-icon {
    background: linear-gradient(135deg, #00a308, #00c410);
}

.fc-4 .fc-icon {
    background: linear-gradient(135deg, #d4a017, #007205);
}

@keyframes bobble {

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

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

/* ---------- Marquee (Trusted By) ---------- */
.marquee-section {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.15);
}

.marquee-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-right: 40px;
    white-space: nowrap;
    font-weight: 600;
}

.marquee-track {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    align-items: center;
    animation: marquee 30s linear infinite;
}

.marquee-inner img {
    height: 55px;
    margin: 0 10px;
    border-radius: 5px;
    /* filter: grayscale(1) brightness(0.6) invert(1);
    opacity: 0.4; */
    transition: all 0.4s;
}

.marquee-inner img:hover {
    opacity: 0.8;
    filter: grayscale(0) brightness(1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---------- USP / Why Choose ---------- */
.usp {
    background: var(--surface-2);
    position: relative;
}

.usp .section-label {
    color: var(--accent);
}

.usp .section-title,
.usp .section-desc {
    color: var(--text-dark);
}

.usp .section-desc {
    color: #555;
}

.usp-card {
    padding: 30px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid #e8ecf1;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s;
}

.usp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 114, 5, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.usp-card:hover::before {
    opacity: 1;
}

.usp-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    background: rgba(0, 114, 5, 0.08);
    color: var(--accent);
}

.usp-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-dark);
}

.usp-card p {
    color: #666;
    font-size: 0.88rem;
    margin: 0;
}

/* ---------- About / Story ---------- */
.about {
    background: var(--surface-2);
    position: relative;
    overflow: hidden;
}

.about .section-label {
    color: var(--accent);
}

.about .section-title {
    color: var(--text-dark);
}

.about p,
.about .check-item {
    color: #444;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 114, 5, 0.06), transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    border-radius: var(--radius);
    transition: transform 0.6s;
}

.about-img-wrap:hover img {
    transform: scale(1.03);
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 114, 5, 0.15), transparent);
    border-radius: var(--radius);
}

.about .check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.92rem;
}

.about .check-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(0, 114, 5, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ---------- Products / Services ---------- */
.services {
    background: var(--primary);
    position: relative;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* .product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 114, 5, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
} */

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 114, 5, 0.3);
    box-shadow: var(--shadow-glow);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    color: white;
}

.pi-crm {
    background: linear-gradient(135deg, #007205, #00a308);
}

.pi-courier {
    background: linear-gradient(135deg, #f5c518, #e6a800);
}

.pi-sms {
    background: linear-gradient(135deg, #00a308, #00c410);
}

.pi-vcard {
    background: linear-gradient(135deg, #d4a017, #007205);
}

.pi-ecom {
    background: linear-gradient(135deg, #00a308, #f5c518);
}

.pi-custom {
    background: linear-gradient(135deg, #007205, #003d1a);
}

.product-card h5 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 0px;
}

.product-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--glass);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    margin-right: 6px;
    margin-bottom: 6px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6cac86;
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 16px;
    transition: all 0.3s;
}

.product-link:hover {
    gap: 14px;
   color: #6cac86;
}

/* ---------- Features / Dev Features ---------- */
.features {
    background: var(--surface-2);
    position: relative;
    overflow: hidden;
}

.features .section-label {
    color: var(--accent);
}

.features .section-title {
    color: var(--text-dark);
}

.features .section-desc {
    color: #555;
}

.features::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 114, 5, 0.08), transparent 70%);
    border-radius: 50%;
}

.feature-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
    transition: all 0.4s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 114, 5, 0.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 16px;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h5 {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-card p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* ---------- Stats Section ---------- */
.stats {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0.05;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-item h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: linear-gradient(135deg, #045107, #0e6312, #f5c518);;
    border-radius: var(--radius);
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-box h2 {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.cta-box .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.cta-box .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ---------- Footer ---------- */
footer {
    background: var(--primary);
    color: var(--text-secondary);
    padding: 60px 0 14px;
    border-top: 1px solid var(--glass-border);
}

footer h4 {
    color: var(--text-primary);
    font-weight: 800;
}

footer h6 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

footer a {
    color: var(--text-secondary);
}

footer a:hover {
    color: var(--accent);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-right: 10px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    font-size: 0.9rem;
}

.footer-newsletter .input-group {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.footer-newsletter input {
    background: transparent !important;
    border: none !important;
    color: var(--text-primary) !important;
    padding: 14px 18px;
}

.footer-newsletter input::placeholder {
    color: var(--text-secondary);
}

.footer-newsletter button {
    background: var(--gradient-1);
    border: none;
    color: white;
    padding: 14px 24px;
    font-weight: 600;
}

.footer-newsletter button:hover {
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 14px;
    /* margin-top: 40px; */
}

.footer-bottom small {
    color: var(--text-secondary);
    font-size: 0.82rem;
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero-btns {
        margin-bottom: 36px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .cta-box {
        padding: 36px 20px;
    }

    .floating-cards {
        height: 300px;
    }

    .navbar-collapse {
        background: rgba(0, 43, 18, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 var(--radius) var(--radius);
        padding: 16px 20px;
        margin-top: 8px;
        border: 1px solid var(--glass-border);
        border-top: none;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        border-radius: 10px;
        margin: 2px 0;
    }

    .navbar-nav .btn-premium {
        margin-top: 10px;
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .features .row>[class*="col-lg-5"],
    .features .row>[class*="col-lg-7"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about .row {
        flex-direction: column;
    }

    .about .col-lg-6 {
        width: 100%;
    }

    footer .col-lg-4,
    footer .col-lg-2 {
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .topbar {
        font-size: 0.75rem;
        padding: 6px 0;
    }

    .topbar .d-flex.gap-4 {
        gap: 12px !important;
    }

    .navbar-brand img {
        height: 34px;
    }

    .navbar {
        padding: 8px 0;
    }

    .hero {
        padding: 40px 0 30px;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-btns .btn-premium,
    .hero-btns .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        padding-top: 24px;
    }

    .hero-stat {
        flex: 1;
        text-align: center;
        min-width: 0;
    }

    .hero-stat h3 {
        font-size: 1.4rem;
    }

    .hero-stat p {
        font-size: 0.72rem;
    }

    .section-padding {
        padding: 36px 0;
    }

    h2 {
        font-size: 1.4rem;
    }

    .section-label {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    /* Marquee */
    .marquee-section {
        padding: 18px 0;
    }

    .marquee-label {
        font-size: 0.65rem;
        margin-right: 20px;
    }

    .marquee-inner img {
        height: 20px;
        margin: 0 20px;
    }

    /* USP Cards */
    .usp-card {
        padding: 22px;
    }

    .usp-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .usp-card h4 {
        font-size: 0.95rem;
    }

    .usp-card p {
        font-size: 0.82rem;
    }

    /* Product Cards */
    .product-card {
        padding: 24px;
    }

    .product-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .product-card h4 {
        font-size: 1rem;
    }

    .product-card p {
        font-size: 0.82rem;
    }

    .product-tag {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    /* Feature Cards */
    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .feature-card h5 {
        font-size: 0.92rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }

    /* Stats */
    .stat-item {
        padding: 16px 8px;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    /* About */
    .about-img-wrap {
        margin-bottom: 20px;
    }

    .about .check-item {
        font-size: 0.85rem;
        margin-bottom: 10px;
        gap: 10px;
    }

    .about .check-icon {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .about .section-desc {
        font-size: 0.88rem;
    }

    .about .btn-premium {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* CTA */
    .cta-section {
        padding: 40px 0;
    }

    .cta-box {
        padding: 30px 20px;
        border-radius: 14px;
    }

    .cta-box h2 {
        font-size: 1.3rem;
    }

    .cta-box p {
        font-size: 0.85rem;
    }

    .cta-box .btn-cta {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        padding: 40px 0 20px;
    }

    footer .col-lg-4.footer-brand {
        margin-bottom: 24px;
    }

    footer .col-6 {
        margin-bottom: 20px !important;
    }

    footer h6 {
        font-size: 0.85rem;
        margin-bottom: 14px !important;
    }

    footer ul li {
        margin-bottom: 8px;
    }

    footer ul li a {
        font-size: 0.82rem;
    }

    .footer-brand p {
        font-size: 0.82rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        margin-right: 8px;
    }

    .footer-newsletter input {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .footer-newsletter button {
        padding: 12px 18px;
        font-size: 0.82rem;
    }

    .footer-bottom {
        padding-top: 16px;
        margin-top: 20px;
    }

    .footer-bottom small {
        font-size: 0.72rem;
    }
}

/* Small phones */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-stat h3 {
        font-size: 1.2rem;
    }

    .hero-stat p {
        font-size: 0.68rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .btn-premium {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .btn-outline {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .product-card {
        padding: 20px;
    }

    .cta-box {
        padding: 24px 16px;
    }

    .cta-box h2 {
        font-size: 1.15rem;
    }
}

.develop-mt {
    margin-bottom: 42px;
}

.topbar span,
.topbar span i {
    color: #fff;
}
.icon-heading{
    display: flex;
    gap: 20px ;
}
.topbar span a{
    color: #fff;
}
.quick_contact a {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 18px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 26px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: transform 0.5s ease;
}
.qwhtsapp {
  bottom: 40px;
  background-color: #25d366;
}
.qcall {
  bottom: 100px;
  background-color: #2196f3;
}
.quick_contact_icon {
  margin-top: 12px;
}
.quick_contact a:hover {
  transform: scale(1.1);
}

@media(max-width:768px){
    .qcall {
  bottom: 85px;
}
.qwhtsapp {
  bottom: 25px;}
}
.contact-links li{
    display: flex;
    gap: 5px;
    align-items: baseline;
}