:root {
  /* Futuristic light palette */
  --blue: #3b82f6;
  --indigo: #6b5cff;
  --cyan: #22d3ee;
  --light: #f8fafc;
  --dark: #0f172a;

  /* Semantic mapping */
  --primary: var(--blue);
  --primary-dark: #1d4ed8;
  --accent: var(--cyan);
  --accent2: var(--indigo);
  --veg: #16a34a;
  --nonveg: #e11d48;
  --bg: var(--light);
  --card: #ffffff;
  --text: var(--dark);
  --muted: #64748b;
  --header-bg: #1e3a8a;
  --footer-bg: #f9fafb;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: var(--bg); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--header-bg); box-shadow: 0 6px 20px rgba(0,0,0,0.06); border-bottom: 1px solid #eaeef3; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo img { height: 80px; display: block; }
.nav { display: flex; gap: 20px; }
.nav-link { text-decoration: none; color: #ffffff; font-weight: 600; padding: 8px 10px; border-radius: 8px; }
.nav-link:hover, .nav-link.active { background: rgba(34,211,238,0.18); color: #ffffff; }

/* Banner */
.banner { padding: 0; background: none; }
.banner .container { max-width: 100%; padding: 0; }
.slider-wrap { position: relative; margin: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.slider { position: relative; width: 100%; height: auto; }
.slide img { width: 100%; height: 240px; object-fit: cover; display: block; }
.slide-btn { position: absolute; top: 50%; transform: translateY(-50%); border: 0; background: rgba(15,23,42,0.45); color: #fff; padding: 10px 14px; border-radius: 999px; cursor: pointer; backdrop-filter: blur(6px); }
.slide-btn.prev { left: 16px; }
.slide-btn.next { right: 16px; }
.dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 16px; display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.8); cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.dot.active { background: linear-gradient(135deg, var(--accent), var(--accent2)); }
.banner .overlay { position: absolute; left: 24px; top: 24px; z-index: 3; color: var(--text); background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); padding: 12px 16px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.banner-title { margin: 0; font-size: 32px; letter-spacing: 0.3px; color: var(--text); }
.banner-sub { color: var(--muted); margin-top: 6px; }

/* Hero slider specific size */

#heroSlider .slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
@media (max-width:768px){ #heroSlider .slide img{height:280px;} }
@media (max-width:480px){ #heroSlider .slide img{height:180px;} }
#heroSlider .slides-wrapper {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

#heroSlider .slide {
  min-width: 100%;
  flex-shrink: 0;
  display: block; /* instead of none */
}

/* Products */
.products { padding: 64px 0; background: #fff; }
.products-header { display: block; text-align: center; max-width: 900px; margin: 0 auto 32px; }
.products-header h2, .products-header h3 { color: var(--text); }
.products-header h2 { font-size: 32px; font-weight: 800; letter-spacing: 0.3px; margin: 0 0 6px; }
.products-header h2::after { content: ""; display: block; width: 96px; height: 4px; margin: 10px auto 0; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 999px; }
.products-header h3 { font-size: 22px; font-weight: 800; margin: 12px 0 6px; }
.products-header .muted { color: var(--muted); font-size: 16px; }

/* Product filters */
.filters { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; margin: 8px 0 12px; }
.filter-btn { border: 0; padding: 8px 12px; border-radius: 999px; background: #eef2ff; color: var(--primary-dark); font-weight: 700; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.filter-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.08); }
.filter-btn.active { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 18px; }

.card { background: var(--card); border-radius: 16px; padding: 12px; box-shadow: 0 8px 22px rgba(0,0,0,0.08); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.12); }
.card-img { border-radius: 12px; height: 160px; width: 100%; object-fit: contain; margin-bottom: 10px; display: block; background: #fff; padding: 12px; }
.card-title { margin: 4px 0 2px; font-size: 16px; font-weight: 700; }
.card-meta { color: var(--muted); font-size: 14px; margin-bottom: 6px; }
.price { font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.add-btn { margin-top: auto; border: 0; padding: 10px 12px; border-radius: 10px; background: var(--primary); color: #fff; cursor: pointer; font-weight: 800; letter-spacing: .2px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.add-btn:hover { background: var(--primary-dark); }
.size-row { display: flex; align-items: center; gap: 8px; margin: 8px 0; }
.size-row label { font-size: 13px; color: var(--muted); }
.size-select { flex: 1; padding: 8px 10px; border-radius: 10px; border: 1px solid #ddd; }
.qty-row { display: flex; align-items: center; gap: 8px; margin: 8px 0 10px; }
.qty-btn { border: 0; background: #eef2ff; color: var(--primary-dark); padding: 6px 10px; border-radius: 8px; cursor: pointer; font-weight: 800; }
.qty-input { width: 56px; text-align: center; padding: 6px 8px; border-radius: 8px; border: 1px solid #ddd; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.chip.veg { background: rgba(22,163,74,0.12); color: var(--veg); }
.chip.nonveg { background: rgba(225,29,72,0.12); color: var(--nonveg); }

/* Footer */
.site-footer { padding: 40px 0 20px; background: var(--header-bg); color: #e6f0ff; border-top: 0; position: relative; }
.site-footer p { margin: 0; color: #cfe0ff; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 24px; align-items: start; }
.footer-brand { display: flex; gap: 12px; align-items: flex-start; }
.brand-logo { height: 64px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2)); }
.brand-name { font-weight: 800; color: #ffffff; margin: 0 0 6px; }
.brand-addr, .brand-contact { color: #cfe0ff; font-size: 14px; }
.brand-contact a { color: #ffffff; text-decoration: none; }
.brand-contact a:hover { text-decoration: underline; }
.footer-col h4 { margin: 0 0 10px; color: #ffffff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a { color: #cfe0ff; text-decoration: none; transition: transform .15s ease; }
.footer-links a:hover { color: #ffffff; transform: translateX(2px); }
.newsletter .muted { color: #cfe0ff; margin: 0 0 10px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.9); color: #0b3a66; }
.signup-btn { border: 0; padding: 10px 16px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; font-weight: 800; cursor: pointer; position: relative; overflow: hidden; }
.signup-btn span { position: relative; z-index: 2; }
.signup-btn::after { content: ""; position: absolute; left: -40%; top: 0; width: 40%; height: 100%; background: rgba(255,255,255,0.3); transform: skewX(-20deg); filter: blur(2px); transition: left .4s ease; }
.signup-btn:hover::after { left: 120%; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); margin-top: 24px; }
.social-links { display: flex; gap: 8px; }
.social { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; transition: transform .15s ease, background .15s ease; }
.social:hover { transform: translateY(-2px); background: rgba(255,255,255,0.22); }

/* Checkout */
.checkout { padding: 28px 0 40px; }
.invoice-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.invoice-card { background: #fff; border-radius: 16px; box-shadow: 0 8px 22px rgba(0,0,0,0.08); padding: 16px; }
.invoice-table { width: 100%; border-collapse: collapse; }
.invoice-table th, .invoice-table td { text-align: left; padding: 10px; border-bottom: 1px dashed #eee; }
.totals { display: flex; justify-content: flex-end; gap: 24px; margin-top: 10px; color: var(--text); }
.pay-section { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.qr-box { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #fff, #fff1e6); border-radius: 12px; padding: 14px; }
.qr-box canvas, .qr-box img { max-width: 100%; height: auto; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form .full { grid-column: 1 / -1; }
.form input, .form textarea, .form select { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid #ddd; }
.submit-btn { border: 0; background: var(--primary); color: #fff; padding: 12px 14px; border-radius: 12px; font-weight: 700; cursor: pointer; }
.submit-btn:hover { background: var(--primary-dark); }

/* Responsive */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .pay-section { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid { grid-template-columns: 1fr; }
  .logo img { height: 64px; }
  .slide img { height: 180px; }
  .post-slider .slide img { height: 160px; }
}

/* Post-products slider */
.post-slider-section { padding: 24px 0 40px; }
.post-slider-section .container { max-width: 1200px; padding: 0 16px; }
.post-slider { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.post-slider .slide img { width: 100%; height: 200px; object-fit: cover; }

/* Trust badges */
.trust-badges { background: #fff; padding: 48px 0; }
.badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.badge { background: var(--card); border-radius: 16px; padding: 16px; text-align: center; box-shadow: 0 8px 22px rgba(0,0,0,0.08); display: flex; flex-direction: column; align-items: center; gap: 8px; transition: transform .2s ease, box-shadow .2s ease; }
.badge:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(0,0,0,0.12); }
.badge-icon { color: var(--primary); animation: float 3s ease-in-out infinite; }
.badge-title { font-weight: 800; color: var(--text); }
.badge-sub { color: var(--muted); font-size: 14px; }

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

@media (max-width: 768px) {
  .badges { grid-template-columns: 1fr; }
}

/* WhatsApp floating action button */
.whatsapp-fab { position: fixed; right: 20px; bottom: 20px; width: 48px; height: 48px; border-radius: 999px; box-shadow: 0 10px 24px rgba(0,0,0,0.25); display: inline-flex; align-items: center; justify-content: center; background: #25D366; z-index: 60; transition: transform .2s ease; }
.whatsapp-fab:hover { transform: translateY(-2px) scale(1.03); }

.product-card {
  transition: 0.3s ease;
  border-radius: 12px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.toast-msg {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #222;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease-in-out;
  z-index: 9999;
}

.toast-msg.show {
  opacity: 1;
  transform: translateY(0);
}
.cart-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2a7a2a;
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 4px;
    opacity: 0;
    transition: 0.3s ease-in-out;
    z-index: 9999;
}
.cart-toast.show {
    opacity: 1;
}
.buttonclass{
  font-weight: bold;
  background-color: #3b82f6;
  color: white;
  padding: 10px 15px;
  
  // Replace entire file with this complete CSS

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-md-4, .col-md-6 {
  padding-right: 15px;
  padding-left: 15px;
}

.col-md-4 {
  width: 33.333%;
}

.col-md-6 {
  width: 50%;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #667eea;
  color: white;
}

.btn-primary:hover {
  background: #5568d3;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-outline {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-outline:hover {
  background: #667eea;
  color: white;
}

.btn-ghost {
  background: transparent;
  color: #667eea;
  border: 1px solid #667eea;
}

.btn-ghost:hover {
  background: rgba(102, 126, 234, 0.1);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
  display: block;
}

/* ===== ABOUT PAGE ===== */
.hero-alt {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 0;
}

.hero-alt h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-alt p {
  font-size: 20px;
  opacity: 0.95;
}

.about-intro {
  padding: 80px 20px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #333;
  font-weight: 700;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  height: auto;
}

.about-features {
  padding: 100px 20px;
  background: #f8f9fa;
}

.section-title {
  font-size: 42px;
  margin-bottom: 60px;
  color: #333;
  font-weight: 700;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 0;
}

.feature-card {
  background: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 50px;
  color: white;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

.about-stats {
  padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-box h3 {
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: 700;
}

.stat-box p {
  font-size: 17px;
  opacity: 0.9;
}

.about-values {
  padding: 100px 20px;
}

.value-card {
  background: white;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #667eea;
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  transform: translateX(5px);
}

.value-card h3 {
  font-size: 24px;
  color: #667eea;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-section .btn-primary {
  background: white;
  color: #667eea;
  font-weight: 700;
}

.cta-section .btn-primary:hover {
  background: #f0f0f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== SERVICES PAGE ===== */
.services-intro {
  padding: 60px 20px;
  text-align: center;
  background: #f8f9fa;
}

.intro-text {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.services-main {
  padding: 80px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-bottom: 0;
}

.service-card {
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
  border-color: #667eea;
  transform: translateY(-5px);
}

.service-card.featured {
  border-color: #667eea;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.service-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: #ff6b6b;
  color: white;
  padding: 5px 45px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
}

.service-header {
  background: linear-gradient(135deg, #f0f3ff 0%, #f5f7ff 100%);
  padding: 35px 25px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
}

.service-icon {
  font-size: 50px;
  color: #667eea;
  margin-bottom: 15px;
  display: inline-block;
}

.service-header h3 {
  font-size: 24px;
  color: #333;
  margin: 0;
  font-weight: 600;
}

.service-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-intro {
  font-weight: 600;
  color: #667eea;
  margin-bottom: 20px;
  font-size: 15px;
}

.service-body h4 {
  font-size: 16px;
  color: #333;
  margin-top: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-body p {
  color: #666;
  font-size: 15px;
  margin-bottom: 15px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.service-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #666;
  font-size: 15px;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 16px;
}

.career-path {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.career-path li {
  padding: 6px 0;
  padding-left: 25px;
  position: relative;
  color: #666;
  font-size: 14px;
}

.career-path li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #667eea;
}

.service-body .btn {
  align-self: flex-start;
  margin-top: 20px;
}

.service-features {
  padding: 80px 20px;
  background: #f8f9fa;
}

.features-list {
  display: grid;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-item i {
  font-size: 28px;
  color: #667eea;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  margin: 0 0 8px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.feature-item p {
  margin: 0;
  color: #666;
  font-size: 15px;
}

.service-comparison {
  padding: 80px 20px;
}

.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  margin-top: 30px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
  font-size: 15px;
}

.comparison-table th {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-weight: 600;
}

.comparison-table tbody tr:hover {
  background: #f8f9fa;
}

.comparison-table td {
  color: #666;
}

.additional-services {
  padding: 80px 20px;
  background: #f8f9fa;
}

.addon-card {
  background: white;
  padding: 35px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  border-left: 5px solid #667eea;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.addon-card h4 {
  font-size: 22px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

.addon-card p {
  color: #666;
  font-size: 15px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 20px;
}

.contact-info-card {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  border-top-color: #667eea;
}

.info-icon {
  font-size: 45px;
  color: white;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
}

.contact-info-card h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-info-card p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

.contact-info-card a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.label {
  display: block;
  font-size: 13px;
  color: #999;
  margin-top: 12px;
}

.contact-form-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.form-wrapper {
  background: white;
  padding: 45px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-intro {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
  font-size: 15px;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: #666;
}

.checkbox-label input {
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.alert {
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 25px;
  font-size: 15px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.contact-social {
  padding: 60px 20px;
  text-align: center;
  background: #f8f9fa;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: white;
  color: #667eea;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  font-weight: 600;
}

.social-link:hover {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.social-link i {
  font-size: 18px;
}

.faq-section {
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #667eea;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
}

.faq-item h4 {
  color: #333;
  font-size: 17px;
  margin-bottom: 12px;
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .col-md-4,
  .col-md-6 {
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-alt h1 {
    font-size: 32px;
  }

  .hero-alt p {
    font-size: 16px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 25px;
  }

  .stats-grid {
    gap: 30px;
  }

  .stat-box h3 {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
    font-size: 13px;
  }

  .form-wrapper {
    padding: 25px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    padding: 10px 15px;
    font-size: 13px;
    /* ===============================
   FIX BIG SLIDER (SAFE)
   =============================== */

.banner {
    max-height: 520px;
    overflow: hidden;
}

.slides-wrapper,
.slide {
    height: 520px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
    .banner,
    .slides-wrapper,
    .slide {
        height: 280px;
    }
}

/* About page spacing fix */
.about-page {
    padding-top: 20px;
}

/* ===============================
   ABOUT PAGE SCROLL FIX
   =============================== */

.about-page-start {
    padding-top: 40px;   /* smooth spacing below fixed header */
}

/* ===============================
   ABOUT PAGE YELLOW BANNER
   =============================== */

.about-yellow-banner {
  background: #fee52a;        /* SAME AS ZEBRA */
  padding: 120px 20px 80px;   /* PUSH BELOW FIXED HEADER */
  text-align: center;
}

.about-yellow-banner h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.about-yellow-banner h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-yellow-banner p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .about-yellow-banner {
    padding: 100px 15px 60px;
  }

  .about-yellow-banner h1 {
    font-size: 2rem;
  }
  
 /* ===============================
   WHY CHOOSE US – FORCE 3 IN A ROW
   =============================== */

.why-section {
    padding: 60px 20px;
    text-align: center;
}

.why-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards in one line */
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    text-align: center;
}

.why-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Tablet */
@media (max-width: 992px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .why-cards {
        grid-template-columns: 1fr;
    }
}


}


  }
  
}
}