html {
            scroll-behavior: smooth;
        }
:root {
  color-scheme: light; /* or 'only light' for some browsers */
}

/* Ensure body and other elements have explicit light mode colors */
body {
  background-color: #ffffff;
  color: #000000;
}
.headers
{
    background-color: #350f7a;
}
/* Nav */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #cae1ff;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #cae1ff ;
}

.nav-link:hover::after {
  width: 100%;
}
 
 
  
/* Hero */
/* Wrapper */
.hero-wrapper {
  background: #ffffff;
}
.hero-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image-box {
  width: 100%;
  max-width: 420px;
  height: 420px;
  border-radius: 32px;
  border: 4px solid #f59e0b; /* yellow frame */
  position: relative;
  background: #f9fafb;
}

/* IMAGE FIX */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* THIS FIXES THE FIT */
  object-position: center;
  border-radius: 28px;
}

/* OPTIONAL TEXT */
.hero-image-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px 16px;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.85);
  text-align: center;
  color: #0c2d5a;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 580px) {
  .hero-image-box {
    height: 300px;

  }
  .hero-bx{
    flex-wrap: wrap;
  }
}

/* Headings */
.hero-heading {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 600;
  color: #0b2c6a; 
}

.hero-heading span {
  color: #0073c6;
  font-style: italic;
}

/* Text */
.hero-subtext {
  font-size: 0.9rem;
  color: #5f6f8f;
  max-width: 420px;
}

/* Button */
.hero-btn {
  background: #f2a000;
  color: #ffffff;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 160, 0, 0.3);
}

/* Image container */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
}

.hero-image-box {
  width: 360px;
  height: 420px;
  background: #f5f7fa;
  border-radius: 32px;
  border-bottom-left-radius: 120px;
  border: 6px solid #f2a000;
}

/* Brands */
.brand {
  font-weight: 600;
  color: #1f2937;
}

.brand.google {
  color: #4285f4;
}

/* Dot patterns */
.dots-left,
.dots-right {
  position: absolute;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(#dbeafe 2px, transparent 2px);
  background-size: 12px 12px;
}

.dots-left {
  bottom: 40px;
  left: 40px;
}

.dots-right {
  top: 40px;
  right: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 1.9rem;
  }

  .hero-image-box {
    width: 280px;
    height: 340px;
  }
}


/* Sections */
.section-title {
  text-align: center;
  font-size: 2.0rem;
  font-weight: 600; 
}

/* Services */
.service-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.service-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2F7D64;
}
.service-card p {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Contact */
.contact-input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  font-size: 0.8rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}
.contact-input:focus {
  outline: none;
  border-color: #2F7D64;
}

/* Button */
.primary-btn {
  background: #2385e0;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
}
.primary-btn:hover {
  background: #250383;
}

/* Footer */
.footer {
  background: #0c6478;
  color: white;
  text-align: center;
  font-size: 0.7rem;
  padding: 1rem;
}

/*form*/
.callback-form label {
  font-size: 0.75rem;
  color: #374151;
  display: block;
  margin-bottom: 4px;
}

.callback-form label span {
  color: #e11d48;
}

.form-group input,
.form-group select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d1d5db;
  padding: 8px 4px;
  font-size: 0.9rem;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #f59e0b;
}

/* Button */
.callback-btn {
  width: 100%;
  background: #f59e0b;
  color: white;
  padding: 0.75rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.callback-btn:hover {
  background: #d97706;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .callback-image {
    display: none;
  }

  .callback-form {
    padding: 2rem;
  }
}


/* Silver Shimmer Effect */
.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transition: all 0.6s ease;
}

.shimmer:hover::after {
  left: 120%;
}


/* =========================
   CONTACT SECTION
========================= */

.contact-info {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #17046e;
  margin-bottom: 0.25rem;
}
.contact-info:hover{
  background-color: #2cb88b;
  
}
.contact-info:hover h4{
    color: white;
  }

.contact-info p {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.4;
}
.contact-info:hover p {
  color: white;
}

.contact-icon {
  font-size: 1.4rem;
  line-height: 1;
}

/* Inputs */
.contact-input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus {
  outline: none;
  border-color: #2F7D64;
  box-shadow: 0 0 0 2px rgba(47, 125, 100, 0.12);
}

/* services*/
.care-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

/* Headers */
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.card-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
}

.card-header .icon {
  font-size: 1.4rem;
}

/* DO / DONT COLORS */
.do-card {
  border-left: 5px solid #22c55e;
}

.do-card h4 {
  color: #16a34a;
}

.dont-card {
  border-left: 5px solid #ef4444;
}

.dont-card h4 {
  color: #dc2626;
}

/* List */
.care-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.care-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

/* Bullet style */
.do-card .care-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-size: 0.85rem;
}

.dont-card .care-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 640px) {
  .care-card {
    padding: 24px;
  }

  .card-header h4 {
    font-size: 1.15rem;
  }
}
 /*why choose us*/
 .why-card {
  background: #f9fafb;
  padding: 28px;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #0c2d5a;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 640px) {
  .why-card {
    padding: 22px;
  }
}
 
  .tab-btn {
      padding: 10px 18px;
      border-bottom: 2px solid transparent;
      transition: all 0.3s ease;
      font-weight: 500;
    }
    .tab-btn:hover {
      color: #2563eb;
    }
    .active-tab {
      background: #f4a000;
      color: #000;
    }
    .animate-fade {
      animation: fadeSlide 0.4s ease;
    }
    @keyframes fadeSlide {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

.active-tab
{
  color: white;
}
.active-tab:hover
{
  color: white;
}
/* Sticky WhatsApp icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366; /* WhatsApp green background */
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
 
/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}