
/* navabar */

* {
  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 */
.navbar-glass-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0; /* More top spacing for the float effect */
    pointer-events: none;
    display: flex;
    justify-content: center; /* Perfectly centers the bar */
}

/* 2. The Glass Island (The Bar Itself) */
.navbar-glass {
    pointer-events: auto;
    width: 90%; /* Responsive width */
    max-width: 1080px; /* Maximum width */
    background: rgba(255, 255, 255, 0.7); /* More transparency */
    backdrop-filter: blur(20px) saturate(180%); /* Premium "Frosted" look */
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 100px; /* Full pill shape */
    padding: 12px 32px; /* Spacious internal padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07); /* Soft, expensive shadow */
    border: 1px solid rgba(255, 255, 255, 0.8); /* Subtle border highlight */
    transition: all 0.3s ease;
}

/* 3. Brand/Logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0f172a;
}

.nav-logo-img {
    height: 42px; /* Slightly larger logo */
    width: auto;
}

.brand-text {
    font-family: 'Poppins', sans-serif; /* Ensure font matches */
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    color: #1e293b;
}

/* 4. Desktop Links (Middle) */
.nav-menu-desktop {
    display: flex;
    gap: 8px; /* Gap between the pill hover effects */
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.5); /* Subtle grouping background */
    padding: 5px;
    border-radius: 100px;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 24px; /* Generous padding for the hover pill */
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effect */
.nav-link:hover, .nav-link.active {
    color: #166534; /* Dark Green Text */
    background-color: white; /* Pure white pill */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Pop effect */
}

/* 5. Contact Button (The "Beautiful" Part) */
.nav-cta-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); /* Gradient Depth */
    color: white;
    text-decoration: none;
    padding: 14px 32px; /* <--- THIS IS THE PADDING FIX */
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35); /* Green Glow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5); /* Stronger glow on hover */
}

/* 6. Hamburger (Mobile) */
.hamburger-menu {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px; /* Touch target size */
}

.hamburger-menu span {
    display: block;
    width: 26px;
    height: 2.5px; /* Slightly thicker lines */
    background-color: #0f172a;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; }
.hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* 7. Mobile Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999; /* Below the navbar */
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-links li {
    margin: 30px 0; /* More vertical space on mobile */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-links li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.mobile-menu-overlay.active .mobile-links li:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.mobile-menu-overlay.active .mobile-links li:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.mobile-menu-overlay.active .mobile-links li:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.mobile-menu-overlay.active .mobile-links li:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

.mobile-links a {
    font-size: 2.2rem; /* Larger tap target */
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    position: relative;
}

.mobile-links a:hover {
    color: #22c55e;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
    .nav-menu-desktop { display: none; }
    .nav-cta-btn { display: none; } /* Hide desktop button on mobile */
    .hamburger-menu { display: flex; }
    
    .navbar-glass-wrapper { padding: 15px 0; }
    .navbar-glass {
        width: 92%;
        padding: 10px 24px; /* Slightly tighter padding on small screens */
    }
}


/* first section home section  */

/*  */
/*  */



.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;
            }
        }


/* hero page 2nd section catogary */

* {
    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 */
    }
}

/* hero page 3rd section */
/* for everyone  */




.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;
}


/* 4th section of 1st page  */
/* how it work section */



        .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;
        }


/* 5th section of kartokart first page  */
/* whatsapp commerce revolution  */
/* statics of kartokart with testimonial */

: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%);
        }

        .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;
            }
        }


/* hero page 6th section what are people saying about kartokart ai  */


/* STORIES GALLERY CSS */
/* GALLERY SECTION LAYOUT */
/* --- GALLERY SECTION --- */
.gallery-section {
    padding: 80px 20px;
    background-color: #f9fafb;
    font-family: 'Poppins', sans-serif;
    overflow: hidden; /* Prevent full page scroll issues */
}

.gallery-container {
    max-width: 1150px;
    margin: 0 auto;
}

/* Headings */
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}
.gallery-tag {
    background: #dcfce7;
    color: #166534;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}
.gallery-title {
    font-size: 2.2rem;
    color: #0f172a;
    font-weight: 800;
    margin: 15px 0 10px;
}
.gallery-subtitle {
    color: #64748b;
    font-size: 1rem;
}

/* Category Header with Swipe Hint */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0 20px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
}
.category-header h3 {
    font-size: 1.2rem;
    color: #334155;
    font-weight: 700;
    margin: 0;
}
.category-header h3 i { color: #22c55e; margin-right: 8px; }
.swipe-hint {
    font-size: 0.8rem;
    color: #22c55e;
    animation: pulse-arrow 2s infinite;
}
@keyframes pulse-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* --- GRID SYSTEM (DESKTOP) --- */
.gallery-grid {
    display: grid;
    gap: 20px;
}

/* 1. VENDOR REELS (Large) */
.main-reels {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.large-reel {
    height: 450px; /* Tall aspect ratio */
}

/* 2. CUSTOMER REELS (Small) */
.customer-video-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 across on desktop */
}
.small-reel {
    height: 280px; /* Compact square/portrait */
}

/* Video Card Common Styles */
.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    background: black;
}
.video-card:hover {
    transform: translateY(-5px);
}
.video-thumb {
    width: 100%;
    height: 100%;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: 0.5s;
}
.video-card:hover .video-thumb img {
    transform: scale(1.05);
    opacity: 0.7;
}

/* Play Buttons */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    transition: 0.3s;
}
.play-btn.small {
    width: 40px;
    height: 40px;
    font-size: 14px;
}
.video-card:hover .play-btn {
    background: #22c55e;
    border-color: #22c55e;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Info Text */
.video-info, .small-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}
.small-video-info { padding: 15px; }

.video-info h4 { font-size: 1.1rem; margin: 5px 0; }
.small-video-info p { font-size: 0.9rem; margin: 0; font-weight: 600; }
.badge-vendor { 
    background: #22c55e; padding: 3px 8px; border-radius: 4px; 
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; 
}

/* --- LEADERS PROFILE CARDS (Read More Logic) --- */
.profile-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.profile-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: 0.3s;
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.profile-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #22c55e;
}
.profile-header h4 { margin: 0; font-size: 1rem; color: #0f172a; }
.profile-header span { font-size: 0.85rem; color: #64748b; }

/* Read More Functionality */
.quote-wrapper { position: relative; }
.profile-quote {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 5px;
    /* Default State: Clamped */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.profile-quote.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.read-more-btn {
    background: none;
    border: none;
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 5px;
}
.read-more-btn:hover { text-decoration: underline; }

/* --- MOBILE RESPONSIVE (HORIZONTAL SCROLL) --- */
@media (max-width: 768px) {
    
    /* Turn grids into flex containers for scrolling */
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 20px; /* Space for scrollbar */
        -webkit-overflow-scrolling: touch; /* Smooth scroll iOS */
        /* Hide Scrollbar */
        scrollbar-width: none; /* Firefox */
        margin-right: -20px; /* Allow scroll to bleed to edge */
        padding-right: 20px; /* Padding end */
    }
    .gallery-grid::-webkit-scrollbar { display: none; } /* Chrome/Safari */

    /* Snap Cards */
    .gallery-card {
        flex: 0 0 85%; /* Show 85% of card to hint at scroll */
        scroll-snap-align: start;
        min-width: 280px;
    }
    
    .large-reel { height: 400px; }
    .small-reel { height: 250px; width: 200px !important; flex: 0 0 200px; }
    
    .gallery-title { font-size: 1.8rem; }
    .profile-card { min-height: 250px; } /* Uniform height */
}

/* --- GALLERY FOOTER BUTTON --- */
.gallery-footer {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 20px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Space between text and arrow */
    padding: 14px 40px;
    background: transparent;
    color: #22c55e; /* Kartokart Green */
    border: 2px solid #22c55e;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* The Arrow Icon Style */
.btn-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease; /* Smooth movement */
}

/* Hover Effects */
.explore-btn:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-3px); /* Lift button up */
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
}

/* Arrow Animation on Hover */
.explore-btn:hover .btn-icon {
    transform: translateX(6px); /* Move arrow right by 6px */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .explore-btn {
        width: 85%;
        padding: 12px 20px;
    }
}



/* faQ qustion and answers style css */



/* --- FAQ SECTION --- */
.faq-section {
    padding: 80px 20px;
    background-color: white;
    font-family: 'Poppins', sans-serif;
}

.faq-container {
    max-width: 800px; /* Narrower width for better readability */
    margin: 0 auto;
}

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

.faq-tag {
    color: #22c55e;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.faq-title {
    font-size: 2.5rem;
    color: #0f172a;
    font-weight: 800;
    margin: 10px 0;
}

.faq-subtitle {
    color: #64748b;
}

/* Accordion Styles */
.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #22c55e;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: #22c55e;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none; /* Hidden by default */
    padding-bottom: 20px;
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Active State */
.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.5s ease;
}

.faq-item.active .icon {
    transform: rotate(45deg); /* Turns + into x */
}

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

@media (max-width: 768px) {
    .faq-title { font-size: 1.8rem; }
    .faq-question { font-size: 1rem; }
}


/* footer style css code  */

.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;
  }
}