/* ============================================
   SAINATH SALES & SERVICES – MAIN STYLESHEET
   Brand Colors: Navy #1a2e6e | Green #7ab628
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --navy: #1a2e6e;
  --navy-dark: #111e4a;
  --navy-light: #2a3f8f;
  --green: #7ab628;
  --green-dark: #5e9010;
  --green-light: #9dd438;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-100: #f2f4f8;
  --gray-200: #e5e9f0;
  --gray-500: #8899aa;
  --gray-700: #445566;
  --gray-900: #1a2233;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(26,46,110,0.10);
  --shadow-lg: 0 16px 50px rgba(26,46,110,0.16);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; 
overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection { background: var(--green); color: var(--white); }

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

a { text-decoration: none; transition: var(--transition); }

.section-pad { padding: 90px 0; }

/* ---- SECTION LABELS & HEADINGS ---- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  background: rgba(122,182,40,0.1);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-label.light {
  color: var(--green-light);
  background: rgba(122,182,40,0.15);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.heading-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  border-radius: 4px;
  margin-bottom: 20px;
}
.heading-line.mx-auto { margin-left: auto; margin-right: auto; }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn-primary-brand {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary-brand::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--green);
  transition: var(--transition);
  z-index: -1;
}
.btn-primary-brand:hover::after { left: 0; }
.btn-primary-brand span, .btn-primary-brand i { position: relative; z-index: 1; }
.btn-primary-brand:hover {
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(122,182,40,0.35);
}

.btn-outline-brand {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
}
.btn-outline-brand:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---- TOP HEADER ---- */
#top-header {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--green);
}
#top-header a, #top-header span {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  transition: var(--transition);
}
#top-header a:hover { color: var(--green); }
.top-contacts { gap: 16px; }
.top-contacts i { color: var(--green); }

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.7rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--green);
  transform: scale(1.15);
  color: var(--white)!important;
}

/* Language Button */
.lang-btn {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 50px;
  transition: var(--transition);
}
.lang-btn:hover { background: var(--green); color: var(--white); }
.lang-dropdown {
  min-width: 160px;
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  max-height: 300px;
  overflow-y: auto;
  background: rgb(17 30 74 / 70%);
  z-index: 99999;
}
.lang-item { font-size: 0.85rem; transition: var(--transition); }
.lang-item:hover { background: var(--green); color: var(--white)!important; }
.lang-item.active { background: var(--navy); color: var(--white); }

/* ---- NAVBAR ---- */
#mainNav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,46,110,0.1);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(26,46,110,0.15);
  padding: 8px 0;
}
#navLogo {
  height: 52px;
  transition: var(--transition);
}
#mainNav.scrolled #navLogo { height: 42px; }

.navbar-nav .nav-link {
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px;
  width: 0; height: 2px;
  background: var(--green);
  transition: var(--transition);
  border-radius: 2px;
  border: 0px;
}
li.nav-item.dropdown:after{
  content: "";
    position: absolute;
    border: 0.4rem solid transparent;
    border-top-color: #111e4a;
    top: 17px;
    right: -2px;       
}
li.nav-item.dropdown:hover:after{
    border-top-color: #7ab628;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 28px); }
.navbar-nav .nav-link:hover { color: var(--green) !important; }

.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--green);
  padding: 8px;
  min-width: 220px;
}
.navbar-nav .dropdown-item {
  font-size: 0.87rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 14px;
  transition: var(--transition);
}
.navbar-nav .dropdown-item:hover {
  background: var(--navy);
  color: var(--white);
  padding-left: 20px;
}

.btn-hero-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-hero-primary:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-hero-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
}

.navbar-toggler {
  border-color: var(--navy);
  padding: 6px 10px;
}
.navbar-toggler-icon { filter: invert(13%) sepia(65%) saturate(1500%) hue-rotate(205deg); }

/* ---- HERO ---- */
#hero { position: relative; }

.hero-slide {
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide-1 { background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1800&q=80'); }
.slide-2 { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80'); }
.slide-3 { background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1800&q=80'); }
.slide-4 { background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1800&q=80'); }
.slide-5 { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=80'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,30,74,0.88) 0%, rgba(26,46,110,0.7) 50%, rgba(122,182,40,0.25) 100%);
}
.hero-slide .container { position: relative; z-index: 2; }

.hero-content {
  color: var(--white);
  max-width: 680px;
  padding: 20px 0;
}
.hero-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-content h1 span { color: var(--green-light); }
.hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 34px;
  max-width: 560px;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Hero carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 1;
  margin: 0 16px;
  transition: var(--transition);
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--green);
  border-color: var(--green);
}
.carousel-control-prev i,
.carousel-control-next i { font-size: 1.1rem; }
.carousel-control-prev-icon, .carousel-control-next-icon { display: none; }

.carousel-indicators button {
  width: 10px!important; 
  height: 10px!important;
  border-radius: 50%!important;
  background: rgba(255,255,255,0.4)!important;
  border: none!important;
  margin: 0 4px!important;
  transition: var(--transition)!important;
}
.carousel-indicators button.active {
  background: var(--green)!important;
  width: 28px!important;
  border-radius: 6px!important;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--navy);
  border-top: 4px solid var(--green);
}
.stat-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(122,182,40,0.1); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.stat-plus { color: var(--green); font-size: 1.5rem; font-weight: 900; }
.stat-item p {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 6px 0 0;
}

/* ---- ABOUT ---- */
.about-img-wrap {
  position: relative;
  padding: 20px 20px 60px 0;
}
.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: 0; right: -10px;
  background: var(--green);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  animation: pulse-badge 3s ease infinite;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.badge-txt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}
.about-img-float {
  position: absolute;
  bottom: 20px; left: -20px;
  width: 160px; height: 120px;
  border: 4px solid var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

.lead-text {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-bottom: 1px dashed var(--gray-200);
  transition: var(--transition);
}
.about-list li:last-child { border-bottom: none; }
.about-list li:hover { color: var(--navy); padding-left: 6px; }
.about-list li i { color: var(--green); margin-top: 4px; flex-shrink: 0; }

/* ---- DIRECTOR ---- */
.director-bg {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.director-bg::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(122,182,40,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.director-img {
  width: 220px; height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--green);
  box-shadow: 0 0 0 12px rgba(122,182,40,0.15), var(--shadow-lg);
  transition: var(--transition);
}
.director-img:hover { transform: scale(1.04); }
.director-title {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-top: 8px;
}
.director-msg-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
}
.director-msg-card p { margin-bottom: 16px; }
.quote-icon {
  font-size: 3.5rem;
  color: rgba(122,182,40,0.3);
  position: absolute;
  top: 20px; left: 28px;
  line-height: 1;
}
.director-sign {
  color: var(--green-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}

/* ---- SERVICES ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  /* padding: 36px 28px; */
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 16px; height: 16px;
  background: linear-gradient(135deg, rgba(26,46,110,0.08), rgba(122,182,40,0.12));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 20px;
  transition: var(--transition);
  padding: 1.5rem;
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--white);
  transform: rotate(-5deg) scale(0.8);
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-link {
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { color: var(--navy); gap: 10px; }

/* ---- WHY CHOOSE US ---- */
.why-bg {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
.why-bg::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgb(122 182 40 / 44%) 0%, transparent 70%);
  border-radius: 50%;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.why-card:hover .why-icon { transform: rotate(10deg) scale(1.1); }
.why-card h5 {
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
}

/* ---- BRANDS / CLIENTS ---- */
.brands-section { background: var(--off-white); }
.brands-track-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  contain: paint;
}
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.brands-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--off-white), transparent);
}
.brands-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--off-white), transparent);
}

.brands-track {
  display: flex;
  gap: 20px;
  animation: scrollBrands 28s linear infinite;
  width: max-content;
  padding:1rem  ;
}
.brands-track:hover { animation-play-state: paused; }

.brand-logo {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 200px;
  transition: var(--transition);
  flex-shrink: 0;
}
.brand-logo:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: scale(1.05);
}
.brand-logo img { filter: grayscale(60%); transition: var(--transition); }
.brand-logo:hover img { filter: grayscale(0%); }

/* ---- TEAM ---- */
.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.team-img-wrap {
  position: relative;
  overflow: hidden;
}
.team-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}
.team-card:hover .team-img-wrap img { transform: scale(1.07); }

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(to top, rgba(26,46,110,0.9), transparent);
  transition: var(--transition);
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
  width: 34px; height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.8rem;
  transition: var(--transition);
}
.team-social a:hover { background: var(--green); color: var(--white); }

.team-info {
  padding: 20px;
  border-top: 3px solid var(--green);
}
.team-info h5 {
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 4px;
}
.team-info span {
  color: var(--gray-500);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---- TESTIMONIALS ---- */
.testi-bg {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.testi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--green);
  transform: translateY(-5px);
}
.testi-stars {
  color: #FFD700;
  margin-bottom: 14px;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.testi-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.testi-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}
.testi-author h6 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 2px;
  font-size: 0.9rem;
}
.testi-author span {
  color: var(--green-light);
  font-size: 0.78rem;
}
.testi-indicators {
  position: relative;
  margin-top: 30px;
}
.testi-indicators button {
  /* background: rgba(255,255,255,0.35) !important; */
  width: 10px !important;
  height: 10px !important;
}
.testi-indicators button.active {
  /* background: var(--green) !important; */
  /* width: 28px !important; */
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  padding: 50px 0;
}
.cta-band h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1rem; margin: 0; }
.btn-cta-white {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  transition: var(--transition);
}
.btn-cta-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  transition: var(--transition);
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

/* ---- CONTACT ---- */
.contact-info { padding: 10px 0; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item:hover { padding-left: 8px; }
.ci-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-item:hover .ci-icon { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.contact-info-item h6 {
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 0.9rem;
}
.contact-info-item p { color: var(--gray-500); font-size: 0.88rem; margin: 0; line-height: 1.6; }
.contact-social { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-social a {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: var(--transition);
}
.contact-social a:hover { background: var(--green); transform: translateY(-3px); }

.contact-form { background: var(--off-white); border-radius: var(--radius); padding: 36px; }
.contact-form .form-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--white);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(122,182,40,0.15);
  outline: none;
}

/* ---- MAP ---- */
#map-section { overflow: hidden; }
#map-section iframe { display: block; }

/* ---- FOOTER ---- */
#footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 40px; }
/* .footer-logo { height: 52px; margin-bottom: 18px; filter: brightness(1.2); } */
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 320px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }

.footer-heading {
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--green);
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--green); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--green); }

.footer-cert { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-badge {
  background: rgba(122,182,40,0.15);
  border: 1px solid rgba(122,182,40,0.3);
  color: var(--green-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.cert-badge i { margin-right: 4px; }

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--green); }

/* ---- ENQUIRY SIDEBAR ---- */
.enquiry-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.enquiry-tab {
  background: var(--green);
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 20px 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: -4px 4px 20px rgba(0,0,0,0.2);
}
.enquiry-tab:hover { background: var(--navy); }
.enquiry-tab i { font-size: 1rem; }

.enquiry-form-panel {
  background: var(--white);
  width: 0px;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.enquiry-form-panel.open { max-height: 600px; width: 300px; }
.eq-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.eq-header h6 { margin: 0; font-size: 0.9rem; font-weight: 800; }
.eq-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 6px;
  transition: var(--transition);
}
.eq-close:hover { color: var(--white); }
#quickEnquiryForm {
  padding: 18px;
  overflow-y: auto;
  max-height: 480px;
}
#quickEnquiryForm .form-control,
#quickEnquiryForm .form-select {
  font-size: 0.85rem;
  padding: 9px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  transition: var(--transition);
}
#quickEnquiryForm .form-control:focus,
#quickEnquiryForm .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(122,182,40,0.15);
}

/* ---- GO TO TOP ---- */
.go-top-btn {
  position: fixed;
  bottom: 120px;
  right: 24px;
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.go-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top-btn:hover { background: var(--green); transform: translateY(-3px); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed;
    bottom: 23px;
    right: 88px;
    width: 50px; height: 50px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9000;
  transition: var(--transition);
  animation: pulse-wa 3s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

/* ---- BROCHURE FLOAT ---- */
.brochure-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px; height: 50px;
  background: #e74c3c;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(231,76,60,0.4);
  z-index: 9000;
  transition: var(--transition);
}
.brochure-float:hover { transform: scale(1.1) rotate(5deg); color: var(--white); }

/* ---- SCROLL REVEAL ANIMATIONS ---- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1; transform: translate(0,0); }

.slide_position{
  margin-top: 10rem;
  padding-left: 2rem;
}
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.skiptranslate {
    display: none !important;
}
 .navbar-brand.position-absolute{
    position: absolute;
    top: 0;
    left: 2rem;
    bottom: 0;
    right: 0;
    width: 11rem;
    height: 6rem;
    z-index: 99999999999999999;
    /* border: 5px solid red; */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 0.5rem;
    /* padding: 0; */
    background-color: #fff;
  }
  .navbar-brand.position-absolute img{
    width: 100%!important;
    height: 100%!important;
    border-radius: 0.5rem;
  }
#mainNav.scrolled .navbar-brand.position-absolute{
    width: 7rem;
    height: 4rem;
}
.brands-track .brand-logo img{
  width: 100%;
  height: 100%;
}
.footer-logo-img{
  width: 11rem;
    height: 6rem;
    padding: 0.5rem;
    background: #fff;
    border-radius: 0.3rem;
}
.footer-logo-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.section-desc {
    font-size: 22px;
    color: rgba(255,255,255,.85);
    /* max-width: 550px; */
}

/* IMAGE */

.hero-image-wrapper {
    position: relative;
}

.hero-image-shape {
    position: relative;
    overflow: hidden;
    border-radius: 50% 50% 0 0;
    border: 2px solid rgba(139, 197, 63, .4);
}

.hero-image-shape img {
    width: 100%;
    /* height: 520px; */
    object-fit: cover;
}

.trust-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(6, 25, 77, .95);
    border: 1px solid rgba(139,197,63,.3);
    border-radius: 18px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 320px;
    backdrop-filter: blur(15px);
    color: #fff;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: #8bc53f;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.trust-badge h6 {
    margin: 0;
    font-size: 22px;
}

.trust-badge p {
    margin: 0;
    color: rgba(255,255,255,.8);
}

/* MOBILE */

@media(max-width:991px){



    .hero-image-shape img{
        height:400px;
    }

    .trust-badge{
        min-width:auto;
        width:90%;
    }
}

@media(max-width:576px){



    .section-desc{
        font-size:18px;
    }
}

/* ---- KEYFRAMES ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBrands {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122,182,40,0.5); }
  50% { box-shadow: 0 0 0 14px rgba(122,182,40,0); }
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}
@keyframes float-anim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
  .hero-slide { height: 70vh; min-height: 500px; }
  .hero-content h1 { font-size: clamp(1.7rem, 5vw, 2.5rem); }
  .about-img-float { display: none; }
  .director-msg-card { padding: 24px 20px; }
  .enquiry-form-panel { width: 280px; }
  .stat-item { padding: 18px 12px; }
  .stat-num { font-size: 2rem; }
}
@media (max-width: 767.98px) {
  .section-pad { padding: 60px 0; }
  .hero-slide { height: 85vh; min-height: 480px; }
  .carousel-control-prev, .carousel-control-next { display: none; }
  .about-img-main img { height: 300px; }
  .about-img-badge { right: 10px; bottom: -10px; padding: 14px 18px; }
  .badge-num { font-size: 1.8rem; }
  .contact-form { padding: 24px 18px; }
  .enquiry-sidebar { display: none; } /* Hide on mobile, show bottom bar instead */
  .footer-top { padding: 50px 0 30px; }
  .top-contacts .top-address { display: none; }
  #top-header .top-contacts { gap: 10px; }
  .navbar-brand.position-absolute{
    position: absolute;
    top: -10px;
    left: 1rem;
    bottom: 0;
    right: 0;
    width: 9rem;
    height: 5rem;
    z-index: 99999999999999999;
    /* border: 5px solid red; */
    box-shadow: unset;
    border-radius: 0.5rem;
    /* padding: 0; */
    background-color: #fff;
  }
}
@media (max-width: 575.98px) {
  .hero-content h1 { font-size: 1.7rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .stats-bar .stat-num { font-size: 1.8rem; }
  .go-top-btn, .whatsapp-float, .brochure-float { right: 12px; }
  .go-top-btn { bottom: 100px; }
  .whatsapp-float { bottom: 55px; }
  .brochure-float { bottom: 12px; }
}
@media (min-width: 1400px) {
  .section-heading { font-size: 3.2rem; }
  .hero-content h1 { font-size: 4rem; }
}

@media only screen and (max-width: 767px) {
    .navbar-nav.ms-auto.align-items-lg-center {
        margin-top: 4rem;
    }
}