/* =============================================
   BAS SOLAR — Main Stylesheet
   Color Palette: Green #1a7a2e | Red #c0392b | Gray #4a4a4a
   ============================================= */

:root {
  --green: #1a7a2e;
  --green-dark: #145c22;
  --green-light: #28a745;
  --red: #c0392b;
  --red-dark: #a93226;
  --red-light: #e74c3c;
  --gray: #4a4a4a;
  --gray-light: #f4f6f0;
  --gray-mid: #888;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gold: #f0c040;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Rajdhani', sans-serif;
  --shadow: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-hover: 0 16px 50px rgba(0,0,0,0.2);
  --radius: 12px;
  --transition: all 0.35s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }

/* ===== TOPBAR ===== */
#topbar {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  font-size: 13px;
  font-family: var(--font-accent);
  padding: 8px 0;
  z-index: 1000;
}

.topbar-info span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.9);
}

.topbar-info span i { color: var(--gold); }

.topbar-social a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  transition: var(--transition);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.topbar-social a:hover {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
#mainNav {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 0;
  transition: var(--transition);
  z-index: 999;
}

#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar-brand { padding: 10px 0; text-decoration: none; }

.brand-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(26,122,46,0.3);
  animation: rotateSun 8s linear infinite;
}

.brand-icon.small { width: 36px; height: 36px; font-size: 16px; }

@keyframes rotateSun {
  0% { box-shadow: 0 4px 12px rgba(26,122,46,0.3); }
  50% { box-shadow: 0 4px 20px rgba(240,192,64,0.6); }
  100% { box-shadow: 0 4px 12px rgba(26,122,46,0.3); }
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
  line-height: 1.1;
}

.brand-highlight { color: var(--red); }
.footer-name { font-size: 18px; color: #fff; }

.brand-tagline {
  font-size: 10px;
  color: var(--green);
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 14px !important;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--green) !important; }

.btn-nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff !important;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(192,57,43,0.3);
}

.btn-nav-cta:hover {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.4);
  color: #fff !important;
}

.navbar-toggler {
  border: 2px solid var(--green);
  padding: 4px 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a7a2e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO BANNER ===== */
#heroBanner { position: relative; }

.banner-slide {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.banner-1 {
  background-image: url('banner1.webp');
}
.banner-2 {
  background-image: url('banner2.webp');
}
.banner-3 {
  background-image: url('banner4.webp');
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,92,34,0.82) 0%, rgba(26,26,26,0.55) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.banner-badge {
  display: inline-block;
  background: rgba(240,192,64,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 16px;
}

.banner-title span {
  color: var(--gold);
  display: inline-block;
}

.banner-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.banner-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-banner-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 32px;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(192,57,43,0.4);
  text-decoration: none;
}

.btn-banner-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(192,57,43,0.5);
}

.btn-banner-outline {
  background: transparent;
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
  text-decoration: none;
}

.btn-banner-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

.carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: none;
}
.carousel-indicators button.active { background-color: var(--gold); width: 30px; border-radius: 5px; }

/* ===== SECTION COMMON ===== */
.section-pad { padding: 90px 0; }
.bg-section-alt { background: var(--gray-light); }

.section-label {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.section-label.light { color: var(--gold); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--green); }
.section-title.light, .section-title.light span { color: #fff; }
.section-title.light span { color: var(--gold); }

.section-sub {
  color: var(--gray-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-text { line-height: 1.8; color: #555; margin-bottom: 12px; }

/* ===== ABOUT SECTION ===== */
.about-img-wrap {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--green-light);
}

.about-img-main img {
  width: 100%; height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

.about-badge-box {
  position: absolute;
  bottom: 0; right: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-years {
  display: block;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.about-badge-box span:last-child {
  font-size: 11px;
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-img-dot {
  position: absolute;
  top: -14px; left: -14px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  opacity: 0.25;
  z-index: -1;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 3px solid var(--green);
  padding: 10px 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.about-feature:hover { border-left-color: var(--red); transform: translateX(4px); }
.about-feature i { color: var(--green); font-size: 16px; }

.btn-primary-custom {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(26,122,46,0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(26,122,46,0.4);
  background: linear-gradient(135deg, var(--green-light), var(--green));
}

/* ===== SERVICES ===== */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

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

.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(26,122,46,0.1), rgba(40,167,69,0.15));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--green);
  transition: var(--transition);
  border: 2px solid rgba(26,122,46,0.2);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(26,122,46,0.35);
}

.service-card h5 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 16px; }

.service-link {
  color: var(--green);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover { color: var(--red); gap: 8px; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: #fff; }

.why-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-img-wrap img {
  width: 100%; height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.why-img-wrap:hover img { transform: scale(1.04); }

.why-ribbon {
  position: absolute;
  bottom: 20px; left: -8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  padding: 10px 24px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 6px 6px 0;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.2);
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gray-light);
  border-radius: 10px;
  padding: 18px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  background: #fff;
  border-color: var(--green-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(26,122,46,0.3);
}

.why-card h6 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* ===== ACHIEVEMENTS ===== */
.achievements-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, #1d6b30 100%);
  position: relative;
  overflow: hidden;
}

.achievements-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.achieve-card {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
}

.achieve-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(240,192,64,0.3));
}

.achieve-num {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: inline;
}

.achieve-plus {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--gold);
  font-weight: 700;
  display: inline;
}

.achieve-label {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-grid .gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gal-item:nth-child(6) { grid-column: span 2; }

.gal-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gal-item:hover img { transform: scale(1.08); }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,122,46,0.75), rgba(192,57,43,0.6));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 32px;
  color: #fff;
}

.gal-item:hover .gal-overlay { opacity: 1; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-grid .gal-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid .gal-item:nth-child(6) { grid-column: span 1; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }
}

/* ===== TESTIMONIALS ===== */
.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px 48px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid #eee;
}

.testi-quote {
  font-size: 60px;
  color: var(--green);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.3;
}

.testi-text {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

.testi-author strong { display: block; font-family: var(--font-heading); font-size: 17px; color: var(--dark); }
.testi-author small { color: var(--gray-mid); font-size: 13px; }

.testi-indicators { position: static !important; margin-top: 28px; justify-content: center; }

.testi-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
}

.testi-indicators button.active { background-color: var(--green); width: 28px; border-radius: 5px; }

/* ===== OPD SECTION ===== */
.opd-section {
  background: linear-gradient(135deg, var(--green-dark), var(--dark));
  position: relative;
  overflow: hidden;
}

.opd-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: rgba(240,192,64,0.05);
  border-radius: 50%;
}

.opd-wrap {
  position: relative;
  z-index: 1;
}

.opd-icon-big {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 12px;
}

.opd-content { color: #fff; }
.opd-content p { color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 20px; }

.opd-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opd-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.opd-list li i { color: var(--gold); font-size: 16px; }

.opd-form-box {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 36px;
}

.opd-form-box h5 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.opd-input {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
}

.opd-input::placeholder { color: rgba(255,255,255,0.5) !important; }
.opd-input:focus {
  background: rgba(255,255,255,0.15) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(240,192,64,0.2) !important;
  color: #fff !important;
}

.opd-input option { background: var(--green-dark); color: #fff; }

.btn-opd-submit {
  background: linear-gradient(135deg, var(--gold), #e0a800);
  color: var(--dark);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 16px;
  padding: 13px;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(240,192,64,0.35);
}

.btn-opd-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(240,192,64,0.5);
  color: var(--dark);
}

/* ===== ENQUIRY FORM ===== */
.enquire-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.1);
  border: 1px solid #eee;
  border-top: 4px solid var(--green);
}

.enq-label {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.enq-input {
  border: 1.5px solid #e0e0e0 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  transition: var(--transition) !important;
  background: #fafafa !important;
}

.enq-input:focus {
  border-color: var(--green) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(26,122,46,0.12) !important;
}

/* ===== CONTACT CARDS ===== */
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-light);
}

.contact-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(26,122,46,0.3);
}

.contact-card h6 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-card p, .contact-card p a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  line-height: 1.7;
}

.contact-card p a:hover { color: var(--green); }

/* ===== MAP ===== */
.map-header {
  background: var(--green-dark);
  color: #fff;
}
.map-header h5 { color: #fff; font-family: var(--font-heading); font-size: 18px; font-weight: 600; }
.map-container { line-height: 0; }

/* ===== FOOTER ===== */
#footer { background: #111; }

.footer-top { padding: 70px 0 40px; }

.footer-about-text {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a i { font-size: 11px; color: var(--green-light); }

.footer-links li a:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.footer-contact-list li i { color: var(--gold); font-size: 15px; margin-top: 2px; min-width: 16px; }

.footer-contact-list li a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-list li a:hover { color: var(--green-light); }

.btn-footer-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  display: block;
}

.btn-footer-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  transform: translateY(-2px);
}

.footer-bottom {
  background: #0a0a0a;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}

.footer-bottom strong { color: var(--green-light); }

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
  overflow: visible;
}

.float-btn .float-label {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.float-btn:hover .float-label { opacity: 1; }

.float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
  z-index: -1;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}

.whatsapp-btn::before { background: rgba(37,211,102,0.35); }

.whatsapp-btn:hover {
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37,211,102,0.55);
}

.call-btn {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(192,57,43,0.45);
}

.call-btn::before { background: rgba(192,57,43,0.35); }

.call-btn:hover {
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(192,57,43,0.55);
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.5); opacity: 0; }
}

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 30px; left: 24px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(26,122,46,0.4);
}

#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(26,122,46,0.5); }

/* ===== TOAST ===== */
.toast { background: var(--green-dark); border-radius: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .section-pad { padding: 60px 0; }
  .about-img-wrap { padding-bottom: 30px; padding-right: 30px; }
  .about-img-main img { height: 280px; }
  .nav-link::after { display: none; }
  .nav-link { padding: 10px 16px !important; border-bottom: 1px solid #f0f0f0; }
  .navbar-nav { padding: 10px 0; }
  .testi-card { padding: 30px 24px; }
  .enquire-card { padding: 30px 24px; }
}

@media (max-width: 768px) {
  .banner-slide { min-height: 70vh; }
  .banner-title { font-size: 32px; }
  .banner-btns { flex-direction: column; }
  .btn-banner-primary, .btn-banner-outline { text-align: center; width: fit-content; }
  .topbar-info { font-size: 11px; gap: 8px; }
  .opd-form-box { padding: 24px; }
  .achieve-num { font-size: 42px; }
  .why-img-wrap img { height: 280px; }
  .cu-mb-ds-nn{
	  display:none!important
  }
  .cu-tx-cntr{
	  justify-content: center;
  }
}

@media (max-width: 576px) {
  .section-title { font-size: 26px; }
  .enquire-card { padding: 20px 16px; }
  .testi-card { padding: 24px 18px; }
  .testi-text { font-size: 14px; }
  .floating-btns { bottom: 20px; right: 14px; }
  .float-btn { width: 50px; height: 50px; font-size: 20px; }
  .float-btn .float-label { display: none; }
  #backToTop { bottom: 20px; left: 14px; width: 38px; height: 38px; font-size: 18px; }
}
.sr-imgs{
	width:100%;
	border-radius:10px;
	margin-bottom:15px;
}