/* :root {
    --primary: #2E7D32;
    --secondary: #4CAF50;
    --accent: #81C784;
    --light: #E8F5E9;
    --dark: #1B5E20;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fa;
}

.header {
    background: var(--primary);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}
 /*.hero {
            padding: 150px 5% 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary));
            color: #ffffff;
            text-align: center;
            position: relative;
            overflow: hidden;
            
        }
         */










         /* new styles (redesign section) */



         :root {
            --primary: #2E7D32;
            --secondary: #4CAF50;
            --accent: #81C784;
            --light: #E8F5E9;
            --dark: #1B5E20;
        }

        * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
}
 


       
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

/* Modified class name: .header ➝ .headerx */
.headerx {
  background: #ffffff;
  padding: 1rem 5%;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* .nav ➝ .navx */
.navx {
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  color: #414141; */

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white; /* or your navbar bg */
  z-index: 1000;
  padding: 1rem 5%;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .logo ➝ .logox */
.logox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.logox i {
  color: #18931d;
}

/* .nav-links ➝ .nav-linksx */
.nav-linksx {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-linksx a {
  color: #414141;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

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

/* .nav-toggle ➝ .nav-togglex */
.nav-togglex {
  display: none;
  background: none;
  border: none;
  color: #414141;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* .hero-desktop ➝ .hero-desktopx (and others) */
.hero-desktopx,
.hero-tabletx,
.hero-mobilex {
  display: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-togglex {
    display: block;
  }

  .nav-linksx {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-linksx.active {
    display: flex;
  }

  .nav-linksx a {
    width: 100%;
    padding: 0.75rem;
    justify-content: center;
    border-radius: 5px;
  }

  .nav-linksx a:hover {
    background: var(--secondary);
  }
}

        /* app section  */

 :root {
            --primary: #22c55e;
            --secondary: #16a34a;
            --accent: #059669;
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #64748b;
            --white: #ffffff;
            --gradient: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #059669 100%);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            min-height: 100vh;
            padding: 2rem 0;
        }

        .apps-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 2rem;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInDown 0.8s ease-out;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: -1px;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.3rem;
            color: var(--gray);
            font-weight: 400;
            margin-top: 1.5rem;
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .app-card {
            background: var(--white);
            border-radius: 24px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(34, 197, 94, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .app-card:nth-child(1) { animation-delay: 0.1s; }
        .app-card:nth-child(2) { animation-delay: 0.2s; }
        .app-card:nth-child(3) { animation-delay: 0.3s; }

        .app-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 24px;
        }

        .app-card:hover::before {
            opacity: 0.05;
        }

        .app-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(34, 197, 94, 0.2);
            border-color: rgba(34, 197, 94, 0.3);
        }

        .app-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
        }

        .app-icon.vendor-logo {
            background: white;
            border: 2px solid #e5e7eb;
        }

        .app-icon.delivery-logo {
            background: #2d8e5f;
        }

        .app-icon.customer-logo {
            background: #25D366;
        }

        .kartokart-logo-svg {
            width: 70%;
            height: 70%;
        }

        .app-card:hover .app-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4);
        }

        .app-icon i {
            font-size: 2.5rem;
            color: var(--white);
            z-index: 2;
            position: relative;
        }

        .app-icon::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient);
            border-radius: 26px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .app-card:hover .app-icon::after {
            opacity: 0.3;
        }

        .app-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 2;
        }

        .app-card p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.6;
            font-weight: 400;
            position: relative;
            z-index: 2;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            background: var(--gradient);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 60px;
            height: 60px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 40px;
            height: 40px;
            top: 70%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 10%;
            animation-delay: 4s;
        }

        .cta-section {
            text-align: center;
            margin-top: 4rem;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .download-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gradient);
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
        }

        .download-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(90deg);
            }
            50% {
                transform: translateY(-10px) rotate(180deg);
            }
            75% {
                transform: translateY(-30px) rotate(270deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.1;
            }
            50% {
                opacity: 0.2;
            }
        }

        @media (max-width: 768px) {
            .apps-section {
                padding: 3rem 1rem;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .section-title p {
                font-size: 1.1rem;
            }

            .apps-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .app-card {
                padding: 2rem 1.5rem;
            }

            .app-icon {
                width: 80px;
                height: 80px;
            }

            .app-icon i {
                font-size: 2rem;
            }

            .app-card h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .section-title h2 {
                font-size: 1.8rem;
            }

            .app-card {
                padding: 1.5rem 1rem;
            }

            .app-icon {
                width: 70px;
                height: 70px;
            }

            .app-icon i {
                font-size: 1.8rem;
            }
        }

        /* Loading animation */
        .loading {
            opacity: 0;
            transform: translateY(20px);
            animation: loadIn 0.8s ease-out forwards;
        }

        @keyframes loadIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Interactive highlight effect */
        .app-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s ease;
        }

        .app-card:hover::after {
            left: 100%;
        }
/* ending new app section */



        /* .apps-section {
            padding: 4rem 5%;
            background: var(--light);
            font-family: 'Poppins', sans-serif;
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .app-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .app-card:hover {
            transform: translateY(-10px);
        }

        .app-icon {
            width: 80px;
            height: 80px;
            background: var(--light);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .app-icon i {
            font-size: 2rem;
            color: var(--primary);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        } */
/* endiin old app section here  */
        .features {
            padding: 4rem 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        /* footer {
            background: var(--dark);
            color: white;
            padding: 4rem 5%;
            margin-top: 4rem;
        } */

        /* whatsapp float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: var(--shadow-lg);
            z-index: 999;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1) translateY(-5px);
            background-color: #1ebe5d;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .chat-widget .fa-robot {
            color: green;
            padding: auto;
        }

        .chat-widget {
            color: #17680f;
            font-weight: bold;
            font-size: 18px;

        }

        .product-screenshot img {
            max-width: 220%;
            height: 600px;
            border-radius: 10px;

        }

        /* new head section  */

        .product-screenshot {
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            max-width: 100%;
        }

        .product-screenshot img {
            width: 100%;
            height: auto;
            max-height: 600px;
            object-fit: contain;
            display: block;
            margin: 0 auto;
        }

        /* Adjustments for different screen sizes */
        @media (max-width: 991px) {
            .product-screenshot img {
                max-height: 500px;
            }
        }

        @media (max-width: 767px) {
            .product-screenshot img {
                max-height: 400px;
            }
        }

        @media (max-width: 575px) {
            .product-screenshot img {
                max-height: 350px;
            }
        }

        .qc-hero {
            padding: 100px 0;
            background-color: #fff;
            position: relative;
            overflow: hidden;
        }

        .qc-hero-content {
            padding-right: 40px;
        }

        /* Typography */
        .qc-hero-subtitle {
            color: #17680f;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            margin-top: 25px;
        }

        .qc-hero-title {
            color: #17680f;
            font-weight: 800;
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 0.5rem;
        }

        .qc-hero-highlight {
            color: #17680f;
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1;
            margin-bottom: 1.5rem;
        }

        .qc-hero-description p {
            font-size: 1.1rem;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            color: #333;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Features */
        .qc-hero-features {
            margin-bottom: 2.5rem;
        }

        .qc-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: #17680f;
            font-weight: 600;
        }

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

        /* CTA Button */
        .whatsapp-cta-btn {
            display: inline-block;
            padding: 15px 50px;
            font-size: 1.1rem;
            font-weight: 600;
            background-color: #25D366;
            color: white;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            border: 2px solid transparent;
        }

        .whatsapp-cta-btn:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(18, 140, 126, 0.4);
        }

        .whatsapp-cta-btn:active {
            transform: translateY(0);
        }

        /* Feature List Styling */
        .qc-hero-features {
            margin: 2rem 0;
            width: 100%;
        }

        .qc-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.8rem 1.2rem;
            background: rgba(23, 104, 15, 0.05);
            border-radius: 8px;
            width: 100%;
            max-width: 400px;
            transition: all 0.3s ease;
        }

        .qc-feature-item:hover {
            background: rgba(23, 104, 15, 0.1);
            transform: translateX(5px);
        }

        .qc-feature-icon {
            margin-right: 12px;
            font-size: 1.2rem;
            color: #17680f;
            min-width: 24px;
            text-align: center;
        }

        .qc-feature-item span {
            font-size: 1.1rem;
            font-weight: 500;
            color: #17680f;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Checkbox styling */
        .qc-feature-item input[type="checkbox"] {
            margin-right: 12px;
            accent-color: #17680f;
            width: 18px;
            height: 18px;
            min-width: 18px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .qc-feature-item {
                max-width: 100%;
                padding: 0.6rem 1rem;
            }

            .qc-feature-item span {
                white-space: normal;
                overflow: visible;
                text-overflow: clip;
            }
        }

        @media (max-width: 480px) {
            .qc-feature-item {
                font-size: 1rem;
            }

            .qc-feature-icon {
                font-size: 1rem;
            }
        }

        /* Hero Image */
        .qc-hero-image-wrapper {
            position: relative;
        }

        .qc-hero-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }

        /* Responsive Adjustments */
        @media (max-width: 1199px) {
            .qc-hero-title {
                font-size: 2.5rem;
            }

            .qc-hero-highlight {
                font-size: 3rem;
            }
        }

        @media (max-width: 991px) {
            .qc-hero {
                padding: 80px 0;
            }

            .qc-hero-content {
                padding-right: 0;
                text-align: center;
                margin-bottom: 40px;
            }

            .qc-hero-features {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }

            .qc-feature-item {
                margin-bottom: 0;
            }

            .qc-hero-image {
                max-height: 500px;
                width: auto;
                margin: 0 auto;
            }
        }

        @media (max-width: 767px) {
            .qc-hero-title {
                font-size: 2.2rem;
            }

            .qc-hero-highlight {
                font-size: 2.5rem;
            }

            .qc-hero-description p {
                font-size: 1rem;
            }

            .whatsapp-cta-btn {
                padding: 12px 40px;
                font-size: 1rem;
            }
        }

        @media (max-width: 575px) {
            .qc-hero {
                padding: 60px 0;
            }

            .qc-hero-title {
                font-size: 1.8rem;
            }

            .qc-hero-highlight {
                font-size: 2rem;
            }

            .qc-hero-features {
                flex-direction: column;
                align-items: flex-start;
                margin-left: 20px;
            }

            .qc-hero-image {
                max-height: 400px;
            }
        }

        /* Visibility Classes */
        .head-desktop {
            display: block;
        }

        .head-tablet,
        .head-mobile {
            display: none;
        }

        @media (max-width: 991px) and (min-width: 768px) {
            .head-desktop {
                display: none;
            }

            .head-tablet {
                display: block;
            }
        }

        @media (max-width: 767px) {

            .head-desktop,
            .head-tablet {
                display: none;
            }

            .head-mobile {
                display: block;
            }
        }

        /* end of head section */
        */ .whatsapp-demo {
            background: #f5fff5;
            padding: 40px 20px;
            text-align: center;
        }

        .whatsapp-demo h2 {
            color: #18931d;
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .whatsapp-demo p {
            color: #444;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .whatsapp-demo {
            background: #f5fff5;
            padding: 40px 20px;
            text-align: center;
        }

        .whatsapp-demo h2 {
            color: #18931d;
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .whatsapp-demo p {
            color: #333;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        /* ending */
        .Modern-Slider {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;

        }

        .Modern-Slider .item {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 100%;
            opacity: 0;
            transition: all 1s ease;
            padding-top: 100px;
        }

        .Modern-Slider .item.active {
            left: 0;
            opacity: 1;
            z-index: 1;
            animation: slideInOut 8s ease-in-out forwards;
        }

        .banner-side h2 {
            color: #1B5E20;
            font-weight: bold;
        }

        .banner-side h4 {
            color: #1B5E20;
        }

        .banner-side span {
            color: rgb(55, 205, 50);
        }

        @keyframes slideInOut {
            0% {
                transform: translateX(50%);
                opacity: 0;
            }

            10% {
                transform: translateX(0%);
                opacity: 1;
            }

            80% {
                transform: translateX(0%);
                opacity: 1;
            }

            100% {
                transform: translateX(-100%);
                opacity: 0;
            }
        }

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

body {
  font-family: 'Arial', sans-serif;
  background: white;
  min-height: 100vh;
}

.powered-badge {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 2rem auto;
  display: block;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .subtitle {
  font-size: 1.3rem;
  color: #374151;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-content .description {
  font-size: 0.95rem;                 /* smaller size */
  color: rgba(55, 65, 81, 0.75);      /* gray with ~75% opacity */
  font-weight: 400;                   /* regular weight for a muted feel */
  margin-bottom: 2.5rem;
}



.features-list {
  list-style: none;
  margin-bottom: 3rem;
}

/* UPDATED: stable, centered icon alignment */
.features-list li {
  display: flex;
  align-items: center;      /* centers icon and text on the cross-axis */
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: #374151;
  font-weight: 500;
}

.features-list li::before {
  content: "✓";
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;     /* center the check inside the circle */
  align-items: center;
  justify-content: center;
  flex-shrink: 0;           /* prevent icon squish on narrow widths */
  margin-right: 1rem;
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 1;           /* remove baseline offset */
}

.cta-button {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.cta-button::before {
  content: "💬";
  font-size: 1.3rem;
}

.hero-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  background: #f8f9fa;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.video-element {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .diverse-icons {
    font-size: 2rem;
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.floating-icon:nth-child(3) { top: 80%; left: 20%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.age-showcase {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #16a34a;
  font-weight: 600;
}

/* how it works */
               * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
        }

        .hw-main-section {
            padding: 80px 0;
            background: #ffffff;
            position: relative;
        }

        .hw-title-wrapper {
            text-align: center;
            margin-bottom: 60px;
        }

        .hw-subtitle {
            color: #18931d;
            font-size: 23px;
            font-weight: 500;
            margin-bottom: 3px;
            margin-top: 20px;
        }

        .hw-main-title {
            color: #333;
            font-weight: 500;
            font-size: 35px;
            margin: 0;
        }

        .hw-content-container {
            background-color: #f9f9f9;
            padding: 60px 20px;
            margin-top: 20px;
            font-family: sans-serif;
        }

        .hw-steps-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1000px;
            margin: auto;
        }

        .hw-step-item {
            flex: 1 1 200px;
            background: white;
            border-radius: 16px;
            padding: 30px 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(24, 147, 29, 0.1);
        }

        .hw-step-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(24, 147, 29, 0.15);
            border-color: rgba(24, 147, 29, 0.3);
        }

        .hw-step-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .hw-step-item:hover .hw-step-icon {
            background: linear-gradient(135deg, #18931d, #22c55e);
            transform: scale(1.1);
        }

        .hw-step-icon i {
            font-size: 28px;
            color: #18931d;
            transition: all 0.3s ease;
        }

        .hw-step-item:hover .hw-step-icon i {
            color: white;
        }

        .hw-step-heading {
            font-size: 1.2rem;
            color: #333;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .hw-step-text {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
            margin: 0;
        }

        .hw-action-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 25px;
            font-weight: 500;
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
            transition: all 0.3s ease;
            border: none;
            margin-top: 40px;
        }

        .hw-action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
            color: white;
            background: linear-gradient(135deg, #218838, #1e7e34);
        }

        .hw-action-btn i {
            color: #25D366;
            font-size: 24px;
            margin-top: 5px;
            padding-left: 5px;
        }

        /* Video Styling - Matching Original Dimensions */
        .hw-video-column {
            text-align: center;
        }

        .hw-demo-video {
            width: 80%;
            max-height: 560px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .hw-demo-video:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hw-step-item {
                position: relative;
                padding-top: 50px !important;
            }

            .hw-step-item[data-step]::before {
                content: attr(data-step);
                position: absolute;
                top: 10px;
                left: 50%;
                transform: translateX(-50%);
                background: #18931d;
                color: #fff;
                font-weight: bold;
                width: 35px;
                height: 35px;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 16px;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            }

            .hw-steps-wrapper {
                flex-direction: column;
                gap: 20px;
            }

            .hw-step-item {
                flex: none;
                max-width: 100%;
            }

            .hw-main-title {
                font-size: 28px;
            }

            .hw-action-btn {
                font-size: 20px;
                padding: 12px 28px;
            }

            .hw-demo-video {
                width: 95%;
                max-height: 300px;
            }

            .hw-content-container {
                padding: 40px 15px;
            }
        }

        /* Desktop Enhancement */
        @media (min-width: 769px) {
            .hw-steps-wrapper {
                position: relative;
            }

            .hw-steps-wrapper::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 10%;
                right: 10%;
                height: 2px;
                background: linear-gradient(90deg, transparent, #e5e7eb 20%, #e5e7eb 80%, transparent);
                z-index: 0;
            }

            .hw-step-item {
                position: relative;
                z-index: 1;
            }

            .hw-step-item::after {
                content: attr(data-step);
                position: absolute;
                top: -15px;
                right: 15px;
                background: linear-gradient(135deg, #18931d, #22c55e);
                color: white;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 700;
                font-size: 14px;
                box-shadow: 0 4px 12px rgba(24, 147, 29, 0.3);
            }
        }

        /* Animation Effects */
        .hw-step-item {
            animation: hw-fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .hw-step-item:nth-child(1) { animation-delay: 0.1s; }
        .hw-step-item:nth-child(2) { animation-delay: 0.2s; }
        .hw-step-item:nth-child(3) { animation-delay: 0.3s; }
        .hw-step-item:nth-child(4) { animation-delay: 0.4s; }

        @keyframes hw-fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Improved Visual Hierarchy */
        .hw-container {
            max-width: 1200px;
        }

        .hw-row {
            align-items: flex-start;
        }

        /* Enhanced Icons */
        .fa-whatsapp { color: #25D366; }
        .fa-robot { color: #6366f1; }
        .fa-store { color: #f59e0b; }
        .fa-shipping-fast { color: #ef4444; }

        .hw-btn-center {
            text-align: center;
        }

        /* testimonial card */

        #testimonial {
            margin-top: 110px;
            padding: 60px 0;
            background: linear-gradient(135deg, #f8fffe 0%, #e6f7f1 100%);
            position: relative;
            overflow: hidden;
        }

        #testimonial::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="25" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="25" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            pointer-events: none;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            text-align: center;
            margin-bottom: 4rem;
            color: #33922a;
            position: relative;
            display: inline-block;
            width: 100%;
            text-shadow: 0 2px 4px rgba(51, 146, 42, 0.1);
            transition: all 0.3s ease;
        }

        .section-title:hover {
            transform: translateY(-2px);
            text-shadow: 0 4px 8px rgba(51, 146, 42, 0.2);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #33922a, #4caf50);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .section-title:hover::after {
            width: 120px;
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(51, 146, 42, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #33922a, #4caf50, #81c784);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 40px rgba(51, 146, 42, 0.15);
            border-color: #33922a;
        }

        .testimonial-card:hover::before {
            transform: scaleX(1);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            gap: 16px;
        }

        .avatar {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #33922a, #4caf50);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(51, 146, 42, 0.3);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .avatar {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 20px rgba(51, 146, 42, 0.4);
        }

        .details {
            flex: 1;
        }

        .details strong {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            display: block;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .testimonial-card:hover .details strong {
            color: #33922a;
        }

        .order-id {
            font-size: 12px;
            color: #7f8c8d;
            margin-bottom: 6px;
            font-weight: 500;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .rating .stars {
            font-size: 14px;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .rating .stars {
            transform: scale(1.1);
            filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
        }

        .tags {
            font-size: 10px;
            background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
            color: #33922a;
            padding: 4px 8px;
            border-radius: 12px;
            font-weight: 500;
            border: 1px solid rgba(51, 146, 42, 0.2);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .tags {
            background: linear-gradient(135deg, #33922a, #4caf50);
            color: white;
            transform: scale(1.05);
        }

        .testimonial-comment {
            color: #34495e;
            line-height: 1.6;
            margin-bottom: 16px;
            font-size: 14px;
            font-weight: 400;
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-comment::before {
            content: '"';
            position: absolute;
            top: -8px;
            left: -8px;
            font-size: 24px;
            color: #33922a;
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .testimonial-comment {
            color: #2c3e50;
        }

        .testimonial-card:hover .testimonial-comment::before {
            opacity: 0.6;
            transform: scale(1.2);
        }

        .testimonial-feedback {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .testimonial-feedback button {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 20px;
            padding: 6px 12px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: 500;
            color: #6c757d;
        }

        .testimonial-feedback button:hover {
            background: #33922a;
            color: white;
            border-color: #33922a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(51, 146, 42, 0.2);
        }

        .testimonial-feedback button:first-child {
            background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
            color: #33922a;
            border-color: rgba(51, 146, 42, 0.2);
        }

        .testimonial-feedback button:first-child:hover {
            background: linear-gradient(135deg, #33922a, #4caf50);
        }

        /* Container improvements */
        .container {
            position: relative;
            z-index: 1;
        }

        /* Responsive Design */
        @media (max-width: 991.98px) {
            #testimonial {
                margin-top: 80px;
                padding: 50px 0;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 3rem;
            }

            .testimonial-card {
                padding: 20px;
                margin-bottom: 20px;
            }

            .avatar {
                width: 44px;
                height: 44px;
                font-size: 16px;
            }
        }

        @media (max-width: 767.98px) {
            #testimonial {
                margin-top: 60px;
                padding: 40px 0;
            }

            .section-title {
                font-size: 1.75rem;
                margin-bottom: 2.5rem;
            }

            .testimonial-card {
                padding: 18px;
                margin-bottom: 18px;
                border-radius: 12px;
            }

            .testimonial-header {
                gap: 12px;
            }

            .avatar {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .details strong {
                font-size: 15px;
            }

            .testimonial-comment {
                font-size: 13px;
            }

            .rating .stars {
                font-size: 12px;
            }

            .tags {
                font-size: 9px;
                padding: 3px 6px;
            }

            .testimonial-feedback button {
                padding: 5px 10px;
                font-size: 11px;
            }
        }

        @media (max-width: 575.98px) {
            #testimonial {
                margin-top: 40px;
                padding: 30px 0;
            }

            .section-title {
                font-size: 1.5rem;
                margin-bottom: 2rem;
            }

            .testimonial-card {
                padding: 16px;
                margin-bottom: 16px;
            }

            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
        }

        /* Animation for cards on scroll */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .testimonial-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .testimonial-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .testimonial-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .testimonial-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        /* Masonry-like layout for better visual appeal */
        @media (min-width: 992px) {
            .testimonial-column {
                display: flex;
                flex-direction: column;
            }
        }

        /* Horizontal scrolling for small screens */
        @media (max-width: 767.98px) {
            .testimonials-scroll-container {
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
                scrollbar-color: #33922a #f1f1f1;
                padding-bottom: 10px;
            }

            .testimonials-scroll-container::-webkit-scrollbar {
                height: 6px;
            }

            .testimonials-scroll-container::-webkit-scrollbar-track {
                background: #f1f1f1;
                border-radius: 3px;
            }

            .testimonials-scroll-container::-webkit-scrollbar-thumb {
                background: linear-gradient(90deg, #33922a, #4caf50);
                border-radius: 3px;
            }

            .testimonials-scroll-container::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(90deg, #2d7d26, #43a047);
            }

            .testimonials-scroll-wrapper {
                display: flex;
                gap: 16px;
                width: max-content;
                padding: 0 15px;
            }

            .testimonial-card-mobile {
                min-width: 280px;
                max-width: 320px;
                flex-shrink: 0;
            }

            /* Hide desktop grid on mobile */
            .row.desktop-grid {
                display: none;
            }
        }

        @media (min-width: 768px) {
            .mobile-scroll-section {
                display: none;
            }
        }

        /* vendure testimonial */


        .venturx-demo-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: #28a745;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.venturx-demo-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

     body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #f1f9f3;
      color: #333;
    }
    .venturx-testimonial-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      text-align: center;
      position: relative;
    }
    .venturx-testimonial-section h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .venturx-heading-bar {
      height: 4px;
      width: 160px;
      margin: 10px auto 40px;
      background: #4caf50;
    }
    .venturx-slide {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }
    .venturx-slide.active {
      display: flex;
      animation: fade 1s ease-in-out;
    }
    .venturx-text {
      max-width: 550px;
      text-align: left;
    }
    .venturx-text p {
      font-size: 17px;
      line-height: 1.7;
    }
    .venturx-text h4 {
      font-size: 18px;
      font-weight: 600;
      margin-top: 20px;
      margin-bottom: 2px;
    }
    .venturx-subtitle {
      font-weight: 700;
      font-size: 14px;
      margin-top: 0;
    }
    .venturx-image {
      position: relative;
      flex-shrink: 0;
    }
    .venturx-image img {
      width: 260px;
      height: 260px;
      object-fit: cover;
      border-radius: 50%;
      z-index: 2;
      position: relative;
    }
    .venturx-quote {
      position: absolute;
      left: -20px;
      top: 10px;
      font-size: 50px;
      color: #4caf50;
      z-index: 1;
    }
    .venturx-base {
      position: absolute;
      width: 100%;
      height: 120px;
      background: #4caf50;
      border-radius: 100px 100px 0 0;
      bottom: -10px;
      left: 0;
      transform: scaleX(1.2);
      z-index: 0;
    }
    .venturx-dots {
      text-align: center;
      margin-top: 40px;
    }
    .venturx-dots span {
      display: inline-block;
      width: 12px;
      height: 12px;
      margin: 0 6px;
      background-color: #ccc;
      border-radius: 50%;
      cursor: pointer;
    }
    .venturx-dots span.active {
      background-color: #111;
    }
    @keyframes fade {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @media (max-width: 768px) {
      .venturx-slide {
        flex-direction: column;
      }
    }



    /* our vision */

        /* Optional base font */
body { font-family: 'Poppins', system-ui, -apple-system, Arial, sans-serif; }

/* Make section padding lighter on small screens */
@media (max-width: 576px) {
  .section-60 {
    padding: 32px 16px;         /* was 70px 0; gives breathing room without crowding */
  }
  .vision-img {
    margin-bottom: 24px !important;  /* ensure gap before the next section */
  }
  section {                      /* generic safety gap between sections */
    margin-bottom: 24px; 
  }
}


/* Image containment */
.vision_img_kart .wrapp_in {
  overflow: hidden;                 /* clip any overflow from child image */
}

/* Responsive image rules */
.vision_img_kart img,
.vision-img {
  display: block;
  max-width: 100%;                  /* never exceed column width */
  height: auto;                     /* maintain aspect ratio */
}



/* Optional: guard against accidental horizontal overflow site‑wide */
html, body {
  max-width: 100%;
  overflow-x: hidden;               /* stop horizontal scroll if something slips */
}

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

        .header-picture {
            width: 100%;
            height: 100px;
        } */

        .stats-card {
            background-color: #666;
            text-align: center;
            padding: 40px 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 280px;
            border-radius: 50px;

        }

        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        /* 2nd page icons */
        /* Section */
        .icon-section {
            text-align: center;
            padding: 80px 20px;
            background: #fff;
            font-family: 'Arial', sans-serif;
        }

        /* Title */
        .section-title {
            font-size: 34px;
            color: #0a5800;
            font-weight: bold;
            margin-bottom: 60px;
        }

        /* Icon Grid */
        .icon-grid {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 100px;
            /* Increased spacing between items */
            max-width: 1300px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        /* Icon Item */
        .icon-item {
            text-align: center;
            max-width: 250px;
            transition: transform 0.3s ease;
        }

        .icon-item img {
            width: 90px;
            height: auto;
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-item:hover img {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .icon-item h3 {
            color: #0a5800;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 12px;
        }

        .icon-item p {
            font-size: 15px;
            color: #333;
            line-height: 1.6;
        }

        /* WhatsApp Button */
        .cta {
            margin-top: 60px;
        }

        .whatsapp-btn {
            display: inline-block;
            background: #25D366;
            color: #fff;
            padding: 14px 36px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: background 0.3s ease;
        }

        .whatsapp-btn:hover {
            background: #1da851;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .icon-grid {
                gap: 60px;
            }
        }

        @media (max-width: 768px) {
            .icon-grid {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
        }

        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #fff;
            color: #333;
        }

        .icon-section {
            padding: 60px 20px;
            text-align: center;
            background: #ffffff;
        }

        .icon-section h2 {
            font-size: 32px;
            color: darkgreen;
            font-weight: bold;
            margin-bottom: 40px;
        }

        .icon-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .icon-item {
            text-align: center;
            max-width: 220px;
            transition: transform 0.3s ease;
        }

        .icon-item img {
            width: 80px;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .icon-item h3 {
            font-size: 18px;
            color: darkgreen;
            margin-bottom: 8px;
        }

        .icon-item p {
            font-size: 14px;
            color: #444;
            line-height: 1.4;
        }

        /* Hover Effect */
        .icon-item:hover {
            transform: translateY(-8px);
        }

        .icon-item:hover img {
            transform: scale(1.1);
        }

        /* WhatsApp Button */
        .shop-now {
            margin-top: 40px;
        }

        .whatsapp-btn {
            display: inline-block;
            background: darkgreen;
            color: #fff;
            padding: 10px 25px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 16px;
            transition: background 0.3s ease;
        }

        .whatsapp-btn:hover {
            background: #128c7e;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .icon-container {
                gap: 30px;
            }

            .icon-item {
                max-width: 45%;
            }
        }

        @media (max-width: 480px) {
            .icon-container {
                flex-direction: column;
                align-items: center;
            }

            .icon-item {
                max-width: 80%;
            }
        }

        /* event Slider Container */
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .events-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            font-family: 'Arial', sans-serif;
        }

        .event-slide {
            position: absolute;
            width: 103%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: scale(1.1);
            z-index: 1;
        }

        .event-slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        /* Enhanced overlay with gradient */
        .event-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.8) 100%
            );
            top: 0;
            left: 0;
            z-index: 3;
        }

        /* Content container */
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50px;
            transform: translateY(-50%);
            z-index: 4;
            color: white;
            max-width: 600px;
            opacity: 0;
            transform: translateY(-50%) translateX(-30px);
            transition: all 0.8s ease 0.3s;
        }

        .event-slide.active .slide-content {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        .slide-badge {
            display: inline-block;
            background: linear-gradient(45deg, #00b300, #00d400);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 179, 0, 0.3);
        }

        .slide-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .slide-description {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .slide-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(45deg, #00b300, #00d400);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 179, 0, 0.3);
        }

        .slide-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0, 179, 0, 0.4);
            color: white;
            text-decoration: none;
        }

        /* Navigation arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 5;
            backdrop-filter: blur(10px);
        }

        .nav-arrow:hover {
            background: rgba(0, 179, 0, 0.8);
            border-color: #00b300;
            transform: translateY(-50%) scale(1.1);
        }

        .nav-arrow.prev {
            left: 30px;
        }

        .nav-arrow.next {
            right: 30px;
        }

        /* Enhanced dots */
        .event-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            display: flex;
            gap: 15px;
        }

        .event-dot {
            width: 14px;
            height: 14px;
            background: rgba(255, 255, 255, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .event-dot.active {
            background: #00b300;
            border-color: #00b300;
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(0, 179, 0, 0.5);
        }

        .event-dot.active::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border: 2px solid rgba(0, 179, 0, 0.3);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

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

        /* Progress bar */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #00b300, #00d400);
            z-index: 4;
            transform-origin: left;
            animation: progress 4s linear infinite;
        }

        @keyframes progress {
            0% {
                width: 0%;
            }
            100% {
                width: 100%;
            }
        }

        /* Section header */
        .section-header {
            position: absolute;
            top: 50px;
            left: 50px;
            z-index: 4;
            color: white;
        }

        .section-header h2 {
            font-size: 1.5rem;
            font-weight: 300;
            opacity: 0.9;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .slide-content {
                left: 30px;
                right: 30px;
                max-width: none;
            }

            .slide-title {
                font-size: 2.5rem;
            }

            .slide-description {
                font-size: 1rem;
            }

            .nav-arrow {
                width: 50px;
                height: 50px;
                font-size: 16px;
            }

            .nav-arrow.prev {
                left: 20px;
            }

            .nav-arrow.next {
                right: 20px;
            }

            .section-header {
                left: 30px;
                top: 30px;
            }
        }
/* 
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow-x: hidden;
}

main {
    flex: 1;
    margin-bottom: 0;
} */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Footer base styles */
.footerx {
  background-color: #145214; /* Dark green */
  color: white;
  padding: 80px 16px 30px; /* Use side padding here */
  width: 100%;  /* Fix horizontal overflow */
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0;
  font-family: Arial, sans-serif;
}

.footerx-logo img {
  max-width: 180px;
  margin-bottom: 1rem;
  display: block;
}

.footerx-description {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-size: 0.95rem;
  color: white;
}

.footerx-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footerx-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footerx-social a:hover {
  background: #80c342; /* lighter green */
  color: white;
}

.footerx-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  color: white;
  border-bottom: 2px solid #80c342; /* lighter green underline */
}

.footerx-links {
  list-style: none;
  padding: 0;
}

.footerx-links li {
  margin-bottom: 0.75rem;
}

.footerx-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footerx-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footerx-links a i {
  font-size: 0.8rem;
  color: #80c342;
}

.footerx-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footerx-contact-icon {
  font-size: 1.25rem;
  color: #80c342;
  margin-top: 3px;
}

.footerx-contact-text {
  opacity: 0.9;
  font-size: 0.95rem;
  color: white;
}

.footerx-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: white;
}

.footerx-bottom i {
  color: #ff4757;
}

/* Responsive styles */
@media (max-width: 768px) {
  .footerx .col-lg-4,
  .footerx .col-lg-3,
  .footerx .col-lg-2,
  .footerx .col-md-6 {
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .footerx {
    padding-left: 16px;
    padding-right: 16px;
  }
}



        /* originel footer  */



        
        /* Stats Section */
        .stats-section {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 50px 20px;
            background: #fff;
            flex-wrap: wrap;
        }

        .stat-card {
            background: #f8fff8;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            width: 250px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        /* Icon Circle */
        .icon-circle {
            background-color: #2fbd2f;
            color: white;
            border-radius: 50%;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin: 0 auto 15px auto;
            box-shadow: 0 4px 10px rgba(47, 189, 47, 0.4);
        }

        /* Headings */
        .stat-card h2 {
            font-size: 20px;
            color: #222;
            margin-bottom: 8px;
            font-weight: bold;
        }

        /* Paragraph */
        .stat-card p {
            font-size: 14px;
            color: #555;
            line-height: 1.4;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .stats-section {
                flex-direction: column;
                align-items: center;
            }

            .stat-card {
                width: 80%;
                margin-bottom: 20px;
            }
        }

        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 50px;
            background: #fff;
            color: #084c2e;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: bold;
        }

        .cta-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 25px;
            background-color: #25D366;
            color: #fff;
            font-size: 1rem;
            text-decoration: none;
            border-radius: 30px;
            transition: 0.3s ease;
        }

        .cta-btn:hover {
            background-color: #1ebe5d;
        }

        /* SLIDING TEXT ANIMATION */
        .sliding-text {
            display: inline-block;
            animation: slideText 20s linear infinite;
        }

        @keyframes slideText {
            0% {
                content: "Quick Commerce Delivered in 5 Minutes";
            }

            20% {
                content: "AI Shopping Assistance – Smarter Shopping";
            }

            40% {
                content: "All in One Place, Directly on WhatsApp";
            }

            60% {
                content: "Fresh Groceries, Meat & Medicine at Your Door";
            }

            80% {
                content: "Kartokart – The Future of Shopping";
            }
        }

        /* newly added */
        /* .hero {
  padding: 80px 0;
  background: #fff;
}

.hero-left {
  padding: 20px;
}

.Modern-Slider h2 {
  font-size: 32px;
  font-weight: bold;
  color: #087a0c;
  margin-bottom: 20px;
}

.content p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 30px;
}

.shop-now .btn {
  padding: 12px 50px;
  font-size: 18px;
  border-radius: 8px;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.shop-now .btn:hover {
  background: #1ebe5d;
}

.product-screenshot img {
  max-width: 100%;
  border-radius: 10px;
} */





        /* latest hero section sample  */




        /* caegory section */


          * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #f8fafc;
    padding: 20px 0;
}

.category-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-heading {
    font-size: 2.2rem;
    color: #002244;
    margin-bottom: 12px;
    font-weight: 700;
}

.category-subheading {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.category-scroll-container {
    overflow: hidden;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
}

.category-grid {
    display: flex;
    gap: 25px;
    padding: 10px;
    animation: autoScroll 25s linear infinite; /* default */
    width: max-content;
}

.category-grid:hover {
    animation-play-state: paused;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.category-box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-width: 280px;
    width: 280px;
    flex-shrink: 0;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.item-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #00b300;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 179, 0, 0.3);
}

.category-image-wrapper {
    height: 180px;
    overflow: hidden;
    flex: 0 0 180px;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-box:hover .category-image-wrapper img {
    transform: scale(1.05);
}

.category-box > div:last-child {
    padding: 20px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-title {
    font-size: 1.4rem;
    color: #002244;
    margin-bottom: 8px;
    font-weight: 600;
}

.category-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

.category-cta {
    text-align: center;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00b300;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 179, 0, 0.25);
}

.category-btn:hover {
    background: #008a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 179, 0, 0.35);
}

/* Tablet */
@media (max-width: 768px) {
    .category-wrapper {
        padding: 40px 15px;
    }

    .category-heading {
        font-size: 1.8rem;
    }

    .category-subheading {
        font-size: 1rem;
    }

    .category-box {
        min-width: 260px;
        width: 260px;
        height: 280px;
    }

    .category-image-wrapper {
        height: 160px;
        flex: 0 0 160px;
    }

    .category-grid {
        animation-duration: 22s; /* faster */
    }
}

/* Mobile */
@media (max-width: 480px) {
    .category-heading {
        font-size: 1.6rem;
    }

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

    .category-box {
        min-width: 240px;
        width: 240px;
        height: 260px;
    }

    .category-grid {
        animation-duration: 15s; /* even faster */
    }
}

        

        /* delivery partner section */
         /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */

        /* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            min-height: 100vh;
            padding: 2rem 0;
        } */
  .dp-section {
    max-width: 1200px;
    margin: 80px auto 0 auto; 
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.1);

    
}

.dp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    align-items: center;
}

.dp-content {
    padding: 4rem 3rem;
    animation: fadeInLeft 0.8s ease-out;
}

.dp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
}

.dp-heading {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.dp-heading span {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dp-description {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 400;
}

.dp-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.dp-highlight-card {
    background: rgba(34, 197, 94, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dp-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.dp-highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.dp-highlight-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.dp-highlight-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

.dp-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.dp-btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.dp-btn-secondary {
    background: transparent;
    color: #22c55e;
    padding: 1.2rem 2.5rem;
    border: 2px solid #22c55e;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.dp-btn-secondary:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.3);
}

.dp-image {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: fadeInRight 0.8s ease-out;
}

.dp-delivery-illustration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

.dp-bike-icon {
    font-size: 8rem;
    color: #22c55e;
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.dp-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dp-floating-box {
    position: absolute;
    background: #22c55e;
    color: white;
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 1.5rem;
    animation: floatAround 4s ease-in-out infinite;
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
}

.dp-floating-box:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.dp-floating-box:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.dp-floating-box:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.dp-stats-badge {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 2rem;
}

.dp-stats-number {
    font-size: 2rem;
    font-weight: 800;
    color: #22c55e;
    display: block;
}

.dp-stats-text {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .dp-container {
        grid-template-columns: 1fr;
    }

    .dp-content {
        padding: 2rem 1.5rem;
        order: 2;
    }

    .dp-image {
        order: 1;
        min-height: 300px;
    }

    .dp-heading {
        font-size: 2.2rem;
    }

    .dp-highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dp-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .dp-btn-primary,
    .dp-btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .dp-bike-icon {
        font-size: 5rem;
    }

    .dp-floating-box {
        font-size: 1rem;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 0.5rem;
    }

    .dp-section {
        border-radius: 16px;
    }

    .dp-heading {
        font-size: 1.8rem;
    }

    .dp-description {
        font-size: 1rem;
    }

    .dp-btn-primary,
    .dp-btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
    









    :root {
            --kk-primary: #22c55e;
            --kk-secondary: #16a34a;
            --kk-accent: #059669;
            --kk-whatsapp: #25D366;
            --kk-whatsapp-dark: #128C7E;
            --kk-light: #f8fafc;
            --kk-dark: #1e293b;
            --kk-darker: #0f172a;
            --kk-gray: #64748b;
            --kk-white: #ffffff;
            --kk-gradient: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #059669 100%);
            --kk-whatsapp-gradient: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            --kk-dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background: #ffffff;
            overflow-x: hidden;
            color: var(--kk-darker);
            line-height: 1.6;
        }

        .kk-hero-section {
            position: relative;
            padding: 8rem 0 6rem;
            background: var(--kk-dark-gradient);
            color: white;
            overflow: hidden;
        }

        .kk-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .kk-hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .kk-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: var(--kk-whatsapp-gradient);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 2rem;
            animation: kk-pulse-glow 2s infinite;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .kk-hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            background: var(--kk-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
        }

        .kk-hero-subtitle {
            font-size: 1.4rem;
            color: rgba(255,255,255,0.9);
            font-weight: 400;
            margin: 0 auto 3rem;
            line-height: 1.6;
            max-width: 700px;
        }

        .kk-impact-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 4rem 0;
        }

        .kk-stat-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .kk-stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.1);
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
        }

        .kk-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--kk-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .kk-stat-label {
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.5rem;
        }

        .kk-stat-description {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
        }

        .kk-stat-description strong {
            color: white;
            font-weight: 600;
        }

        .kk-stat-description small {
            display: block;
            font-size: 0.8rem;
            margin-top: 0.5rem;
            color: rgba(255,255,255,0.6);
            font-style: italic;
        }

        .kk-testimonial {
            display: flex;
            align-items: center;
            text-align: left;
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            padding: 2rem;
            margin: 3rem 0;
            gap: 2rem;
        }

        .kk-testimonial-photo {
            flex-shrink: 0;
        }

        .kk-testimonial-photo img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--kk-primary);
        }

        .kk-testimonial-quote blockquote {
            font-size: 1.1rem;
            font-style: italic;
            color: rgba(255,255,255,0.9);
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .kk-testimonial-quote cite {
            font-weight: 600;
            color: var(--kk-primary);
            font-style: normal;
        }

        .kk-cta-group {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .kk-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: var(--kk-whatsapp);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }

        .kk-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
            background: var(--kk-whatsapp-dark);
        }

        .kk-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 1.1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .kk-cta-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
        }

        .kk-floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        .kk-floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.05);
            animation: kk-float-random 15s ease-in-out infinite;
        }

        @keyframes kk-pulse-glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
            }
            50% {
                box-shadow: 0 0 40px rgba(37, 211, 102, 0.8);
            }
        }

        @keyframes kk-float-random {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(50px, -30px) rotate(90deg);
            }
            50% {
                transform: translate(30px, -50px) rotate(180deg);
            }
            75% {
                transform: translate(-40px, -30px) rotate(270deg);
            }
        }

        @media (max-width: 992px) {
            .kk-hero-title {
                font-size: 3rem;
            }
            
            .kk-hero-subtitle {
                font-size: 1.2rem;
            }

            .kk-testimonial {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .kk-hero-section {
                padding: 6rem 0 4rem;
            }
            
            .kk-hero-title {
                font-size: 2.5rem;
            }
            
            .kk-hero-subtitle {
                font-size: 1.1rem;
            }

            .kk-stat-number {
                font-size: 2rem;
            }

            .kk-stat-label {
                font-size: 1.1rem;
            }

            .kk-cta-group {
                flex-direction: column;
                gap: 1rem;
            }

            .kk-cta-button, .kk-cta-secondary {
                width: 100%;
                justify-content: center;
            }
        }




/* delivery zones */

     @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Poppins:wght@300;400;600;700&display=swap');
        
        :root {
            --delivery-primary-green: #2e7d32;
            --delivery-light-green: #66bb6a;
            --delivery-accent-blue: #1976d2;
            --delivery-deep-orange: #f57c00;
            --delivery-light-bg: #f1f8e9;
            --delivery-white: #ffffff;
            --delivery-card-bg: rgba(255, 255, 255, 0.95);
            --delivery-text-dark: #1b5e20;
            --delivery-text-accent: #2e7d32;
            --delivery-gradient-1: linear-gradient(135deg, #2e7d32, #66bb6a, #81c784);
            --delivery-gradient-2: linear-gradient(45deg, #4caf50, #8bc34a, #cddc39);
            --delivery-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
        }

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

        .delivery-section {
            background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e8 30%, #c8e6c8 70%, #dcedc8 100%);
            color: var(--delivery-text-dark);
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        /* Animated background particles */
        .delivery-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }

        .delivery-particle {
            position: absolute;
            background: var(--delivery-primary-green);
            border-radius: 50%;
            animation: delivery-float 6s ease-in-out infinite;
            opacity: 0.6;
        }

        .delivery-particle:nth-child(odd) {
            background: var(--delivery-light-green);
            animation-delay: -2s;
        }

        .delivery-particle:nth-child(3n) {
            background: #4caf50;
            animation-delay: -4s;
        }

        @keyframes delivery-float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            50% {
                transform: translateY(-100vh) rotate(180deg);
            }
        }

        /* Animated grid background */
        .delivery-grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                linear-gradient(rgba(76, 175, 80, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(76, 175, 80, 0.08) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: delivery-gridMove 20s linear infinite;
        }

        @keyframes delivery-gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .delivery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }

        /* Header with holographic effect */
        .delivery-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .delivery-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            background: var(--delivery-gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            animation: delivery-titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes delivery-titleGlow {
            0% {
                filter: drop-shadow(0 0 20px var(--delivery-light-green));
                transform: scale(1);
            }
            100% {
                filter: drop-shadow(0 0 40px var(--delivery-primary-green));
                transform: scale(1.02);
            }
        }

        .delivery-subtitle {
            font-size: 1.3rem;
            color: var(--delivery-text-accent);
            margin-bottom: 2rem;
            opacity: 0;
            animation: delivery-fadeInUp 1s ease-out 0.5s forwards;
        }

        @keyframes delivery-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Floating stats with 3D effect */
        .delivery-stats-container {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .delivery-stat-box {
            background: var(--delivery-card-bg);
            backdrop-filter: blur(20px);
            border: 2px solid transparent;
            background-clip: padding-box;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            min-width: 180px;
            position: relative;
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            animation: delivery-statFloat 4s ease-in-out infinite;
        }

        .delivery-stat-box:nth-child(2) { animation-delay: -1s; }
        .delivery-stat-box:nth-child(3) { animation-delay: -2s; }

        @keyframes delivery-statFloat {
            0%, 100% { transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px); }
            50% { transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-10px); }
        }

        .delivery-stat-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            padding: 2px;
            background: var(--delivery-gradient-1);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            animation: delivery-borderRotate 3s linear infinite;
        }

        @keyframes delivery-borderRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .delivery-stat-box:hover {
            transform: perspective(1000px) rotateX(10deg) rotateY(10deg) translateY(-20px) scale(1.05);
            box-shadow: 0 20px 40px rgba(76, 175, 80, 0.3);
        }

        .delivery-stat-number {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--delivery-gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            animation: delivery-numberPulse 2s ease-in-out infinite;
        }

        @keyframes delivery-numberPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .delivery-stat-label {
            font-size: 1rem;
            color: var(--delivery-text-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* City cards with morphing effects */
        .delivery-cities-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .delivery-city-card {
            background: var(--delivery-card-bg);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
            animation: delivery-cardEntry 0.8s ease-out forwards;
            opacity: 0;
        }

        .delivery-city-card:nth-child(1) { animation-delay: 0.2s; }
        .delivery-city-card:nth-child(2) { animation-delay: 0.4s; }
        .delivery-city-card:nth-child(3) { animation-delay: 0.6s; }

        @keyframes delivery-cardEntry {
            from {
                opacity: 0;
                transform: perspective(1000px) rotateX(45deg) translateY(100px);
            }
            to {
                opacity: 1;
                transform: perspective(1000px) rotateX(0deg) translateY(0);
            }
        }

        .delivery-city-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, var(--delivery-light-green), transparent, var(--delivery-primary-green), transparent);
            animation: delivery-cardRotate 4s linear infinite;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .delivery-city-card:hover::before {
            opacity: 0.15;
        }

        @keyframes delivery-cardRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .delivery-city-card::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: var(--delivery-card-bg);
            backdrop-filter: blur(20px);
            border-radius: 23px;
            z-index: -1;
        }

        .delivery-city-card:hover {
            transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-15px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(76, 175, 80, 0.2),
                0 0 80px rgba(102, 187, 106, 0.1);
        }

        .delivery-city-name {
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--delivery-gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            position: relative;
            animation: delivery-nameShimmer 3s ease-in-out infinite;
        }

        @keyframes delivery-nameShimmer {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3) drop-shadow(0 0 10px var(--delivery-light-green)); }
        }

        .delivery-city-detail {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.8rem;
            background: rgba(76, 175, 80, 0.08);
            border-radius: 12px;
            border-left: 3px solid var(--delivery-light-green);
            transition: all 0.3s ease;
        }

        .delivery-city-detail:hover {
            background: rgba(76, 175, 80, 0.15);
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
        }

        .delivery-city-icon {
            margin-right: 15px;
            font-size: 1.2rem;
            color: var(--delivery-primary-green);
            animation: delivery-iconFloat 2s ease-in-out infinite;
        }

        @keyframes delivery-iconFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }

        /* Futuristic CTA button */
        .delivery-cta-section {
            text-align: center;
            position: relative;
        }

        .delivery-cta-button {
            display: inline-block;
            font-family: 'Orbitron', monospace;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 1.5rem 3rem;
            background: transparent;
            border: 2px solid var(--delivery-primary-green);
            color: var(--delivery-primary-green);
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            animation: delivery-buttonPulse 2s ease-in-out infinite;
        }

        @keyframes delivery-buttonPulse {
            0%, 100% {
                box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(76, 175, 80, 0.6);
            }
        }

        .delivery-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.4), transparent);
            transition: 0.5s;
        }

        .delivery-cta-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--delivery-gradient-1);
            opacity: 0;
            transition: 0.3s;
            z-index: -1;
        }

        .delivery-cta-button:hover {
            color: var(--delivery-white);
            border-color: transparent;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 15px 30px rgba(76, 175, 80, 0.4),
                0 0 60px rgba(102, 187, 106, 0.3);
        }

        .delivery-cta-button:hover::before {
            left: 100%;
        }

        .delivery-cta-button:hover::after {
            opacity: 1;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .delivery-stats-container {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }
            
            .delivery-stat-box {
                width: 100%;
                max-width: 280px;
            }
            
            .delivery-cities-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .delivery-container {
                padding: 1rem;
            }
            
            .delivery-title {
                font-size: 2.5rem;
            }
        }



        /* data grid end of the page  */


        