:root {
    --primary: #7ADAA5;
    --footer-color: #7adaa593;
    --secondary: #5EC489;
    --dark: #143D60;
    --light: #ffffff;
    --text: #333;
    --sky: #3498db;
    --container-padding: 5%;
    --radius-pill: 20px;
    --radius-circle: 50%;
    --fs-h1: 2rem;
    --fs-p: 1rem;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-pop: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.3s ease;
    --transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);



    /* Base Colors */
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;

    /* Platform Primary Colors */
    --instagram-primary: #bb377d;
    --facebook-primary: #3b5998;
    --whatsapp-primary: #25D366;
    --ai-chatbot-primary: #4285F4;
    --web-widget-primary: #673AB7;

    /* Platform Secondary Colors */
    --instagram-secondary: #fbd3e9;
    --facebook-secondary: #e7f3ff;
    --whatsapp-secondary: #e2f7ea;
    --ai-chatbot-secondary: #e6f1ff;
    --web-widget-secondary: #f0e6ff;

    /* Text Colors */
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;


    --container-padding: 15px;
    --fs-h1: 1.6rem;
    --fs-p: 0.95rem;


}



/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--text);
    margin: 0;
    overflow-x: hidden;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--dark);
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    border: 2px solid;
    overflow: hidden;
    z-index: 1;
    min-width: 150px;
    background: transparent;
    color: var(--dark);
    transition: color 0.4s ease;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    transition: var(--transition);
    background: var(--red);
    z-index: -1;
}

.btn-primary {

    color: var(--dark);
    border-color: var(--primary-dark, var(--secondary));
}

.btn-primary::before {
    background: var(--red);
}

.btn-primary:hover {
    color: var(--light);
}

.btn-outline {
    background: var(--red);
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline::before {
    background: var(--dark);
}

.btn-outline:hover {
    color: var(--light);
}

.btn:hover::before {
    width: 100%;
}

.btn i {
    margin-right: 8px;
    transition: transform 0.4s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

/* -------------------- Base Navbar -------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(15px);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* -------------------- Desktop Navigation -------------------- */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* -------------------- Dropdown -------------------- */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--light);
  border-radius: 6px;
  min-width: 200px;
  box-shadow: var(--shadow-pop);
  z-index: 100;
  flex-direction: column;
}

.dropdown-content a {
  padding: 10px 15px;
  text-decoration: none;
  color: var(--dark);
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: var(--light);
  color: var(--primary);
}

.dropdown:hover .dropdown-content {
  display: flex;
}

/* -------------------- Actions -------------------- */
.nav-actions a {
  background: var(--primary);
  color: var(--light);
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
}

/* -------------------- Hamburger (Mobile) -------------------- */
.nav-toggle {
  display: none;
  flex-direction: column;
 
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle .line {
  width: 25px;
  height: 3px;
  background: #333;
}

/* -------------------- Mobile Drawer -------------------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease-in-out;
  z-index: 999;
  padding: 60px 20px;
}

.mobile-drawer[data-visible="true"] {
  right: 0;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-links a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.mobile-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 5px;
  text-align: center;
}

/* -------------------- Mobile Dropdown -------------------- */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  margin-top: 5px;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}



/* Button Styles */
.btn-primary {
    padding: 10px 25px;
    border-radius: 16px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary);
    color: var(--light);
    outline: none;
}

/* Mobile Toggle Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    user-select: none;
}

.nav-toggle .line {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    box-shadow: -9px 7px 14px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px 0 0 20px;
    top: 70px;
    /* Just below navbar */
    right: -100%;
    width: 300px;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(15px);
    -webkit-backdrop-filter: saturate(180%) blur(15px);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-drawer[data-visible="true"] {
    right: 0;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-links a {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-links a:hover,
.mobile-links a:focus {
    color: var(--primary);
    outline: none;
}

.mobile-btn {
    margin-top: 20px;
    padding: 12px;
    text-align: center;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
}

.mobile-btn:hover,
.mobile-btn:focus {
    background: var(--primary);
    color: var(--light);
    outline: none;
}



.login-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

.login-icon {
    background: var(--primary);
    color: var(--dark);
    padding: 6px;
    border-radius: var(--radius-circle);
}
/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap; /* छोटे screen पर auto stack */
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 8vw, 100px) clamp(20px, 6vw, 80px);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--dark);
  border-radius: var(--radius-pill);
  margin: 80px auto 40px; /* 🔥 Navbar से gap (navbar ~70px height मानी गई) */
  gap: clamp(20px, 5vw, 50px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  min-height: clamp(350px, 60vh, 600px);
}

.hero-content {
  max-width: min(90%, 900px);
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-title-subtitle-block {
  min-height: clamp(120px, 20vh, 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

#hero-title {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  margin-bottom: clamp(10px, 2vh, 20px);
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: white;
  opacity: 0.9;
  max-width: 90%;
  line-height: 1.5;
  text-align: center;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(15px, 3vh, 30px);
}

.hero-image {
  flex: 1 1 300px;
  max-width: clamp(250px, 40vw, 500px);
  position: relative;
  z-index: 1;
  animation: slideUp 0.8s 0.4s ease-out forwards;
  opacity: 0;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast);
}

/* Buttons */
.hero-buttons .btn {
  padding: clamp(14px, 2vw, 18px) clamp(28px, 6vw, 42px);
  border-radius: 14px;
  border: 3px solid var(--light);
  background-color: transparent;
  width: clamp(400px, 40vw, 320px); /* 👈 min 200px, max 320px */
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  overflow: hidden;
  cursor: pointer;
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: color 0.4s ease;
  position: relative; /* needed for ::before */
}
/* Hover effect */
.hero-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--dark);
  border-radius: 14px;
  z-index: 1;
  transition: width 0.5s ease;
}

.hero-buttons .btn:hover::before {
  width: 100%;
}

.hero-buttons .btn i,
.hero-buttons .btn span,
.hero-buttons .btn-text {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.hero-buttons .btn:hover i,
.hero-buttons .btn:hover span {
  color: #fff;
}

/* Lottie animation */
#insta-loader {
  width: clamp(200px, 50vw, 400px);
  height: auto;
  margin-bottom: clamp(20px, 6vh, 50px);
}
/* Business Cards Section - Improved Version */
.business-wrapper {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.business-card {
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-pop);
    transition: transform 0.3s ease;
    background: transparent;
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
}

.business-card:hover {
    transform: scale(1.02);
}

.business-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; 
}

.business-left {
    flex: 1;
    min-width: 300px;
}

.business-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.business-description {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: justify;
}

.business-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}



.feature-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: #333;
}

.feature-detail {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    text-align: left;
}

.cta-container {
    margin-top: 25px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;  
    align-items: center;      
    text-align: center;       
}


.cta-button {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button.primary {
    color: white;
    background: linear-gradient(to right, #e1306c, #c13584);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid currentColor;
    color: #e1306c;
}

.cta-button.secondary:hover {
    background: rgba(225, 48, 108, 0.1);
}

.about-offer {
    flex: 1;
    min-width: 300px;
    background: var(--light);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-pop);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
    transition: all var(--transition-fast);
}

.offer-badge img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.meta-partner {
    width: 80px;
    height: auto;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 10px 0;
    color: var(--dark);
    text-align: center;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #444;
    font-size: 1rem;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.offer-list img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.offer-image img {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
    margin: 10px 0;
}

/* Specific styling for Blue Tick section image */
#blue-tick-img {
    width: 90%;
    /* customize width */
    height: 400px;
    /* customize height */
    border-radius: 15px;
    object-fit: cover;
    margin: 15px auto;
    /* center image */
    display: block;
    /* required to center with margin:auto */
}


.offer-button a {
    display: inline-block;
    padding: 14px 50px;
    width: 100%;
    max-width: 700px;
    background: var(--primary);
    color: var(--light);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.offer-button a:hover {
    transform: translateY(-3px) scale(1.05);
    color: var(--light);
    box-shadow: var(--shadow-pop)
}




/* container */
.trusted-brands {
    text-align: center;
    background: var(--light);
    padding: 36px 18px;
    border-radius: 10px;
}

/* optional heading  */
.trusted-title {
    font-size: calc(0.6rem + 1vw);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
}

/* logos grid */
.brand-logos {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    padding: 8px 12px;
}

/* each card is a clickable link containing img */
.brand-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    /* card width */
    height: 100px;
    /* card height */
    border-radius: 12px;
    padding: 8px;
    transition: transform .22s ease, box-shadow .22s ease;
    text-decoration: none;
}

/* hover effect */
.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-pop-hover);
}

/* logo image sizing */
.brand-card img {
    max-height: 40px;
    /* keeps logos vertically centered */
    max-width: 100%;
    object-fit: contain;
    display: block;
}




/* Business Solutions Section */
.business-solutions {
    padding: 60px var(--container-padding);
    margin-top: 40px;
    background: var(--light);
    border-radius: 20px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    color: #333;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #e1306c;
    border-radius: var(--radius-pill);
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
    text-align: center;
    color: #555;
    line-height: 1.6;
}/* Grid wrapper */
.solution-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Card */
.solution-card {
    flex: 1 1 calc(25% - 20px);   /* Desktop: 4 in a row */
    max-width: calc(25% - 20px);
    min-width: 300px;             /* Card बहुत छोटा न हो */
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft, 0 4px 10px rgba(0, 0, 0, 0.1));
    transition: all var(--transition-fast, 0.3s ease);
    text-align: center;
    background: #fff;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-pop, 0 8px 20px rgba(0, 0, 0, 0.15));
}

/* Different background colors */
.solution-card:nth-child(1) { background: linear-gradient(135deg, #fdf2f7, #fce4ed); }
.solution-card:nth-child(2) { background: linear-gradient(135deg, #f0f7fd, #e4f0fc); }
.solution-card:nth-child(3) { background: linear-gradient(135deg, #fdf7f2, #fceee4); }
.solution-card:nth-child(4) { background: linear-gradient(135deg, #f2fdf2, #e4fce4); }
.solution-card:nth-child(5) { background: linear-gradient(135deg, #fdf2fd, #fce4fc); }
.solution-card:nth-child(6) { background: linear-gradient(135deg, #f2f2fd, #e4e4fc); }

/* Image inside card */
.solution-card .feature-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
}

.solution-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Text content */
.solution-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.solution-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
    padding: 0 10px;
}


/* Instagram Theme */
.instagram-theme {
    background: linear-gradient(135deg, var(--instagram-secondary), var(--instagram-primary));
    --primary-color: var(--instagram-primary);
    --secondary-color: var(--instagram-secondary);
    --text-color: var(--text-dark);
}

/* Facebook Theme */
.facebook-theme {
    background: linear-gradient(135deg, var(--facebook-secondary), var(--facebook-primary));
    --primary-color: var(--facebook-primary);
    --secondary-color: var(--facebook-secondary);
    --text-color: var(--text-dark);
}

/* WhatsApp Theme */
.whatsapp-theme {
    background: linear-gradient(135deg, var(--whatsapp-secondary), var(--whatsapp-primary));
    --primary-color: var(--whatsapp-primary);
    --secondary-color: var(--whatsapp-secondary);
    --text-color: var(--text-dark);
}

/* AI Chatbot Theme */
.ai-chatbot-theme {
    background: linear-gradient(135deg, var(--ai-chatbot-primary), var(--ai-chatbot-primary));
    --primary-color: var(--ai-chatbot-primary);
    --secondary-color: var(--ai-chatbot-secondary);
    --text-color: var(--text-dark);
}

/* Web Widget Theme */
.web-widget-theme {
    background: linear-gradient(135deg, var(--web-widget-secondary), var(--web-widget-primary));
    --primary-color: var(--web-widget-primary);
    --secondary-color: var(--web-widget-secondary);
    --text-color: var(--text-dark);
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Container and Grid */
.services-section {
    padding-top: 3rem;
    width: 100%;
    padding-bottom: 3rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.services-title-section {
    margin-bottom: 3rem;
    text-align: center;
}

.services-subtitle {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding-left: 1rem;
    display: inline-block;
    color: var(--primary);
}

.services-main-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-top: 0.5rem;
    color: #222;
}

/* Grid container */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2.1rem;
    justify-content: center;
}

/* Service card */
.service-card {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    box-sizing: border-box;
    margin: 0 auto;
    height: auto;
    min-height: 320px;
}

.service-card:hover {
    background: linear-gradient(145deg, var(--light), var(--primary));
    transform: translateY(-5px) scale(1.05);
    animation: var(--transition);
    box-shadow: var(--shadow-pop);
}

/* Icon wrapper */
.service-icon-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    background: url(../img/icon-shape-primary.png) center center no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: background 0.3s ease, color 0.3s ease;
    margin-left: auto;
    margin-right: auto;
}

.service-card:hover .service-icon-wrapper {
    color: var(--primary);
    background: url(../img/icon-shape-white.png) center center no-repeat;
}

/* Icon image */
.service-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
}

/* Title */
.service-title {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #333;
    transition: color 0.3s ease;
    line-height: 1.2;
}

/* Description */
.service-description {
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    flex-grow: 1;
    margin-bottom: 18px;
    line-height: 1.4;
    max-height: 105px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Button */
.service-btn {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    /* overflow control for effect */
    transition: color 0.4s ease;
    align-self: center;
    margin-top: auto;
    background: transparent;
    border: 2px solid var(--primary);
    white-space: nowrap;
    z-index: 1;
}

/* Background fill animation */
.service-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--light));
    z-index: -1;
    transition: all 0.4s ease;
}

/* Hover effect */
.service-card:hover .service-btn {
    color: var(--dark);
    /* text contrast */
    border: 2px solid var(--dark);
}

.service-card:hover .service-btn::before {
    left: 0;
}




/* Demo Pop Up Start */
/* Main Container */
.demo-container {
    background-color: var(--footer-color);
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    max-width: 1800px;
    margin: 60px auto;
    padding: 30px;
    gap: 10px;
    animation: fadeIn 0.8s ease-out forwards;
}

/* Left Content Section */
.demo-content {
    padding: 30px;
    animation: slideInLeft 0.8s ease-out;
}

.demo-content h1 {
    font-size: 2.5rem;
    /* Slightly larger */
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
    animation: textFocusIn 0.8s ease-out 0.2s both;
}

.subtitle {
    font-size: 1.15rem;
    color: #7f8c8d;
    margin-bottom: 50px;
    line-height: 1.6;
    animation: textFocusIn 0.8s ease-out 0.3s both;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-item:nth-child(1) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.5s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.6s;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.icon {
    background-color: #34db3c;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(52, 219, 60, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(52, 219, 60, 0.4);
}

.benefit-text strong {
    font-size: 1.2rem;
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Right Form Section */
.demo-form-section {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    /* Reduced height */
    animation: slideInRight 0.8s ease-out;
}

.demo-form-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    animation: textFocusIn 0.8s ease-out 0.4s both;
}

.form-subtitle {
    font-size: 1.0rem;
    color: #7f8c8d;
    margin-bottom: 35px;
    animation: textFocusIn 0.8s ease-out 0.5s both;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: fadeIn 0.8s ease-out forwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.5s;
}

.form-group:nth-child(2) {
    animation-delay: 0.6s;
}

.form-group:nth-child(3) {
    animation-delay: 0.7s;
}

.form-group:nth-child(4) {
    animation-delay: 0.8s;
}

.form-group label {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 14px 58px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.input-button-row {
    display: flex;
    gap: 35px;
    /* space between input and button */
    align-items: center;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #34db3c;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(52, 219, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes textFocusIn {
    from {
        opacity: 0;
        filter: blur(5px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}



/* Overlay behind modal */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    /* dark overlay */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    animation: fadeInOverlay 0.3s ease forwards;
}

/* Modal box */
.modal-content {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    max-width: 450px;
    width: 90%;
    color: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-30px) scale(0.9);
    opacity: 0;
    animation: modalPop 0.4s ease forwards;
}

/* Modal title */
.modal-content h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--dark);
}

/* Modal paragraph */
/* Infinite scale animation for Scan Now text */
.modal-content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: bold;
    display: inline-block;
    animation: pulseText 1.2s ease-in-out infinite;
}

@keyframes pulseText {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}


/* Modal close button */
.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #111;
    transition: 0.2s;
}

.modal-close:hover {
    color: var(--red);
}

/* Modal image */
.modal-img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Optional button inside modal */
.modal-btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.7rem 1.8rem;
    background-color: var(--primary);
    color: var(--dark);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.modal-btn:hover {
    background-color: var(--dark);
    color: var(--light);
}

/* Animations */
@keyframes modalPop {
    0% {
        transform: translateY(-30px) scale(0.9);
        opacity: 0;
    }

    60% {
        transform: translateY(10px) scale(1.05);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.review-section {
    background-color: #7ADAA5;
    padding: 2rem 1rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.review-marquee {
    overflow: hidden;
    width: 100%;
}

.review-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left 30s linear infinite;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 2rem 1.5rem 2.5rem 2rem;
    flex: 0 0 300px;
    max-width: 300px;
    color: #e6f7f0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.review-card .quote-icon {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    user-select: none;
    color: #fff;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reviewer-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.reviewer-details strong {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

.reviewer-details span {
    font-size: 0.8rem;
    opacity: 0.8;
    color: inherit;
}

/* Marquee Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Adjust -50% if needed for continuous scroll */
}

/* ===== Footer Base ===== */
#wave-footer {
   
    position: relative;
    width: 100%;
    background: var(--primary);
    color: var(--text-color);
    overflow: hidden;
    margin-top: 20px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-pop);
    padding-top: 50px;
}

#footer-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 22px 10px;
    position: relative;
    z-index: 2;
}

/* === 5 fixed columns on desktop so it never wraps === */
#footer-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
}

/* Column content alignment */
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* left aligned on desktop */
    gap: 8px;
    min-width: 0;
}

.footer-section h5 {
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: var(--dark);
}

.footer-section p {
    margin: 0;
    line-height: 1.6;
    color: var(--dark);
}

.footer-link {
    display: block;
    color: var(--dark);
    text-decoration: none;
    margin: 0 0 8px;
    transition: all .25s ease;
    word-break: break-word;
}

.footer-link:hover {
    color: var(--ai-chatbot-primary);
    transform: translateX(2px);
}

/* Meta box tweaks so it doesn't push other columns */
.meta-section .meta-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 8px 0 6px;
}

/* Social icons */
#social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 50%;
    color: var(--dark);
    transition: all .25s ease;
    background: #fff;
}

.social-btn:hover {
    background: var(--ai-chatbot-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Bottom strip */
#footer-bottom {
    text-align: center;
    padding: 20px 0 26px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    position: relative;
    z-index: 2;
}

#footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
}

#footer-links a {
    color: var(--dark);
    text-decoration: none;
    transition: color .2s ease;
}

#footer-links a:hover {
    color: var(--sky);
}

/* ===== Green Water Wave Effects ===== */
.water-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path fill="rgba(122,218,165,0.4)" d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z"/></svg>');
    animation: wave 6s linear infinite;
    z-index: 1;
}

.water-waves::before,
.water-waves::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.water-waves::before {
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path fill="rgba(94,196,137,0.6)" d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z"/></svg>');
    animation: wave 8s linear infinite reverse;
}

.water-waves::after {
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path fill="rgba(122,218,165,0.4)" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z"/></svg>');
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% {
        background-position-x: 0
    }

    100% {
        background-position-x: 1200px
    }
}



/* Business Feature Styles */
.business-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

/* Normal style */
#special-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    /* smooth hover */
}

.special-feature {
    border: 2px solid var(--secondary);
    display: flex;
    border-radius: 8px;
    padding: 5px;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    /* smooth hover */
}

/* Hover effect only on this ID */
#special-feature:hover {
    transform: scale(1.05);
    background: var(--ai-chatbot-secondary);
    /* thoda background change */
    border-radius: 8px;
    padding: 5px;
    transform: scale(1.1);
    margin-left: 20px;
    border: 2px solid var(--secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.feature-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: #333;
}

.feature-detail {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    text-align: left;
}







/* Hero Section */
.hero-header {
    background-color: #7ADAA5;
    padding: 80px 0;
    margin-bottom: 50px;
}

.hero-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-header p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.meta-partner-logo {
    width: 250px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.meta-partner-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.pricing-toggle-container {
    margin: 20px auto;
    padding: 0 10px;
    text-align: center;
}

.features-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

/* ===============================
           Toggle Row
        =================================*/
.toggle-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.toggle-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
}

.toggle-container {
    position: relative;
    display: flex;
    border-radius: 25px;
    background-color: var(--light-gray);
    overflow: hidden;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Sliding Indicator */
.toggle-indicator {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 6px);
    height: calc(100% - 6px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: 0;
}

.toggle-btn {
    border: none;
    padding: 8px 16px;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    min-width: 80px;
    transition: all 0.3s ease;
    color: #555;
    position: relative;
    z-index: 1;
}

.toggle-btn.active {
    color: var(--light);
    font-weight: 600;
}

/* ===============================
           Savings Banner
        =================================*/
.savings-banner {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #f59e0b;
    color: #d97706;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    margin: 20px auto;
    max-width: 600px;
    display: none;
}

/* ===============================
           Pricing Cards
        =================================*/
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 260px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.highlighted {
    border: 2px solid var(--primary);
    transform: scale(1.03);
}

.pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-5px);
}

.recommended-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.duration {
    display: block;
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.original-price {
    display: block;
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.discounted-price {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.signup-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.signup-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===============================
   Pricing Cards
=================================*/
.pricing-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 2000px;
    /* 👈 width बढ़ाया */
    margin: auto;
    padding: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    /* 👈 थोड़ा ज्यादा गोल */
    max-width: 800px;
    width: 400px;
    /* 👈 width बढ़ाई */
    box-shadow: var(--shadow-pop);
    padding: 60px 40px;
    /* 👈 padding ज्यादा */
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.pricing-card.highlighted {
    border: 3px solid var(--secondary);
    transform: scale(1.07);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: var(--secondary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    /* 👈 text बड़ा */
    font-weight: 700;
}

.plan-name {
    font-size: 26px;
    /* 👈 बड़ा किया */
    font-weight: 800;
    margin-bottom: 15px;
    color: #222;
}

.duration {
    display: block;
    font-size: 14px;
    /* 👈 बड़ा */
    margin-bottom: 12px;
    color: #555;
    font-weight: 500;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    /* 👈 बड़ा */
}

.discounted-price {
    font-size: 32px;
    /* 👈 बड़ा */
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
}

.signup-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 14px 28px;
    /* 👈 बड़ा */
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    /* 👈 बड़ा */
    font-weight: 700;
    transition: 0.3s;
}

.signup-btn:hover {
    transform: scale(1.08);
    opacity: 0.95;
}




/* Feature Comparison Table */
.feature-comparison {
    width: 100%;
    margin: 0;
    padding: 25px;
    overflow-x: auto;
}

.feature-comparison h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    min-width: 800px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.feature-table th {
    background-color: #3498db;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.feature-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 14px;
}

.feature-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.feature-table tr:hover {
    background-color: #f1f8ff;
}

.feature-name {
    font-weight: 500;
    text-align: left;
}

.section-header {
    background-color: var(--dark);
    color: white !important;
    font-weight: 600 !important;
    text-align: left !important;
    padding-left: 20px !important;
}

/* Plan Columns */
.free-col {
    background-color: #f5f5f5;
}

.basic-col {
    background-color: #e3f2fd;
}

.advance-col {
    background-color: #e8eaf6;
}

.enterprise-col {
    background-color: #fbe9e7;
}

/* Tooltip Styles */
.tooltip {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    margin-left: 4px;
}

.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 100;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    font-weight: normal;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Setup Service Section */
.business-setup-service {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin: 40px auto;
    max-width: 1800px;
}

.service-header-container {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.service-main-heading {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-subheading {
    color: #7f8c8d;
    font-size: 18px;
    margin-bottom: 20px;
}

.service-pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 15px;
}

.original-service-price {
    font-size: 18px;
    color: #999999;
    text-decoration: line-through;
}

.discounted-service-price {
    font-size: 28px;
    font-weight: 700;
    color: #34db3c;
}

.service-discount-badge {
    background-color: #ff6b6b;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-features-container {
    padding: 0 10px;
}

.features-intro-text {
    font-size: 18px;
    color: #555555;
    margin-bottom: 20px;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    font-size: 16px;
    color: #555555;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.2s ease;
}


.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.highlighted-feature {
    font-weight: 600;
    color: var(--dark);
    background-color: rgba(52, 219, 60, 0.1);
}

.feature-icon {
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
}



/* Custom Package Section Styles */
.custom-package-section {
    position: relative;
    margin: clamp(30px, 5vw, 60px) auto;
    max-width: min(1800px, 95%);
    padding: 0 clamp(15px, 3vw, 20px);
}

.package-container {
    background-color: rgba(174, 174, 174, 0.8);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: clamp(30px, 5vw, 50px);
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(2px);
}

.package-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(./img/uwp.jpeg) center/cover no-repeat;
    opacity: 0.8;
    z-index: -1;
}

.heading-line1 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    background: linear-gradient(90deg, var(--whatsapp-primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* fallback */
    margin-bottom: clamp(8px, 1vw, 10px);
    line-height: 1.3;
}


.heading-line2 {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 700;
    background: linear-gradient(90deg, var(--whatsapp-primary), var(--web-widget-primary));
    /* 🔥 Red → Pink */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* fallback */
    margin-bottom: clamp(15px, 2.5vw, 25px);
    line-height: 1.2;
}


.stats {
    font-size: clamp(16px, 2.5vw, 22px);
    background: linear-gradient(90deg, var(--light), var(--secondary));
    /* 🔥 Red → Pink */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: clamp(20px, 3.5vw, 35px);
    padding-bottom: clamp(15px, 2.5vw, 25px);
    font-weight: 700;

}

.cta-button {
    display: inline-block;
    background-color: var(--dark-gray);
    color: #34db3c;
    padding: clamp(12px, 1.5vw, 15px) clamp(20px, 3vw, 30px);
    border-radius: 30px;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #34db3c;
    transition: width 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button:hover .arrow {
    transform: translateX(3px);
    color: white;
}

.arrow {
    margin-left: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

/* Animation Effects */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.package-container {
    animation: fadeInScale 0.6s ease-out forwards;
}


/* FAQ Section Styles */
.faq-section {
    max-width: 1600px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-heading {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    animation: fadeIn 0.8s ease-out;
}

.faq-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

#section-text {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-pop);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.faq-item:nth-child(1) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.5s;
}

.faq-item:hover {
    box-shadow: var(--shadow-pop-hover);
}

.faq-question {
    background-color: var(--light);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--primary);
}

.faq-question::after {
    content: '>';
    font-weight: bold;
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(90deg);
}

.faq-answer {
    background-color: var(--light-gray);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 50px 70px;
}

.faq-answer p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.conversation-details {
    background: var(--light);
    padding: 35px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 3px solid var(--primary);
    animation: fadeIn 0.5s ease-out;
}

.conversation-details h4 {
    margin-top: 0;
    color: var(--dark);
    font-size: 1.1rem;
}

.conversation-details ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.conversation-details li {
    margin-bottom: 8px;
    color: var(--dark);
}

.show-details-btn {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.show-details-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.show-details-btn::after {
    content: '↓';
    transition: transform 0.3s ease;
}

.show-details-btn.active::after {
    transform: rotate(180deg);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* marque row start */
.marquee-section {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.marquee-row {
    display: flex;
    gap: 30px;
    white-space: nowrap;
    will-change: transform;
    align-items: center;
}

.marquee-row img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s;
}

.marquee-row img:hover {
    transform: scale(1.2);
}

/* Animations */
.left-to-right {
    animation: marquee-ltr 30s linear infinite;
}

.right-to-left {
    animation: marquee-rtl 30s linear infinite;
}

@keyframes marquee-ltr {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

@keyframes marquee-rtl {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* .marquee-row end */


/* ==================== */
/*   RESPONSIVE DESIGN  */
/* ==================== */



/* Base responsive breakpoints */
@media (min-width: 481px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for medium phones */
  }
}

@media (min-width: 769px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
  }
}

@media (min-width: 993px) {
  .solution-grid {
    grid-template-columns: repeat(4, 1fr); /* 4x4 on desktop */
  }
  
  .mobile-drawer {
    display: none !important;
  }
  
  .nav-desktop {
    display: flex;
  }
  
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  #footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .footer-section {
    align-items: center;
    text-align: center;
  }

  #social-links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  #footer-grid {
    grid-template-columns: 1fr;
  }
}

/* 📱 Small Phones (320px - 480px) - IMPROVED */
@media (max-width: 480px) {
  :root {
    --container-padding: 12px;
    --fs-h1: 1.5rem;
    --fs-h2: 1.3rem;
    --fs-h3: 1.1rem;
    --fs-p: 0.9rem;
    --radius: 10px;
  }
  
  /* Improve touch targets for mobile */
  body {
    padding: 10px;
    line-height: 1.5;
    -webkit-tap-highlight-color: transparent;
  }

  .navbar {
    padding: 8px 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
  }

  .nav-logo img {
    height: 32px;
    max-width: 100%;
  }

  .mobile-drawer {
    width: 85%;
    top: 60px;
    height: calc(100vh - 60px);
    right: -100%;
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(15px);
    -webkit-backdrop-filter: saturate(180%) blur(15px);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 16px 0 0 16px;
  }

  .mobile-drawer[data-visible="true"] {
    right: 0;
  }

  .mobile-links {
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
  }

  .mobile-links a {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
  }

  .mobile-links a:hover,
  .mobile-links a:focus {
    color: var(--primary);
    outline: none;
  }

  .mobile-btn {
    margin-top: 20px;
    padding: 12px;
    text-align: center;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
    font-size: 16px;
  }

  .mobile-btn:hover,
  .mobile-btn:focus {
    background: var(--primary);
    color: var(--light);
    outline: none;
  }

  .hero {
    padding: 30px 12px;
    margin: 50px 0 20px;
    border-radius: 16px;
    flex-direction: column;
    text-align: center;
    min-height: auto;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: var(--fs-h1);
    margin: 0 auto 12px;
    padding: 0;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .hero-content p {
    margin: 0 auto 16px;
    padding: 0;
    font-size: var(--fs-p);
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px auto;
    padding: 0;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 260px;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
  }

  #insta-loader {
    max-height: 200px;
    margin: 0 auto;
    width: 200px;
  }

  .lottie-container {
    padding-bottom: 70%;
  }

  .business-card {
    padding: 16px 12px;
    margin-top: 20px;
  }

  .business-title {
    font-size: var(--fs-h2);
    line-height: 1.3;
    margin-left: 15px;
  }

  .business-description {
    font-size: var(--fs-p);
    text-align: left;
    margin: 0 auto;
    padding: 0 10px;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .business-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 16px;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
  }

  .feature-title {
    font-size: var(--fs-h3);
    padding: 0;
    margin-bottom: 4px;
  }

  .feature-detail {
    font-size: var(--fs-p);
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    margin: 0 auto;
  }

 .cta-container {
  flex-direction: column;
  align-items: center; /* center me rakhe */
}

.cta-button {
  width: 200px;        /* Fixed width instead of 90% */
  max-width: 80%;      /* Responsive ke liye */
  padding: 12px 18px;
  font-size: 16px;
  border-radius: 8px;
  text-align: center;
}

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 var(--container-padding);
  }

  .service-card {
    max-width: 100%;
    padding: 16px;
    min-height: auto;
    margin-bottom: 12px;
  }

  .service-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .service-icon-img {
    width: 50px;
    height: 50px;
  }

  .service-title {
    font-size: var(--fs-h3);
  }

  .service-description {
    font-size: var(--fs-p);
  }

  .service-btn {
    padding: 8px 10px;
    font-size: 10px;
  }

  .water-waves {
    height: 50px;
  }

  .offer-button a {
    display: block;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    margin: 8px auto;
    border-radius: 8px;
  }

  .solution-card {
    padding: 16px;
    margin: 0 auto;
    max-width: 100%;
  }

  .solution-card img {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    display: block;
  }

  .solution-card h4 {
    font-size: var(--fs-h3);
    margin-bottom: 8px;
  }

  .solution-card p {
    font-size: var(--fs-p);
    line-height: 1.5;
  }

  .faq-heading {
    font-size: var(--fs-h2);
  }

  .faq-question h3 {
    font-size: var(--fs-h3);
  }

  .conversation-details {
    padding: 10px;
  }

  .package-container {
    padding: 16px 12px;
  }

  .heading-line1 {
    font-size: 16px;
  }

  .heading-line2 {
    font-size: 20px;
  }

  .stats {
    font-size: 14px;
  }

  .cta-button {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    font-size: 14px;
  }

  .features-heading {
    font-size: var(--fs-h2);
  }

  .toggle-row {
    flex-direction: column;
    gap: 10px;
  }

  .toggle-group {
    flex-direction: column;
  }

  .pricing-container {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 var(--container-padding);
  }

  .pricing-card {
    padding: 16px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .discounted-price {
    font-size: 16px;
  }

  .demo-container {
    padding: 16px;
    grid-template-columns: 1fr;
  }

  .demo-content h1 {
    font-size: var(--fs-h1);
  }

  .demo-form-section {
    padding: 16px;
    margin-top: 16px;
    border-radius: 12px;
  }

  .demo-form-section h2 {
    font-size: var(--fs-h2);
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 16px; /* Better for mobile UX */
    border-radius: 8px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
  }

  .brand-card {
    width: 90px;
    height: 40px;
    margin: 0 auto;
  }

  .brand-card img {
    max-height: 28px;
    max-width: 100%;
  }

  .brand-logos {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trusted-title {
    font-size: 14px;
  }

  .about-offer {
    padding: 12px;
    text-align: center;
  }

  .offer-title {
    font-size: 16px;
    margin: 8px 0;
  }

  .offer-video {
    max-height: 180px;
    border-radius: 8px;
  }

  .offer-list {
    gap: 6px;
    margin: 12px 0;
    padding-left: 20px;
  }

  .offer-list li {
    font-size: 14px;
    text-align: left;
    line-height: 1.4;
  }

  .offer-button {
    margin-top: 12px;
  }

  .form-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .input-button-row {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Prevent horizontal scrolling */
  .container, .solution-grid, .services-grid, .pricing-container {
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* 📱 Medium Phones (481px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
  :root {
    --container-padding: 16px;
    --fs-h1: 1.7rem;
  }

  .hero-content h1 {
    font-size: var(--fs-h1);
  }

  .business-card {
    padding: 20px 16px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-container {
    grid-template-columns: 1fr;
  }

  .about-offer {
    min-width: 100%;
  }
}

/* Additional improvements for very small devices */
@media (max-width: 350px) {
  :root {
    --container-padding: 10px;
    --fs-h1: 1.4rem;
    --fs-h2: 1.2rem;
    --fs-h3: 1rem;
    --fs-p: 0.85rem;
  }
  
  .hero-content h1 {
    font-size: var(--fs-h1);
  }

  .business-title {
    font-size: var(--fs-h2);
  }

  .feature-title {
    font-size: var(--fs-h3);
  }

  .feature-detail {
    font-size: var(--fs-p);
  }

  .mobile-drawer {
    width: 90%;
  }

  .solution-card {
    padding: 12px;
  }

  .solution-card img {
    width: 36px;
    height: 36px;
  }
  
}

/* Orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 20px var(--container-padding);
  }

  .mobile-drawer {
    height: calc(100vh - 50px);
  }

  .business-card {
    padding: 12px;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .nav-logo img {
    transform: translateZ(0);
  }

  .feature-icon,
  .solution-card img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .mobile-drawer {
    transition: none;
  }

  .solution-card:hover {
    transform: none;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --light: #1a1a1a;
    --dark: #ffffff;
    --text: #e6e6e6;
  }

  .mobile-drawer {
    background: rgba(26, 26, 26, 0.95);
  }

  .mobile-links a {
    color: #e6e6e6;
    border-bottom: 1px solid #333;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hero-buttons,
  .cta-button,
  .offer-button,
  .water-waves,
  .nav-toggle,
  .mobile-drawer {
    display: none !important;
  }

  .business-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .solution-card {
    break-inside: avoid;
    border: 1px solid #ccc;
    box-shadow: none;
  }
}

/* Solution card backgrounds (applied to all screen sizes) */
.solution-card:nth-child(1) {
  background: linear-gradient(135deg, #fdf2f7, #fce4ed);
}

.solution-card:nth-child(2) {
  background: linear-gradient(135deg, #f0f7fd, #e4f0fc);
}

.solution-card:nth-child(3) {
  background: linear-gradient(135deg, #fdf7f2, #fceee4);
}

.solution-card:nth-child(4) {
  background: linear-gradient(135deg, #f2fdf2, #e4fce4);
}

.solution-card:nth-child(5) {
  background: linear-gradient(135deg, #fdf2fd, #fce4fc);
}

.solution-card:nth-child(6) {
  background: linear-gradient(135deg, #f2f2fd, #e4e4fc);
}

/* Dark mode solution card backgrounds */
@media (prefers-color-scheme: dark) {
  .solution-card:nth-child(1) {
    background: linear-gradient(135deg, #2a1a25, #3a1a2a);
  }

  .solution-card:nth-child(2) {
    background: linear-gradient(135deg, #1a253a, #1a2a3a);
  }

  .solution-card:nth-child(3) {
    background: linear-gradient(135deg, #2a251a, #3a2a1a);
  }

  .solution-card:nth-child(4) {
    background: linear-gradient(135deg, #1a3a1a, #1a3a2a);
  }

  .solution-card:nth-child(5) {
    background: linear-gradient(135deg, #2a1a3a, #3a1a3a);
  }

  .solution-card:nth-child(6) {
    background: linear-gradient(135deg, #1a1a3a, #2a1a3a);
  }
}   /* ---------- Offer Popup ---------- */
#popupOverlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.4s ease-in-out;
}

.popup-box {
  background: var(--light);
  color: var(--dark);
  border: 7px solid var(--primary);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-pop);
  width: 90%;
  max-width: 950px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  top: 80px;
  animation: slideUp 0.5s ease-out;
}

#toastClose {
  position: absolute;
  top: 0px;
  right: 18px;
  cursor: pointer;
  font-size: 50px;
  font-weight: bold;
  color: var(--dark);
  transition: transform 0.2s ease;
}
#toastClose:hover {
  transform: scale(1.2);
  color: crimson;
}

.popup-left {
  flex: 1;
  min-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.popup-left h2 { font-size: 26px; font-weight: 800; margin-bottom: 15px; }
.popup-left p { font-size: 18px; margin-bottom: 10px; }
.popup-left p strong { color: var(--primary); }
.popup-left .highlight { font-size: 32px; font-weight: 900; color: crimson; }

.popup-right { flex: 1; min-width: 300px; }
.popup-right h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }

#offerForm { display: flex; flex-direction: column; gap: 15px; }
#offerForm input, #offerForm textarea {
  padding: 12px 15px;
  border: 2px solid var(--light);
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}
#offerForm input:focus, #offerForm textarea:focus {
  border-color: #28a745;
  box-shadow:var(--shadow-pop);
}
#offerForm button {
  background: var(--dark);
  color: var(--light);
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
#offerForm button:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-2px);
}

/* ---------- QR Toast ---------- */
.qr-toast-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 9998;
}

.qr-toast {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 30px;
  width: 600px; height: 600px;
  text-align: center;
  box-shadow: var(--shadow-pop);
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 9999;
}
.qr-toast.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.qr-toast h3 { font-size: 28px; margin-bottom: 20px; }
.qr-toast img {
  width: 300px; height: 300px;
  border: 3px solid var(--light); border-radius: 12px;
  margin: 20px 0; box-shadow: var(--shadow-pop);
}
.qr-toast button {
  margin: 10px; padding: 16px 28px;
  font-size: 20px; font-weight: 600;
  border-radius: 10px; cursor: pointer;
  background: linear-gradient(135deg, var(--primary) , var(--secondary));
  color: var(--light); border: none;
  transition: 0.3s;
}
.qr-toast button:hover { background: linear-gradient(135deg, var(--primary), var(--secondary)); transform: translateY(-3px); }
.qr-toast .close-btn {
  position: absolute; top: 16px; right: 20px;
  font-size: 26px; cursor: pointer; color: var(--dark-gray);
}
.qr-toast .close-btn:hover { color: var(--dark); }
#error-messages{
  margin-block: 10px;
  color: red;
}
/* ---------- Animations ---------- */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes slideUp { from{transform:translateY(50px);opacity:0} to{transform:translateY(0);opacity:1} }
