/* ==========================================================================
   1. CSS Variables & Global Styles
   ========================================================================== */
:root {
  --primary: #1b63ed;
  --primary-hover: #1450c2;
  --accent-green: #10b981;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

body.dark-mode {
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --bg-light: #0f172a;
  --bg-card: #1e293b;
  --border-color: #334155;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  transition: background-color 0.3s, color 0.3s;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--accent-green);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

/* ==========================================================================
   2. Header & Navigation
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  transition: 0.35s ease;
}

body.dark-mode header {
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(51, 65, 85, 0.8);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 82px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  transition: 0.3s;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon img {
  max-height: 90px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}

.theme-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: rotate(180deg);
}

.btn-get-started {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
  transition: 0.3s;
}

.btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

/* ==========================================================================
   3. Hero Section
   ========================================================================== */
.hero {
  padding: 80px 0 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: calc(100vh - 82px);
}

.hero-content {
  flex: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 30px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 28px;
  color: var(--text-main);
}

.hero-title .blue { color: var(--primary); }
.hero-title .teal { color: var(--accent-green); }

.hero-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 40px;
}

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

.btn-main {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
  transition: 0.35s;
}

.btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.35);
}

.btn-outline {
  border: 2px solid var(--border-color);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  transition: 0.35s;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: nowrap;
}

.stat-box {
  width: 200px;
  height: 90px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  display: flex;
  align-items: center;
  padding: 18px;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: 0.35s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-icon.blue { background: #eef4ff; color: #2563eb; }
.stat-icon.green { background: #e9fbf2; color: #10b981; }
.stat-icon.purple { background: #f3e8ff; color: #a855f7; }

.stat-content h3 {
  font-size: 22px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-content p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-image-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: floatImage 5s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
  max-width: 750px;
  display: block;
}

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

/* ==========================================================================
   4. Marquee Banner
   ========================================================================== */
.ticker-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 30px;
  animation: marquee 25s linear infinite;
}

.ticker-item {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.ticker-item::after {
  content: '•';
  color: var(--accent-green);
}

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

/* ==========================================================================
   5. About Section & Services Grid
   ========================================================================== */
.about-section {
  padding: 50px 0;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-light));
}

.about-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
}

.section-tag {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 40px;
  background: #eaf8f2;
  color: #10b981;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.about-left h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-left h2 span { color: var(--primary); }

.section-line {
  width: 90px;
  height: 5px;
  border-radius: 50px;
  background: linear-gradient(90deg, #2563eb, #10b981);
  margin: 10px 0 20px;
}

.about-left p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 15px;
}

/* Right Grid in About Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* About Section Slider Styling */
.about-container {
  display: grid;
  grid-template-columns: 300px 1fr; /* Left side text 300px, remaining space for 3 cards */
  gap: 30px;
  align-items: center;
}

.about-slider-wrap {
  position: relative;
  min-width: 0; /* Prevents swiper overflow bug in grid */
  padding: 10px 40px;
}

.about-swiper {
  padding: 15px 5px !important;
  overflow: hidden;
}

.about-slider-wrap .arrow-prev { left: -10px; }
.about-slider-wrap .arrow-next { right: -10px; }

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   6. Services Section & Swiper Slider
   ========================================================================== */
.services-section {
  padding: 20px 0;
}

.services-slider-container {
  position: relative;
  padding: 0 40px;
}

.swiper-slide {
  height: auto; /* Allows equal height for slider cards */
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #10b981);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 18px;
  margin-bottom: 20px;
}

.icon-blue { background: linear-gradient(135deg, #4facfe, #2563eb); color: #fff; }
.icon-green { background: linear-gradient(135deg, #34d399, #10b981); color: #fff; }
.icon-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); color: #fff; }
.icon-orange { background: linear-gradient(135deg, #fb923c, #f97316); color: #fff; }
.icon-red { background: linear-gradient(135deg, #f87171, #ef4444); color: #fff; }
.icon-cyan { background: linear-gradient(135deg, #22d3ee, #06b6d4); color: #fff; }
.icon-pink { background: linear-gradient(135deg, #f472b6, #ec4899); color: #fff; }
.icon-yellow { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #fff; }

.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin-top: 10px;
}

.service-list li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li i {
  color: var(--accent-green);
}

.service-card a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s;
  margin-top: auto;
}

.service-card:hover a {
  background: var(--primary);
  color: #fff;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.slider-arrow:hover {
  background: var(--primary);
  color: #fff;
}

.arrow-prev { left: -10px; }
.arrow-next { right: -10px; }

/* ==========================================================================
   7. Why Choose Us Section
   ========================================================================== */
/*/* ==========================================================================
   Work Process Section (Dark Mode Supported)
   ========================================================================== */
.work-process-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  transition: background-color 0.3s ease;
}

.process-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.process-header .section-tag {
  color: var(--accent-green);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

.process-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-main);
  margin: 10px 0 15px 0;
}

.process-header p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Timeline Track & Badges */
.process-timeline-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.timeline-line-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 90%;
  margin: 0 auto 35px auto;
}

.timeline-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, #06b6d4 30%, #10b981 60%, #84cc16 100%);
  transform: translateY(-50%);
  z-index: 1;
}

.step-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.step-1 { background: #2563eb; }
.step-2 { background: #06b6d4; }
.step-3 { background: #10b981; }
.step-4 { background: #22c55e; }
.step-5 { background: #84cc16; }

.step-arrow {
  background: var(--bg-card);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  z-index: 2;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

/* 5 Cards Grid */
.process-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 4px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Top Accent Colors */
.card-1 { border-top-color: #2563eb; }
.card-2 { border-top-color: #06b6d4; }
.card-3 { border-top-color: #10b981; }
.card-4 { border-top-color: #22c55e; }
.card-5 { border-top-color: #84cc16; }

.card-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* Icon backgrounds for Dark Mode adaptation */
.card-1 .card-icon { background: rgba(37, 99, 235, 0.15); color: #3b82f6; }
.card-2 .card-icon { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.card-3 .card-icon { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.card-4 .card-icon { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.card-5 .card-icon { background: rgba(132, 204, 22, 0.15); color: #84cc16; }

.process-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.process-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Bottom Feature Bar */
.process-features-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-sm);
  margin-top: 40px;
  transition: background-color 0.3s ease;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.feat-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 3px 0;
}

.feat-text p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .process-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .timeline-line-container {
    display: none;
  }
  .process-features-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process-cards-grid {
    grid-template-columns: 1fr;
  }
  .process-features-bar {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   8. Process & Pricing Section
   ========================================================================== */
.process-section {
  padding: 90px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px;
  position: relative;
}

.process-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.process-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Pricing Section --- */
.pricing-section {
  padding: 90px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

/* Base Pricing Card */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              background-color 0.3s ease, 
              box-shadow 0.3s ease, 
              border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* Featured Card Default State */
.pricing-card.featured {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 44px 28px;
}

.badge-plan {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-green);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.pricing-card.featured .badge-plan { 
  color: #93c5fd; 
}

.pricing-card h3 { 
  font-size: 22px; 
  font-weight: 800; 
  margin-bottom: 6px; 
}

.plan-desc { 
  font-size: 13px; 
  color: var(--text-muted); 
  margin-bottom: 20px; 
}

.pricing-card.featured .plan-desc { 
  color: #e0e7ff; 
}

.price { 
  font-size: 32px; 
  font-weight: 800; 
  margin-bottom: 24px; 
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  transition: all 0.3s ease;
}

.pricing-card.featured .btn-plan {
  background: #fff;
  color: var(--primary);
  border: none;
}

/* 🟢 PERFECT HOVER EFFECT (Clean Overrides) */
.pricing-card:hover {
  background-color: #10b981 !important; /* Green Background */
  color: #ffffff !important;
  transform: translateY(-12px) scale(1.04); /* Lift & Grow */
  box-shadow: 0 20px 35px rgba(16, 185, 129, 0.3);
  border-color: #10b981 !important;
  z-index: 10;
}

/* Hover par saare texts ko white force karein */
.pricing-card:hover h3,
.pricing-card:hover .price,
.pricing-card:hover .plan-desc,
.pricing-card:hover .badge-plan,
.pricing-card.featured:hover .badge-plan,
.pricing-card.featured:hover .plan-desc {
  color: #ffffff !important;
}

/* Hover par Button White background + Green Text ban jayega */
.pricing-card:hover .btn-plan,
.pricing-card.featured:hover .btn-plan {
  background-color: #ffffff !important;
  color: #10b981 !important;
  border: 1px solid #ffffff !important;
  font-weight: 800;
}

/* ==========================================================================
   9. Testimonials & Contact Section
   ========================================================================== */
.testimonials-section {
  padding: 90px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #f59e0b;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.client-details h4 {
  font-size: 14px;
  font-weight: 700;
}

.client-details span {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-section {
  padding: 90px 0;
  background: rgba(241, 245, 249, 0.5);
}

body.dark-mode .contact-section {
  background: rgba(15, 23, 42, 0.5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 18px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(27, 99, 237, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-text span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.contact-info-text strong {
  font-size: 14px;
  color: var(--text-main);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  color: var(--text-main);
  outline: none;
}

.btn-submit {
  width: 100%;
  background-color: var(--primary);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================================
   10. Footer & Floating Buttons
   ========================================================================== */
footer {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links, .footer-contact-list {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-list li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-list i {
  color: #0da521; 
  margin-right: 0px;
}

.footer-bottom {
  width: 100%;
  background-color: var(--bg-card, #ffffff);
  border-top: 1px solid var(--border-color, #e2e8f0); /* Clean Top Divider Line */
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted, #64748b);
}


/* Footer Social Icons Styling */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-light, #f1f5f9);
  color: var(--text-main, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color, #e2e8f0);
}

/* Hover Effect */
.footer-social-links a:hover {
  background-color: #10b981; /* Green color match */
  color: #ffffff;
  transform: translateY(-3px);
  border-color: #10b981;
}


.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.scroll-top-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.scroll-top-float.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   11. Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-container, .contact-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  nav { display: none; } /* Add hamburger JS logic if needed */
  .why-us-grid, .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal a { margin: 0 10px; }
  .services-slider-container { padding: 0; }
}






/* ==========================================================================
   Icon Size & Background Fix (Services Cards)
   ========================================================================== */
.service-icon,
.icon-box {
  width: 56px !important;              /* Outer Box Size */
  height: 56px !important;
  background-color: #1b63ed !important; /* Solid Blue Background */
  border-radius: 16px !important;       /* Rounded Corners */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
  box-shadow: 0 8px 16px rgba(27, 99, 237, 0.25) !important;
}

/* Icon Text/Glyph Styling */
.service-icon i,
.icon-box i {
  font-size: 24px !important;          /* Bigger Icon Font Size */
  color: #ffffff !important;           /* White Icon Color */
}



/* ==========================================================================
   Why Choose Us Section (Original Grid Restoration)
   ========================================================================== */
.why-choose-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  transition: background-color 0.3s ease;
}

.why-choose-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.why-choose-header .section-tag {
  color: var(--accent-green);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

.why-choose-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 10px;
}

/* 4 Columns Grid Layout */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Individual Card Styling */
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Light Blue Icon Box */
.why-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 18px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}
