:root {
  --primary: #1F5D7A;      /* logo blue */
  --secondary: #55CFA4;    /* logo green */
  --text-dark: #123D4A;
  --text-muted: #5f7d88;
  --bg-soft: #CDFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(90deg, var(--bg-soft) 0%, #ffffff 60%);
  color: var(--text-dark);
}


/* ================= SINGLE BANNER ================= */
/* ================= BANNER IMAGE (2250x917) ================= */
/* ================= HERO BANNER FIX ================= */

/* Large Tablets */
@media (max-width: 1024px) {
  .hero-banner {
    height: 440px;
    margin-top: 80px;
  }
}

/* Tablets & Large Mobiles */
@media (max-width: 768px) {
  .hero-banner {
    height: 320px;
    margin-top: 70px;
    background-position: center top;
  }
}

/* Standard Mobiles (Samsung, iPhone) */
@media (max-width: 576px) {
  .hero-banner {
    height: 280px;
    margin-top: 65px;
    background-position: center top;
  }
}

/* Small Mobiles (iPhone SE etc.) */
@media (max-width: 375px) {
  .hero-banner {
    height: 240px;
    margin-top: 95px;
  }
  
}

/* ================= STICKY HEADER ================= */
.site-header {
  position: fixed; /* Makes it sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Ensures it stays on top */
  transition: all 0.3s ease; /* Smooth transitions */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
}

/* Optional: Add a class for when scrolling */
.site-header.scrolled {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Keep your original header styles, just adding to them */
.site-header {
  height: 80px;
  display: flex;
  align-items: center;
  background-color: #ffffff; /* Added for better mobile visibility */
}

.header-inner {
  width: 100%;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 80px;
  transition: height 0.3s ease; /* Smooth logo resize */
}

.site-header.scrolled .logo img {
  height: 70px; /* Slightly smaller on scroll */
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  margin: 0 20px;
  text-decoration: none;
  color: var(--primary); /* Your variable */
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary); /* Keep original on hover or add darker shade */
  opacity: 0.8;
}

/* Optional hover effect */
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary); /* Using your secondary color */
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

.btn-primary {
  background: var(--secondary); /* Your variable */
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
}

.mobile-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: var(--primary); /* Your variable */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile CTA Button */
.mobile-cta {
  display: none;
}

/* ================= MEDIA QUERIES ================= */

/* Tablet (1024px and below) */
@media screen and (max-width: 1024px) {
  .header-inner {
    padding: 0 40px;
  }
  
  .main-nav a {
    margin: 0 15px;
  }
}

/* Small Tablet (900px and below) */
@media screen and (max-width: 900px) {
  .header-inner {
    padding: 0 30px;
  }
  
  .main-nav a {
    margin: 0 12px;
  }
  
  .btn-primary {
    padding: 10px 18px;
  }
}

/* Mobile (768px and below) */
@media screen and (max-width: 768px) {
  .site-header {
    height: 70px; /* Slightly smaller on mobile */
  }
  
  .header-inner {
    padding: 0 20px;
  }
  
  /* Show mobile toggle */
  .mobile-toggle {
    display: flex;
  }
  
  /* Hide desktop nav, show mobile version */
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
  }
  
  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .main-nav a {
    margin: 0;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .main-nav a:last-child {
    border-bottom: none;
  }
  
  /* Hide hover effect on mobile */
  .main-nav a::after {
    display: none;
  }
  
  .logo img {
    height: 60px; /* Smaller logo on mobile */
  }
  
  /* Hide desktop CTA */
  .header-cta {
    display: none;
  }
  
  /* Show mobile CTA */
  .mobile-cta {
    display: block;
    text-align: center;
    margin-top: 20px;
    width: 100%;
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .header-inner {
    padding: 0 15px;
  }
  
  .logo img {
    height: 50px;
  }
}

/* ================= HERO ================= */
.hero-section {
  padding: 70px 64px 90px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.hero-left {
  max-width: 620px;
}

.breadcrumb {
  font-size: 14px;
  color: #6c8e9b;
  margin-bottom: 26px;
}

.hero-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 14px;
}

.hero-title {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--secondary);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 560px;
}

.hero-note {
  font-size: 16px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.link-secondary {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
}

/* RIGHT */
.hero-right img {
  max-width: 800px  ;
  width: 100%;
}
/* ================= TRUSTED SCHOOLS ================= */
.trusted-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  overflow: hidden;
}

.trusted-inner {
  padding-left: 64px;
}

.trusted-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.trusted-track::-webkit-scrollbar {
  display: none;
}

.trusted-card {
  min-width: 160px;
  height: 96px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(18, 61, 74, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusted-card img {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: 0.3s;
}

.trusted-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(18, 61, 74, 0.12);
}

.trusted-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
/* ================= HERO WRAP ================= */
.hero-wrap {
  background: linear-gradient(90deg, var(--bg-soft) 0%, #ffffff 60%);
  padding: 20px 64px 30px;
  margin-top: 90px;
}

/* HERO MAIN */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.hero-left {
  max-width: 620px;
}

.breadcrumb {
  font-size: 14px;
  color: #6c8e9b;
  margin-bottom: 26px;
}

.hero-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 14px;
}

.hero-title {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--secondary);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 560px;
}

.hero-note {
  font-size: 16px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}


/* ================= TRUSTED INLINE ================= */
.trusted-inline {
  margin-top: 70px;
  padding-bottom: 80px;
}

.trusted-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-left: 64px;
  scrollbar-width: none;
}

.trusted-track::-webkit-scrollbar {
  display: none;
}

.trusted-card {
  min-width: 160px;
  height: 96px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(18, 61, 74, 0.06);
  transition: 0.3s ease;
}

.trusted-card img {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: 0.3s;
}

.trusted-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(18, 61, 74, 0.12);
}

.trusted-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
/* ================= PRICING SECTION ================= */

.adh-pricing {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f6faf7, #f6faf7);
  font-family: "Poppins", sans-serif;
}

/* Container */
.adh-container {
  max-width: 1300px;
  margin: auto;
}

/* Title */
.adh-pricing-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 70px;
  background: linear-gradient(90deg, #0b5ed7, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid */
.adh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

/* ================= CARD ================= */

.adh-price-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 38px 34px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    0 30px 60px rgba(15, 23, 42, 0.08);
  position: relative;

  display: flex;
  flex-direction: column;
  height: 100%;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.adh-price-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.12),
    0 40px 80px rgba(15, 23, 42, 0.15);
    background: linear-gradient(180deg, #e6f2fa, #d6eaf6);
    border: 2px solid rgba(11, 94, 215, 0.15);
}

/* Badge (Postpaid / Prepaid) */
.adh-badge {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 17px;
  font-weight: 600;
  color: #475569;
}

/* ================= PLAN BADGES ================= */

.adh-plan-badge,
.adh-plan-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 32px;
  margin: 0 auto 18px auto;

  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.9px;

  color: #ffffff;
  background: linear-gradient(135deg, #0b5ed7, #20c997);

  cursor: pointer;
  position: relative;
  overflow: visible;

  /* BASE SHADOW */
  box-shadow:
    0 10px 26px rgba(11, 94, 215, 0.35),
    0 0 0 rgba(32, 201, 151, 0.0);

  animation: livePulse 3s ease-in-out infinite;
}
@keyframes livePulse {
  0% {
    box-shadow:
      0 10px 26px rgba(11, 94, 215, 0.35),
      0 0 0 rgba(32, 201, 151, 0.0);
  }

  50% {
    box-shadow:
      0 14px 34px rgba(11, 94, 215, 0.45),
      0 0 22px rgba(32, 201, 151, 0.55);
  }

  100% {
    box-shadow:
      0 10px 26px rgba(11, 94, 215, 0.35),
      0 0 0 rgba(32, 201, 151, 0.0);
  }
}
.adh-plan-badge:hover,
.adh-plan-pro:hover {
  animation-play-state: paused;
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px rgba(11, 94, 215, 0.45),
    0 0 26px rgba(32, 201, 151, 0.6);
}


.adh-plan-badge i,
.adh-plan-pro i {
  font-size: 13px;
}

/* ================= PRICE TEXT ================= */

.adh-price-text {
  font-size: 15px;
  color: #475569;
  margin: 6px 0;
}

.adh-price-card h4 {
  margin: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

/* ================= FEATURE LIST ================= */

.adh-feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  flex-grow: 1;
}

.adh-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 14px;
  color: #334155;
  border-bottom: 1px dashed #e2e8f0;
}

.adh-feature-list li i {
  font-size: 14px;
  color: #16a34a;
}

/* Disabled Features */
.adh-feature-list li.disabled {
  color: #94a3b8;
}

.adh-feature-list li.disabled i {
  color: #ef4444;
}

/* ================= BUTTON ================= */

.adh-btn {
  margin-top: auto;
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;

  background: linear-gradient(135deg, #0b5ed7, #20c997);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  transition: all 0.3s ease;
}

.adh-btn:hover {
  background: #ffffff;
  color: #0f172a;
}

.adh-btn-dark {
  background: linear-gradient(135deg, #0b5ed7, #20c997);
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .adh-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .adh-pricing-grid {
    grid-template-columns: 1fr;
  }

  .adh-pricing-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}


/* ================= PROVIDE SECTION ================= */

.adh-provide-section {
  padding: 60px 20px;
  background:  linear-gradient(135deg, #4f8ff7, #38cfa0);
  font-family: "Poppins", sans-serif;
}



/* ================= HEADER ================= */

.adh-provide-header {
  text-align: center;
  margin-bottom: 60px;
}

.adh-provide-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0b3c8c;
}

.adh-provide-header p {
  max-width: 800px;
  margin: 10px auto 0;
  font-size: 17px;
  color: #444;
}

/* ================= WRAPPER ================= */

.adh-provide-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= LEFT CARDS ================= */
/* ================= PROVIDE SECTION ================= */

.adh-provide-section {
  position: relative;
  min-height: 350vh;
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

/* ================= HEADER ================= */

.adh-provide-header {
  position: sticky;
  top: 20px;
  z-index: 20;
  text-align: center;
  margin-bottom: 40px;
  background: #ffffff;
}

.adh-provide-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b3c8c;
}

.adh-provide-header p {
  max-width: 800px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #555;
}

/* ================= WRAPPER ================= */

.adh-provide-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  position: sticky;
  top: 120px;
  align-items: center;
}

/* ================= LEFT VIEWPORT (MASK) ================= */

.adh-provide-cards {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ================= CARD (LOGIC ONLY — NO UI) ================= */

.adh-provide-card {
  position: absolute;
  inset: 0;
  max-width: 520px;
  width: 100%;

  /* REMOVE CARD UI COMPLETELY */
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;

  opacity: 0;
  pointer-events: none;
}

.adh-provide-card.active {
  opacity: 1;
  pointer-events: auto;
}

/* ================= TEXT (SCROLL CONTROLLED) ================= */

.adh-provide-card h4,
.adh-card-desc,
.adh-card-points p {
  opacity: 0;
  transform: translateY(120px);
  will-change: transform, opacity;
}

/* ================= TITLE ================= */

.adh-provide-card h4 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 600;
  color: #0b3c8c;
}

/* ================= DESCRIPTION ================= */

.adh-card-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ================= POINTS ================= */

.adh-card-points p {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Tick Icon */
.adh-card-points p::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  background: #4caf50;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= RIGHT IMAGE ================= */

.adh-provide-image {
  position: sticky;
  top: 140px;
  display: flex;
  justify-content: center;
}

.adh-provide-image img {
  width: 440px;
  height: 380px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  transition: opacity 0.35s ease;
  background: transparent;
}



/* ================= APP DOWNLOAD SECTION ================= */

.adh-app-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f7f9fa, #f7f9fa);
  font-family: "Poppins", sans-serif;
}

.adh-app-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT IMAGE */
.adh-app-mockup {
  text-align: center;
}

.adh-app-mockup img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 25px 45px rgba(0,0,0,0.25));
  transition: transform 0.4s ease;
}

.adh-app-mockup img:hover {
  transform: translateY(-10px) scale(1.02);
}

/* RIGHT CONTENT */
.adh-app-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b3c7c;
  margin-bottom: 20px;
}

.adh-app-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 35px;
  text-align: justify;
}

/* STORE BUTTONS */
.adh-store-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.adh-store-btn {
  display: inline-block;
  transition: transform 0.3s ease;
}

.adh-store-btn img {
  height: 60px;
  width: auto;
}

.adh-store-btn:hover {
  transform: scale(1.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .adh-app-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .adh-app-content h2 {
    font-size: 32px;
  }

  .adh-store-buttons {
    justify-content: center;
  }

  .adh-app-mockup img {
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .adh-app-content h2 {
    font-size: 24px;
  }

  .adh-app-content p {
    font-size: 15px;
  }

  .adh-store-btn img {
    height: 50px;
  }
}
/* ================= BENEFITS SECTION ================= */

.adh-benefits-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f4f7ff, #eef9ff);
  font-family: "Poppins", sans-serif;
}

.adh-benefits-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #0b3c8c;
}

.adh-benefits-title span {
  background: linear-gradient(90deg, #0b5ed7, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.adh-benefits-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

/* WRAPPER */
.adh-benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.adh-benefits-image {
  display: flex;
  justify-content: center;
}

.adh-benefits-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
  transition: transform 0.4s ease;
}

.adh-benefits-image img:hover {
  transform: scale(1.04);
}

/* LIST */
.adh-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ITEM */
.adh-benefit-item {
  display: flex;
  gap: 18px;
  padding: 22px 26px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adh-benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* ICON */
.adh-benefit-icon {
  font-size: 22px;
  color: #20c997;
  flex-shrink: 0;
  margin-top: 4px;
}

/* TEXT */
.adh-benefit-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0b3c8c;
  margin-bottom: 6px;
}

.adh-benefit-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .adh-benefits-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .adh-benefits-list {
    align-items: center;
  }

  .adh-benefit-item {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .adh-benefits-title {
    font-size: 32px;
  }

  .adh-benefits-intro {
    font-size: 15px;
  }
}
/* ================= MODULE SECTION ================= */

.adh-module-section {
  padding: 80px 20px;
  background: #ebf2ff;
  font-family: "Poppins", sans-serif;
}

.adh-module-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #0b3c8c;
}

/* GRID */
.adh-module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.adh-module-card {
  background: #ffffff;
  border-radius: 16px;
  height: 160px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.35s ease;
}

/* Bottom border */
.adh-module-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-radius: 0 0 16px 16px;
}

/* ICON */
.adh-module-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.35s ease;
}

/* TEXT */
.adh-module-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  transition: color 0.35s ease;
}

/* COLORS */
.blue::after { background: #2aa7ff; }
.orange::after { background: #ff9800; }
.green::after { background: #00c853; }
.red::after { background: #f44336; }

.blue .adh-module-icon { background: #e3f2fd; color: #2aa7ff; }
.orange .adh-module-icon { background: #fff3e0; color: #ff9800; }
.green .adh-module-icon { background: #e8f5e9; color: #00c853; }
.red .adh-module-icon { background: #fdecea; color: #f44336; }

/* ================= HOVER EFFECT (DARK / COLORED CARD) ================= */

.adh-module-card:hover {
  transform: translateY(-6px);
}

.adh-module-card.blue:hover {
  background: #2aa7ff;
}
.adh-module-card.orange:hover {
  background: #ff9800;
}
.adh-module-card.green:hover {
  background: #00c853;
}
.adh-module-card.red:hover {
  background: #f44336;
}

.adh-module-card:hover h4 {
  color: #ffffff;
}

.adh-module-card:hover .adh-module-icon {
  background: #ffffff;
}
/* ================= CARD BACKGROUND IMAGES ================= */

.adh-module-card {
  overflow: hidden;
}

/* shared image style */
.adh-card-bg {
  position: absolute;
  top: 50%;
  width: 110px;
  opacity: 0.12;
  transform: translateY(-50%);
  transition: all 0.35s ease;
  pointer-events: none;
}

/* positions */
.adh-card-bg.left {
  left: -35px;
}

.adh-card-bg.right {
  right: -35px;
}

/* default color by card */
.adh-module-card.blue .adh-card-bg {
  filter: invert(41%) sepia(93%) saturate(1600%) hue-rotate(190deg);
}

.adh-module-card.orange .adh-card-bg {
  filter: invert(55%) sepia(80%) saturate(1700%) hue-rotate(5deg);
}

.adh-module-card.green .adh-card-bg {
  filter: invert(52%) sepia(92%) saturate(1200%) hue-rotate(90deg);
}

.adh-module-card.red .adh-card-bg {
  filter: invert(45%) sepia(80%) saturate(1600%) hue-rotate(330deg);
}

/* hover → image turns white */
.adh-module-card:hover .adh-card-bg {
  filter: brightness(0) invert(1);
  opacity: 0.18;
}


/* ================= CTA STRIP ================= */

.adh-cta-strip {
  background: linear-gradient(135deg, #4f8ff7, #38cfa0);
  padding: 45px 20px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.adh-cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.adh-cta-left h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 15px 0 10px;
}

.adh-cta-left p {
  font-size: 16px;
  opacity: 0.95;
}

/* Badge */
.adh-cta-badge {
  display: inline-block;
  background: #ffffff;
  color: #0b3c8c;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 6px;
}

/* RIGHT */
.adh-cta-right {
  text-align: center;
}

.adh-cta-right p {
  margin-bottom: 10px;
  font-size: 14px;
}

.adh-cta-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #ffffff;
  color: #0b3c8c;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.adh-cta-btn:hover {
  background: #0b3c8c;
  color: #ffffff;
}

/* ================= LOGIN STRIP ================= */

.adh-login-strip {
  background: radial-gradient(circle at top, #0b1323, #020617);
  padding: 45px 20px;
  color: #d1d5db;
}

.adh-login-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.adh-login-left {
  max-width: 450px;
}

.adh-brand {
  font-size: 28px;
  font-weight: 800;
  color: #4fd1a5;
  margin-bottom: 10px;
}

.adh-login-left p {
  font-size: 14px;
  line-height: 1.7;
}

/* RIGHT BUTTONS */
.adh-login-right {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.adh-login-btn {
  padding: 10px 18px;
  background: #0b3c8c;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.adh-login-btn:hover {
  background: #38cfa0;
  color: #0b1323;
}

.adh-login-btn.primary {
  background: #38cfa0;
  color: #0b1323;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .adh-cta-container,
  .adh-login-container {
    flex-direction: column;
    text-align: center;
  }

  .adh-login-right {
    justify-content: center;
  }
}






/* ARROWS – NOT OVERLAPPING */
.adh-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
}


/* ===== FAQ SECTION : ADHAYAYAN ERP ===== */
.adh-faq-section {
  padding: 80px 20px;
  background: linear-gradient(120deg, #55cfa4 0%, #ffffff 100%);
  font-family: "Poppins", sans-serif;
}

.adh-faq-container {
  max-width: 900px;
  margin: auto;
}

.adh-faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0b3c8c;
  margin-bottom: 50px;
}

.adh-faq-item {
  background: #f1f4f3;
  border-radius: 6px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.adh-faq-item.active {
  background: #eaf6f0;
}

.adh-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.adh-faq-icon {
  font-size: 22px;
  font-weight: 600;
  color: #20c997;
}

.adh-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.adh-faq-item.active .adh-faq-answer {
  max-height: 220px;
  padding: 0 22px 18px;
}

/* Mobile */
@media (max-width: 600px) {
  .adh-faq-title {
    font-size: 28px;
  }

  .adh-faq-question {
    font-size: 15px;
  }
}
/* ================= BLOG SECTION ================= */
.adh-blog-section {
  padding: 80px 20px;
  background: #ebf2ff;
  font-family: "Poppins", sans-serif;
}

.adh-blog-container {
  max-width: 1200px;
  margin: auto;
}

.adh-blog-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 60px;
}

/* Grid */
.adh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.adh-blog-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.adh-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Image */
.adh-blog-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* Content */
.adh-blog-content {
  padding: 22px;
}

.adh-blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.adh-blog-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.adh-blog-content p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .adh-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .adh-blog-grid {
    grid-template-columns: 1fr;
  }

  .adh-blog-title {
    font-size: 28px;
  }
}


/* FORCE PURE WHITE BACKGROUND */
.erp-clean-section {
  background: #ffffff !important;
  padding: 80px 0;
}

/* GRID */
.erp-clean-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* COLUMNS */
.erp-clean-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ITEM */
.erp-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;

  /* REMOVE ALL CARD EFFECTS */
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

/* ICON */
.erp-icon {
  width: 56px;
  height: 56px;
  background: #1185ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* TEXT */
.erp-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.erp-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  max-width: 320px;
}

/* CENTER IMAGE */
.erp-clean-center img {

  max-width: 860px;
  display: block;
  margin: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .erp-clean-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.erp-section-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.erp-section-header h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.erp-section-header h2 span {
  color: #1185ff;
}

.erp-section-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}
/* ================== TABLET (≤ 992px) ================== */
@media (max-width: 992px) {
  .erp-clean-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .erp-clean-col {
    gap: 30px;
  }

  .erp-clean-center img {
    max-width: 100%;
  }

  .erp-section-header h2 {
    font-size: 34px;
  }
}

/* ================== MOBILE (≤ 768px) ================== */
@media (max-width: 768px) {
  .erp-item {
    gap: 16px;
  }

  .erp-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .erp-item h4 {
    font-size: 16px;
  }

  .erp-item p {
    font-size: 13px;
    max-width: 100%;
  }

  .erp-section-header h2 {
    font-size: 28px;
  }

  .erp-section-header p {
    font-size: 14px;
  }
}

/* ================== SMALL MOBILE (≤ 480px) ================== */
@media (max-width: 480px) {
  .erp-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .erp-icon {
    margin-bottom: 8px;
  }

  .erp-section-header {
    margin-bottom: 40px;
  }

  .erp-section-header h2 {
    font-size: 24px;
  }
}


/* -------------------------------------------- */
.erp-cta-section {
  background: #ebf2ff;
  padding: 80px 0;
}

.erp-cta-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.erp-cta-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.erp-cta-header h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.erp-cta-header h2 span {
  color: #1185ff;
}

.erp-cta-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.erp-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT CARD */
.erp-contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.erp-contact-card h3 {
  color: #1185ff;
  font-size: 22px;
  margin-bottom: 12px;
}

.erp-contact-card p {
  color: #555;
  margin-bottom: 20px;
}

.erp-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.erp-contact-list li {
  margin-bottom: 12px;
  font-size: 15px;
}

.erp-contact-list a {
  color: #1185ff;
  text-decoration: none;
}

.erp-contact-list a:hover {
  text-decoration: underline;
}

/* RIGHT CARD */
.erp-action-card {
  background: linear-gradient(135deg, #55cfa4, #55cfa4);
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.erp-action-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.erp-action-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.erp-cta-btn {
  background: #ffffff;
  color: #1185ff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.erp-cta-btn:hover {
  background: #f2f2f2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .erp-cta-grid {
    grid-template-columns: 1fr;
  }

  .erp-action-card {
    margin-top: 20px;
  }
}
/* FOOTER */
.adh-footer {
  background: #0b0f1a;
  color: #d1d5db;
  padding-top: 60px;
  font-size: 14px;
}

.adh-footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.6fr;
  gap: 60px;
}

/* COLUMNS */
.adh-footer-col h4 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #ffffff;
  position: relative;
}

.adh-footer-col h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #1185ff;
  margin-top: 6px;
}

.adh-footer-col p {
  line-height: 1.7;
  margin-bottom: 12px;
}

/* CONTACT */
.adh-footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* MAP */
.map-col iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
}

/* FOOTER BOTTOM */
.adh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  text-align: center;
}

.adh-footer-bottom p {
  margin-top: 14px;
  font-size: 13px;
}

.adh-footer-bottom span {
  color: #1185ff;
}

/* SOCIAL ICONS */
.adh-footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.adh-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.3s;
}

.adh-footer-socials a:hover {
  background: #1185ff;
  border-color: #1185ff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .adh-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-col iframe {
    height: 250px;
  }
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  text-decoration: none;
  color: #d1d5db;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #38cfa0;
}
@media (max-width: 768px) {
  .footer-nav {
    align-items: flex-start;
  }
}


/* FIXED LEFT ACTION BAR */
.adh-fixed-actions {
  position: fixed;
  left: 12px;
  top: 52%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* BUTTON */
.adh-action-item {
  display: flex;
  align-items: center;

  height: 48px;
  width: 48px;

  background: #000;
  border-radius: 999px;
  overflow: hidden;

  text-decoration: none;
  transition: width 0.35s ease;
}

/* ICON CIRCLE — THIS IS THE FIX */
.adh-icon {
  min-width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #fff;
}

/* TEXT */
.adh-text {
  padding-right: 18px;
  white-space: nowrap;

  font-size: 14px;
  color: #fff;

  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

/* HOVER */
.adh-action-item:hover {
  width: 220px;
}

.adh-action-item:hover .adh-text {
  opacity: 1;
  transform: translateX(0);
}

/* FORCE ALL BLACK */
.adh-action-item,
.adh-action-item * {
  background: #000 !important;
  color: #fff !important;
}









/* MOBILE */
@media (max-width: 768px) {
  .adh-action-item:hover {
    width: 48px;
  }
  .adh-text {
    display: none;
  }
}
/*  banner section images css 31-12-2025 */

.hero-right img {
  width: 700px;
  height: 400px;

  /* or cover */
}


/* client logos section css */

.logo-slider-wrap {
  position: relative;
  width: 100%;
  padding: 40px 70px;
  background: #f6faf7;
  box-sizing: border-box;
}

/* SCROLL CONTAINER */
.logo-slider {
  overflow-x: auto;
  scroll-behavior: smooth;

  /* REMOVE SCROLLBAR */
  -ms-overflow-style: none;
  /* IE */
  scrollbar-width: none;
  /* Firefox */
}

.logo-slider::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

/* FLEX TRACK */
.logo-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

/* CARD */
.logo-card {
  width: 220px;
  height: 150px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5ece9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* BIG LOGO */
.logo-card img {
  width: 180px;
  height: 120px;
  object-fit: contain;
  max-width: none;
  max-height: none;
}

/* ARROWS */
.logo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 22px;
  z-index: 10;
}

.logo-left {
  left: 15px;
}

.logo-right {
  right: 15px;
}

.logo-arrow:hover {
  background: #0f766e;
  color: #ffffff;
}
.device-showcase {
  padding: 80px 20px;
  background: #f5faf6;
  text-align: center;
  overflow: hidden;
}

.device-subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 6px;
}

.device-title {
  font-size: 34px;
  font-weight: 700;
  color: #1e90ff;
  margin-bottom: 50px;
}

/* SLIDER */
.device-slider {
  overflow: hidden;
  width: 100%;
}

.device-track {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  width: max-content;
}

/* DEVICE IMAGE */
.device-item {
  flex-shrink: 0;
}

.device-item img {
  height: 380px;
  object-fit: contain;
}


.testimonial-section {
  padding: 80px 20px;
  background: linear-gradient(120deg, #55cfa4 0%, #ffffff 100%);
  text-align: center;
  overflow: hidden;
}

.testimonial-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* SLIDER */
.testimonial-slider {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.testimonial-track {
  display: flex;
  gap: 40px;
  width: max-content;
  will-change: transform;
}

/* PHONE FRAME */
.testimonial-phone {
  width: 260px;
  height: 520px;
  background: #000;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

/* SCREEN */
.testimonial-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-phone {
    width: 220px;
    height: 440px;
  }
}
:root {
  --provide-bg: linear-gradient(
  135deg,
  #55CFA4 0%,
  #ffffff 45%,
  #1F5D7A 100%
)

}
.adh-provide-section {
  position: relative;
  min-height: 350vh;
  padding: 80px 20px;
  background: var(--provide-bg);
  font-family: "Poppins", sans-serif;
}
.adh-provide-header,
.adh-provide-wrapper {
  background: transparent;
}












/* =========================================== */
/* MOBILE RESPONSIVE MEDIA QUERIES */
/* Organized by breakpoint priority */
/* =========================================== */

/* ================= UTILITY CLASSES FOR MOBILE ================= */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* ================= LARGE TABLETS & SMALL DESKTOPS (1024px and below) ================= */
@media (max-width: 1024px) {
  /* Layout Adjustments */
  .header-inner,
  .hero-section,
  .hero-wrap,
  .trusted-inner,
  .trusted-track {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  
  /* Hero Section */
  .hero-title {
    font-size: 42px;
  }
  
  .hero-right img {
    max-width: 500px;
    height: auto;
  }
  
  /* Pricing Grid */
  .adh-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Benefits Section */
  .adh-benefits-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* App Section */
  .adh-app-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  /* Provide Section */
  .adh-provide-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ================= TABLETS (768px to 1024px) ================= */
@media (max-width: 900px) {
  /* Pricing */
  .adh-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  /* Blog Grid */
  .adh-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* ERP Clean Grid */
  .erp-clean-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .erp-clean-center img {
    order: -1;
    margin-left: -10px;
  }
  
  /* Footer */
  .adh-footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .map-col {
    grid-column: span 2;
  }
}

/* ================= MOBILE DEVICES (768px and below) ================= */
@media (max-width: 768px) {
  /* Base Layout Fix */
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Header & Navigation */
  .site-header {
    height: auto;
    padding: 15px 0;
  }
  
  .header-inner {
    padding: 0 20px !important;
    flex-direction: row;
    gap: 15px;
  }
  
  .logo img {
    height: 60px;
  }
  
  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
  }
  
  .main-nav a {
    margin: 0 10px;
    font-size: 14px;
  }
  
  .header-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .demo-link {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 40px 20px 60px !important;
  }
  
  .hero-inner {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-left {
    text-align: center;
    max-width: 100% !important;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .hero-desc {
    font-size: 15px;
    margin: 0 auto 22px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-right {
    width: 100%;
  }
  
  .hero-right img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Trusted Schools Section */
  .trusted-section {
    padding: 40px 0;
  }
  
  .trusted-inner {
    padding-left: 20px !important;
  }
  
  .trusted-track {
    padding-left: 20px !important;
  }
  
  .trusted-card {
    min-width: 140px;
    height: 80px;
  }
  
  /* Pricing Section */
  .adh-pricing {
    padding: 40px 15px;
  }
  
  .adh-pricing-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .adh-price-card {
    padding: 30px 20px;
  }
  
  /* Provide Section */
  .adh-provide-section {
    min-height: auto !important;
    padding: 40px 20px !important;
  }
  
  .adh-provide-header {
    position: relative !important;
    top: 0 !important;
  }
  
  .adh-provide-header h2 {
    font-size: 28px;
  }
  
  .adh-provide-wrapper {
    position: relative !important;
    top: 0 !important;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .adh-provide-cards {
    height: auto;
  }
  
  .adh-provide-image {
    position: relative !important;
    margin-top: 40px;
  }
  
  .adh-provide-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  
  /* App Download Section */
  .adh-app-section {
    padding: 40px 20px;
  }
  
  .adh-app-content h2 {
    font-size: 28px;
  }
  
  .adh-app-content p {
    text-align: left;
  }
  
  .adh-store-buttons {
    justify-content: center;
  }
  
  /* Benefits Section */
  .adh-benefits-section {
    padding: 40px 20px;
  }
  
  .adh-benefits-title {
    font-size: 28px;
  }
  
  .adh-benefit-item {
    padding: 18px;
    flex-direction: column;
    text-align: center;
  }
  
  .adh-benefit-icon {
    margin-bottom: 10px;
  }
  
  /* Modules Section */
  .adh-module-section {
    padding: 40px 20px;
  }
  
  .adh-module-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .adh-module-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .adh-module-card {
    height: 140px;
    padding: 25px 15px;
  }
  
  /* CTA Strip */
  .adh-cta-container,
  .adh-login-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .adh-cta-left h2 {
    font-size: 24px;
  }
  
  /* FAQ Section */
  .adh-faq-section {
    padding: 40px 20px;
  }
  
  .adh-faq-title {
    font-size: 28px;
  }
  
  /* Blog Section */
  .adh-blog-section {
    padding: 40px 20px;
  }
  
  .adh-blog-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .adh-blog-grid {
    grid-template-columns: 1fr;
  }
  
  /* ERP Clean Section */
  .erp-clean-section {
    padding: 40px 20px !important;
  }
  
  .erp-section-header h2 {
    font-size: 28px;
  }
  
  /* ERP CTA Section */
  .erp-cta-section {
    padding: 40px 20px;
  }
  
  .erp-cta-header h2 {
    font-size: 28px;
  }
  
  .erp-cta-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .adh-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .adh-footer-socials {
    justify-content: center;
  }
  
  /* Fixed Actions */
  .adh-fixed-actions {
    display: none;
  }
  
  /* Logo Slider */
  .logo-slider-wrap {
    padding: 30px 20px;
  }
  
  .logo-card {
    width: 160px;
    height: 100px;
  }
  
  .logo-card img {
    width: 140px;
    height: 80px;
  }
  
  .logo-arrow {
    display: none;
  }
  
  /* Device Showcase */
  .device-showcase {
    padding: 40px 20px;
  }
  
  .device-title {
    font-size: 28px;
  }
  
  .device-item img {
    height: 250px;
  }
  
  /* Testimonials */
  .testimonial-section {
    padding: 40px 20px;
  }
  
  .testimonial-title {
    font-size: 28px;
  }
  
  .testimonial-phone {
    width: 200px;
    height: 400px;
  }
  
  /* Utility Classes */
  .mobile-only {
    display: block;
  }
  
  .desktop-only {
    display: none;
  }
}

/* ================= SMALL MOBILE DEVICES (480px and below) ================= */
@media (max-width: 480px) {
  /* Header */
  .main-nav {
    gap: 8px;
  }
  
  .main-nav a {
    margin: 0 8px;
    font-size: 13px;
  }
  
  .btn-primary {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  /* Hero */
  .hero-title {
    font-size: 28px;
  }
  
  .hero-tag,
  .breadcrumb {
    font-size: 13px;
  }
  
  .hero-desc,
  .hero-note {
    font-size: 14px;
  }
  
  /* Trusted Cards */
  .trusted-card {
    min-width: 120px;
    height: 70px;
  }
  
  /* Pricing */
  .adh-pricing-title {
    font-size: 24px;
  }
  
  /* Provide Section */
  .adh-provide-header h2 {
    font-size: 24px;
  }
  
  .adh-provide-card h4 {
    font-size: 20px;
  }
  
  /* Modules */
  .adh-module-grid {
    grid-template-columns: 1fr;
  }
  .adh-module-card h4{
    margin-top: -8px;
  }
  .adh-module-card {
    height: 130px;
  }
  
  /* FAQ */
  .adh-faq-title {
    font-size: 24px;
  }
  
  .adh-faq-question {
    font-size: 15px;
    padding: 15px 18px;
  }
  
  /* Blog */
  .adh-blog-title {
    font-size: 24px;
  }
  
  /* ERP Sections */
  .erp-section-header h2,
  .erp-cta-header h2 {
    font-size: 24px;
  }
  
  /* Store Buttons */
  .adh-store-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .adh-store-btn img {
    height: 45px;
  }
  
  /* Device Showcase */
  .device-title {
    font-size: 24px;
  }
  
  .device-item img {
    height: 200px;
  }
  
  /* Testimonials */
  .testimonial-title {
    font-size: 24px;
  }
  
  .testimonial-phone {
    width: 180px;
    height: 360px;
  }
}

/* ================= MOBILE LANDSCAPE ORIENTATION ================= */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-inner {
    flex-direction: row !important;
    align-items: center;
  }
  
  .hero-left {
    max-width: 50% !important;
    text-align: left;
  }
  
  .hero-right {
    max-width: 50% !important;
  }
  
  .hero-actions {
    flex-direction: row !important;
    justify-content: flex-start;
  }
  
  .adh-module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= VERY SMALL DEVICES (320px and below) ================= */
@media (max-width: 320px) {
  .hero-title {
    font-size: 24px;
  }
  
  .hero-actions .btn-primary {
    width: 100%;
    text-align: center;
  }
  
  .adh-module-card {
    padding: 20px 10px;
    height: 120px;
  }
  
  .adh-benefit-item {
    padding: 15px;
  }
  
  .testimonial-phone {
    width: 160px;
    height: 320px;
  }
  
  .device-item img {
    height: 180px;
  }
  
  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .main-nav a {
    text-align: center;
    padding: 8px 0;
    background: rgba(31, 93, 122, 0.1);
    border-radius: 6px;
  }
}

/* ================= SAMSUNG GALAXY FOLD & EXTRA NARROW DEVICES ================= */
@media (max-width: 280px) {
  .main-nav a {
    font-size: 12px;
    margin: 0 5px;
  }
  
  .hero-title {
    font-size: 22px;
  }
  
  .trusted-card {
    min-width: 100px;
    height: 60px;
  }
  
  .logo-card {
    width: 130px;
    height: 85px;
  }
  
  .logo-card img {
    width: 110px;
    height: 70px;
  }
  
  .btn-primary,
  .adh-btn {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* ================= TOUCH DEVICE OPTIMIZATIONS ================= */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .adh-action-item:hover,
  .trusted-card:hover,
  .adh-module-card:hover,
  .adh-blog-card:hover,
  .adh-price-card:hover,
  .adh-benefit-item:hover,
  .adh-app-mockup img:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(18, 61, 74, 0.06);
  }
  
  /* Add active states for touch feedback */
  .adh-action-item:active,
  .trusted-card:active,
  .adh-module-card:active,
  .btn-primary:active,
  .adh-btn:active {
    transform: scale(0.98) !important;
    opacity: 0.9;
  }
  
  /* Ensure minimum touch target size */
  .main-nav a,
  .btn-primary,
  .adh-btn,
  .adh-store-btn,
  .adh-cta-btn,
  .adh-login-btn {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ================= PRINT STYLES ================= */
@media print {
  .adh-fixed-actions,
  .logo-arrow,
  .adh-cta-btn,
  .adh-store-buttons {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero-right img,
  .adh-provide-image img,
  .adh-app-mockup img,
  .adh-benefits-image img,
  .erp-clean-center img {
    max-width: 300px !important;
    filter: grayscale(100%) !important;
  }
}

/* ================= DARK MODE SUPPORT (Optional) ================= */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
  body {
    background: #121212;
    color: #e0e0e0;
  }
  
  .hero-title,
  .adh-pricing-title,
  .adh-benefits-title,
  .adh-provide-header h2 {
    color: #ffffff;
  }
  
  .hero-desc,
  .adh-benefits-intro,
  .adh-app-content p {
    color: #b0b0b0;
  }
  
  .trusted-card,
  .adh-price-card,
  .adh-module-card,
  .adh-benefit-item,
  .adh-blog-card {
    background: #1e1e1e;
    color: #e0e0e0;
  }
}














/* ==================================================
   LOGIN SLIDER – MOBILE RESPONSIVE (ALL DEVICES)
   ================================================== */

@media (max-width: 767px) {

  /* Section spacing */
  .adh-login-section {
    padding: 50px 0;
  }

  /* Container stack */
  .adh-slider-container {
    flex-direction: column;
    gap: 15px;
    padding: 0 16px;
  }

  /* Viewport fix */
  .adh-slider-viewport {
    padding: 20px 0 30px;
    width: 100%;
  }

  /* Slider track */
  .adh-slider-track {
    gap: 16px;
  }

  /* CARD – show 1 card per screen */
  .adh-login-card {
    min-width: 100%;
    border-radius: 20px;
  }

  /* Card header */
  .adh-login-card-header {
    font-size: 18px;
    padding: 16px;
    border-radius: 20px 20px 0 0;
  }

  /* Card list */
  .adh-login-card ul {
    padding: 18px 20px;
  }

  .adh-login-card li {
    padding: 10px 0;
    font-size: 14px;
  }

  /* Arrows – move below slider */
  .adh-arrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .adh-arrow-left,
  .adh-arrow-right {
    position: static;
  }

  /* Arrow wrapper (recommended) */
  .adh-slider-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
}






/* =====================================================
   ALL MOBILE DEVICES (Small + Medium + Large Phones)
   ===================================================== */
@media (max-width: 768px) {

  /* ===== SECTION ===== */
  .adh-provide-section {
    min-height: auto;
    padding: 50px 15px;
  }

  /* ===== HEADER ===== */
  .adh-provide-header {
    position: relative;
    top: 0;
    margin-bottom: 30px;
    background: transparent;
  }

  .adh-provide-header h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .adh-provide-header p {
    font-size: 14px;
    padding: 0 10px;
  }

  /* ===== WRAPPER (STACK LAYOUT) ===== */
  .adh-provide-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
    position: relative;
    top: 0;
  }

  /* ===== CARDS CONTAINER ===== */
  .adh-provide-cards {
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* ===== CARD ===== */
  .adh-provide-card {
    position: relative;
    inset: auto;
   
    pointer-events: auto;
    max-width: 100%;
    margin-bottom: 30px;
    margin-top: -80px;
  }

  /* Remove scroll animation effects */
  .adh-provide-card h4,
  .adh-card-desc,
  .adh-card-points p {
    opacity: 1;
    transform: none;
  }

  /* ===== TEXT SIZES ===== */
  .adh-provide-card h4 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .adh-card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .adh-card-points p {
    font-size: 13px;
    padding-left: 30px;
    margin-bottom: 10px;
  }

  .adh-card-points p::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
    top: 2px;
  }

  /* ===== IMAGE ===== */
  .adh-provide-image {
    position: relative;
    top: 0;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }

  .adh-provide-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 16px;
  }
}



/* home page modules sofetware section css */

 .adh-login-section {
        padding: 70px 0;
        background: #f7f9fc;
        font-family: "Poppins", sans-serif;
        text-align: center;
      }

      .adh-benefits-title {
        font-size: 32px;
        margin-bottom: 40px;
      }

      .adh-benefits-title span {
        color: #1f5d7a;
      }

      /* ================= SLIDER ================= */
      .adh-slider-container {
        max-width: 1200px;
        margin: auto;
        position: relative;
      }

      .adh-slider-viewport {
        overflow: hidden;
      }

      .adh-slider-track {
        display: flex;
        gap: 20px; /* 🔥 IMPORTANT */
        transition: transform 0.5s ease;
      }

      /* ================= CARD ================= */
      .adh-login-card {
        flex: 0 0 calc((100% - 40px) / 3); /* 🔥 EXACT 3 cards */
        background: #fff;
        border-radius: 18px;
        padding: 30px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        text-align: left;
      }

      .adh-login-card-header {
        background: linear-gradient(90deg, #0b5ed7, #20c997);
        color: #fff;
        padding: 14px;
        border-radius: 12px;
        text-align: center;
        font-weight: 600;
        margin-bottom: 20px;
      }

      .adh-login-card ul {
        list-style: none;
        padding: 0;
      }

      .adh-login-card ul li {
        padding: 10px 0;
        border-bottom: 1px dashed #ddd;
        font-size: 14px;
      }

      /* ================= ARROWS ================= */
      .adh-arrow {
        position: absolute; /* 🔥 FIX */
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
        background: #1f5d7a;
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        z-index: 10;
      }

      .adh-arrow.left {
        left: -60px;
      }

      .adh-arrow.right {
        right: -60px;
      }

      /* ================= MOBILE ================= */
      @media (max-width: 768px) {
        .adh-login-card {
          flex: 0 0 100%;
        }

        .adh-arrow.left {
          left: 10px;
        }

        .adh-arrow.right {
          right: 10px;
        }




        .adh-login-card ul li
{
  margin-left: 61PX;
}
      }


      /* ================= ERP Slider Section - Updated Design ================= */

      .adh-erp-slider-section {
        padding: 70px 20px;
        background: #f7f9fc; /* section background same as home page */
        font-family: "Poppins", sans-serif;
        text-align: center;
      }

      .adh-erp-slider-title {
        text-align: center;
        font-size: 32px; /* same as home page */
        margin-bottom: 40px;
        color: #333;
      }

      .adh-erp-slider-title span {
        color: #1f5d7a; /* accent color same as home page */
      }

      /* ================= SLIDER ================= */
      .adh-erp-slider-wrapper {
        display: flex;
        align-items: center;
        gap: 15px;
        max-width: 1200px;
        margin: auto;
        position: relative;
      }

      .adh-erp-slider-viewport {
        overflow: hidden;
        width: 100%;
      }

      .adh-erp-slider-track {
        display: flex;
        gap: 20px;
        transition: transform 0.5s ease; /* smooth sliding like home page */
        background-color: #fff;
      }

      /* ================= CARD ================= */
      .adh-erp-card {
        flex: 0 0 calc((100% - 40px) / 3); /* exact 3 cards like home page */
        background: #fff;
        border-radius: 18px;
        padding: 30px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); /* deeper shadow */
        text-align: left;
        transition: transform 0.3s, box-shadow 0.3s;
      }

      .adh-erp-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
      }

      .adh-erp-card-header {
        background: linear-gradient(
          90deg,
          #0b5ed7,
          #20c997
        ); /* gradient same as home page */
        color: #fff;
        padding: 14px;
        border-radius: 12px;
        text-align: center;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 16px;
      }

      .adh-erp-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .adh-erp-card li {
        padding: 10px 0;
        border-bottom: 1px dashed #ddd;
        font-size: 14px;
        color: #555;
      }

      /* ================= ARROWS ================= */
      .adh-erp-arrow {
        /* position: absolute; */
        top: 50%;
        /* transform: translateY(-50%); */
        width: 46px;
        height: 46px;
        background: #1f5d7a; /* arrow color same as home page */
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        z-index: 10;
        transition: background 0.3s, transform 0.2s;
      }

      .adh-erp-arrow:hover {
        background: #0b4962; /* darker hover */
        transform: scale(1.1);
      }

      .adh-erp-arrow.left {
        left: -60px;
      }

      .adh-erp-arrow.right {
        right: -60px;
      }

      /* ================= MOBILE RESPONSIVE ================= */
      @media (max-width: 992px) {
        .adh-erp-card {
          flex: 0 0 calc((100% - 20px) / 2); /* 2 cards on tablet */
        }
        .adh-erp-arrow.left {
          left: -40px;
        }
        .adh-erp-arrow.right {
          right: -40px;
        }
      }

      @media (max-width: 768px) {
        .adh-erp-card {
          flex: 0 0 100%; /* 1 card on mobile */
        }
        .adh-erp-arrow.left {
          left: -30px;
        }
        .adh-erp-arrow.right {
          right: -30px;
        }
      }


      /* ===============================
   FIXED ACTIONS – MOBILE ONLY
================================ */

      @media (max-width: 767px) {
        .adh-fixed-actions-mobile {
          position: fixed;
          bottom: 0;
          left: 0;
          width: 100%;
          display: flex;
          justify-content: space-around;

          padding: 0 0 100px 0;
          z-index: 9999;
          /* box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12); */
        }

        .adh-fixed-actions-mobile .adh-action-item {
          flex: 1;
          text-align: center;
          font-size: 11px;
          color: #1f5d7a;
          text-decoration: none;
        }

        .adh-fixed-actions-mobile .adh-icon {
          /* display: block; */
          font-size: 15px;
          /* margin-bottom: 3px; */
        }

        .adh-fixed-actions-mobile .adh-text {
          display: block;
          line-height: 1.2;
        }
      }







