/* ================================================================
   SWAMI ASSOCIATES — style.css
   Bootstrap 5.0.2 base + custom styles
   ================================================================ */

/* ---------------------------------------------------------------
   CSS Variables
--------------------------------------------------------------- */
:root {
  --navy: #003580;
  --navy-dark: #002060;
  --blue: #0077c8;
  --cyan: #00aaff;
  --yellow: #ffc107;
  --white: #ffffff;
  --light-bg: #f4f6f9;
  --gray-border: #e0e6ed;
  --text-dark: #1a1a2e;
  --text-mid: #444444;
}

/* ---------------------------------------------------------------
   GLOBAL
--------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ---------------------------------------------------------------
   FLOATING SIDE BUTTONS
--------------------------------------------------------------- */
.floating-side-btns {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.side-btn {
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 0 6px 6px 0;
  transition: background 0.2s;
}

.side-btn:hover {
  background: var(--navy);
  color: #fff;
}

.side-btn.wa-btn {
  background: #25d366;
}

.side-btn.wa-btn:hover {
  background: #1a9e4c;
}

/* ---------------------------------------------------------------
   TOP BAR
--------------------------------------------------------------- */
.top-bar {
  background: var(--navy-dark);
  color: #fff;
  font-size: 12.5px;
  padding: 7px 0;
  text-align: center;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  white-space: nowrap;
}

.topbar-item i {
  color: var(--cyan);
  font-size: 11px;
}

.topbar-item a {
  color: #fff;
}

.topbar-item a:hover {
  color: #76eada;
}

@media (max-width: 767px) {
  .top-bar .d-flex {
    flex-direction: column;
    gap: 4px !important;
  }

  .topbar-item {
    font-size: 11px;
  }
}

/* ---------------------------------------------------------------
   MAIN NAVBAR
--------------------------------------------------------------- */
.main-navbar {
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  z-index: 1030;
}

.navbar-wrap {
  display: flex;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 24px;
  gap: 14px;
}

/* Logo */
.logo-circle {
  width: 90px;
  height: 90px;
  /* background: var(--navy); */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

.logo-sub {
  font-size: 9.5px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* BIS Badge */
.bis-cert-badge {
  border: 1px solid #c8ddf0;
  border-radius: 8px;
  padding: 5px 10px;
  background: #f4f8ff;
  text-align: center;
}

.bis-certified-text {
  font-size: 10px;
  color: var(--blue);
  font-weight: 700;
  display: block;
}

.bis-std-text {
  font-size: 9px;
  color: #888;
  display: block;
  margin-top: 2px;
}

.bis-icon-box {
  width: 30px;
  height: 30px;
  background: var(--navy);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bis-icon-box.iso {
  background: var(--blue);
}

/* Nav Links */
.navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 8px 9px !important;
  white-space: nowrap;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--blue) !important;
}

.navbar-nav .nav-link.active {
  border-bottom: 2px solid var(--blue);
}

.nav-login-btn {
  font-weight: 700 !important;
}

/* Dropdown */
.dropdown-menu {
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  min-width: 200px;
  margin-top: 4px !important;
}

.dropdown-item {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #333 !important;
  padding: 8px 18px;
}

.dropdown-item:hover {
  background: var(--light-bg);
  color: var(--blue) !important;
}

/*Services*/
/* NEW SIMPLE SERVICES DROPDOWN */
.services-simple-dropdown {
  min-width: 280px !important;
  max-height: 400px !important;
  overflow-y: auto !important;
  border: 1px solid var(--gray-border) !important;
  border-radius: 10px !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
  padding: 8px 0 !important;
  margin-top: 6px !important;
}

.services-simple-dropdown .dropdown-item {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #333 !important;
  padding: 12px 20px !important;
  border-radius: 6px !important;
  margin: 2px 8px !important;
  transition: all 0.2s ease !important;
}

.services-simple-dropdown .dropdown-item:hover {
  background: linear-gradient(90deg, var(--blue), var(--cyan)) !important;
  color: #fff !important;
  transform: translateX(4px) !important;
}

.services-simple-dropdown .dropdown-divider {
  margin: 8px 0 !important;
  border-color: rgba(0, 119, 200, 0.2) !important;
}

/* MOBILE RESPONSIVE */

/* Hamburger */
.navbar-toggler {
  border: 1px solid var(--navy);
  border-radius: 4px;
}

.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='%23003580' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  .navbar-collapse {
    border-top: 1px solid var(--gray-border);
    padding: 8px 0 12px;
    margin-top: 8px;
  }

  .navbar-nav .nav-link {
    padding: 11px 16px !important;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-nav .nav-link.active {
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-wrap {
    padding: 10px 14px;
  }
}

/* ---------------------------------------------------------------
   HERO SECTION
--------------------------------------------------------------- */
.hero-section {
  background: #0a1628;
}

.hero-slide {
  height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .hero-slide {
    height: 320px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.hero-text-box {
  position: relative;
  z-index: 2;
  padding: 36px 48px;
  max-width: 680px;
}

@media (max-width: 767px) {
  .hero-text-box {
    padding: 20px 20px;
  }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 18px;
  }
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.hero-list li {
  margin-bottom: 6px;
}

.hero-list li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-list li a::before {
  content: '•';
  color: var(--cyan);
  font-size: 18px;
  line-height: 1;
}

.hero-list li a:hover {
  color: var(--cyan);
}

@media (max-width: 767px) {
  .hero-list li a {
    font-size: 13px;
  }
}

.hero-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-dark {
  background: #1a2a3a;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
}

.btn-hero-dark:hover {
  background: #28394e;
  color: #fff;
}

.btn-hero-primary {
  background: var(--blue);
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
}

.btn-hero-primary:hover {
  background: #005fa3;
  color: #fff;
}

/* Carousel Controls */
.hero-prev,
.hero-next {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5) !important;
  border-radius: 50% !important;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-prev {
  left: 12px;
}

.hero-next {
  right: 12px;
}

.hero-indicators {
  bottom: 14px;
}

.hero-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6) !important;
}

.hero-indicators button.active {
  background: #fff !important;
}

/* Hero Contact Form */
.hero-form-col {
  background: rgba(255, 255, 255, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  min-height: 520px;
}

@media (max-width: 991px) {
  .hero-form-col {
    min-height: auto;
    padding: 24px 16px;
  }
}

.hero-contact-form {
  width: 100%;
  max-width: 380px;
}

.form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero-input {
  border: 1.5px solid #c8d8ea;
  border-radius: 6px;
  font-size: 13.5px;
  padding: 10px 14px;
  color: #333;
}

.hero-input:focus {
  border-color: var(--blue);
  box-shadow: none;
}

.btn-submit-hero {
  background: var(--blue);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 11px;
  border-radius: 6px;
  border: none;
}

.btn-submit-hero:hover {
  background: #005fa3;
  color: #fff;
}

/* ---------------------------------------------------------------
   TICKERS (Latest Notification / Upcoming Events / News)
--------------------------------------------------------------- */
.ticker-section,
.events-ticker-section,
.news-ticker-section {
  overflow: hidden;
  padding: 0;
}

.ticker-wrap {
  display: flex;
  align-items: stretch;
  background: #f0f4fa;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  height: 40px;
}

.events-wrap {
  background: #fff3e0;
}

.news-wrap {
  background: #f5fff0;
}

.ticker-label {
  background: var(--cyan);
  color: #fff;
  padding: 0 18px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.events-label {
  background: #e65c00;
}

.news-label {
  background: #28a745;
}

.ticker-content-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  font-size: 12.5px;
  color: var(--text-dark);
}

.ticker-track span {
  padding: 0 22px;
}

.ticker-content-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.new-gif {
  width: 28px;
  vertical-align: middle;
  margin-left: 4px;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------------------------------------------------------------
   ABOUT SECTION
--------------------------------------------------------------- */
.about-section {
  background: #f8fafd;
}

.person-photo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border: 4px solid var(--blue);
}

.person-name {
  font-size: 13.5px;
  color: var(--navy);
  line-height: 1.4;
}

.person-title {
  font-size: 12px;
  color: #666;
}

.about-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-mid);
}

.btn-readmore {
  background: var(--blue);
  color: #fff;
  padding: 9px 22px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.btn-readmore:hover {
  background: var(--navy);
  color: #fff;
}

/* ---------------------------------------------------------------
   ACHIEVEMENTS
--------------------------------------------------------------- */
.achievements-section {
  background: #fff;
}

.achieve-heading-box {
  background: #fff;
  border: 2px solid var(--gray-border);
  border-radius: 10px;
  padding: 24px 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.achieve-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.cert-thumb {
  background: #f4f8ff;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cert-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 53, 128, 0.12);
}

.cert-thumb img {
  max-height: 70px;
  object-fit: contain;
}

/* ---------------------------------------------------------------
   SEARCH SECTION
--------------------------------------------------------------- */
.search-section {
  background: var(--light-bg);
  border-top: 1px solid var(--gray-border);
}

.search-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.search-bar-group {
  border: 2px solid var(--blue);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 119, 200, 0.12);
}

.search-input {
  border: none;
  outline: none;
  font-size: 14px;
  padding: 12px 16px;
}

.search-input:focus {
  box-shadow: none;
  border: none;
}

.btn-search {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 0 20px;
  font-size: 17px;
  border-radius: 0;
}

.btn-search:hover {
  background: var(--navy);
  color: #fff;
}

/* ---------------------------------------------------------------
   SERVICES SECTION
--------------------------------------------------------------- */
.services-section {
  background: var(--light-bg);
}

.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}

/* Tab Bar */
.services-tab-bar {
  display: flex;
  gap: 0;
  background: var(--navy);
  border-radius: 6px;
  overflow: hidden;
  flex-wrap: wrap;
}

.svc-tab-btn {
  flex: 1;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  border: none;
  padding: 14px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-width: 140px;
}

.svc-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.svc-tab-btn.active {
  background: var(--blue);
  color: #fff;
}

/* Service Panels */
.svc-panel {
  display: none;
}

.svc-panel.active {
  display: block;
}

/* Service Cards */
.svc-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  height: 100%;
  /* width: 250px; */
  /* height: 250px; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 119, 200, 0.15);
}

.svc-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 8px;
  line-height: 1.3;
  flex: 1;
}

.svc-readmore {
  font-size: 11px;
  color: var(--blue);
  font-weight: 600;
}

.svc-readmore:hover {
  color: var(--navy);
}

.btn-viewall {
  background: var(--navy);
  color: #fff;
  padding: 9px 26px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.btn-viewall:hover {
  background: var(--blue);
  color: #fff;
}

/* ---------------------------------------------------------------
   VIDEOS SECTION
--------------------------------------------------------------- */
.videos-section {
  background: var(--light-bg);
}

.videos-section .ratio {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ---------------------------------------------------------------
   INTERNATIONAL AUDITS
--------------------------------------------------------------- */
.audits-section {
  background: #fff;
}

.audit-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.audit-card:hover {
  transform: translateY(-4px);
}

.audit-card-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audit-country {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.audit-logo-sm {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 600;
}

.audit-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.audit-card-body {
  padding: 16px;
  flex: 1;
}

.audit-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.audit-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
}

.btn-audit-more {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

.btn-audit-more:hover {
  background: var(--blue);
  color: #fff;
}

.audit-card-footer {
  padding: 10px 16px;
  background: #f8fafd;
  border-top: 1px solid var(--gray-border);
  font-size: 11px;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.audit-card-footer i {
  color: var(--blue);
  margin-right: 4px;
}

/* ---------------------------------------------------------------
   NEWSLETTER BLUE BAR
--------------------------------------------------------------- */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
}

.nl-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.nl-sub {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 14px;
}

.nl-input-group {
  border-radius: 6px;
  overflow: hidden;
  max-width: 400px;
}

.nl-input {
  border: none;
  padding: 12px 16px;
  font-size: 13.5px;
  border-radius: 0;
}

.nl-input:focus {
  box-shadow: none;
}

.btn-nl-sub {
  background: var(--cyan);
  color: #fff;
  border: none;
  padding: 0 20px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 0;
}

.btn-nl-sub:hover {
  background: #0094dd;
  color: #fff;
}

.nl-or-divider {
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
}

.wa-box {
  text-align: center;
}

.wa-big-icon {
  font-size: 48px;
  color: #25d366;
  display: block;
  margin-bottom: 8px;
}

.wa-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #5dffc0;
}

.wa-sub {
  font-size: 12px;
  opacity: 0.88;
  margin: 8px 0 14px;
}

.btn-wa-join {
  background: #25d366;
  color: #fff;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
}

.btn-wa-join:hover {
  background: #1a9e4c;
  color: #fff;
}

/* ---------------------------------------------------------------
   MISSION + MARKET SHARE
--------------------------------------------------------------- */
.mission-section {
  background: var(--light-bg);
}

.mission-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}

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

.mission-list li {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-mid);
  padding: 8px 0 8px 18px;
  position: relative;
  border-bottom: 1px dashed #d0dce8;
}

.mission-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 10px;
  top: 12px;
}

.prog-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.prog-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.prog-bar-wrap {
  height: 8px;
  background: var(--gray-border);
  border-radius: 4px;
}

.prog-fill {
  background: linear-gradient(90deg, var(--navy), var(--blue));
  height: 100%;
  border-radius: 4px;
}

/* ---------------------------------------------------------------
   NEWS CARDS SECTION (Blue Bg)
--------------------------------------------------------------- */
.news-section {
  background: transparent;
  padding: 0;
}

.news-section>.container-fluid {
  background: var(--navy) !important;
}

.news-section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  border-bottom: 3px solid var(--cyan);
  padding-bottom: 4px;
  display: inline-block;
}

.news-section-heading:hover {
  color: var(--cyan);
}

.news-card-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.news-card-item:hover {
  transform: translateY(-4px);
}

.news-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card-body {
  padding: 16px;
}

.news-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
}

.news-read-more {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
}

.news-read-more:hover {
  color: var(--navy);
}

.btn-news-more {
  background: var(--cyan);
  color: #fff;
  padding: 9px 26px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.btn-news-more:hover {
  background: var(--blue);
  color: #fff;
}

/* ---------------------------------------------------------------
   STATS SECTION
--------------------------------------------------------------- */
.stats-section {
  background: linear-gradient(135deg, #0a1628, var(--navy));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=60') center/cover no-repeat;
  opacity: 0.08;
}

.stats-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--yellow);
  position: relative;
  z-index: 1;
}

.stat-box {
  position: relative;
  z-index: 1;
}

.stat-icon {
  font-size: 36px;
  color: var(--yellow);
  margin-bottom: 10px;
  display: block;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 6px;
}

/* ---------------------------------------------------------------
   GOOGLE REVIEWS
--------------------------------------------------------------- */
.reviews-section {
  background: var(--light-bg);
}

.google-badge-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.g-logo {
  font-size: 22px;
  font-weight: 800;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.g-stars {
  color: #fbbc05;
  font-size: 18px;
  margin: 4px 0;
}

.g-excellent {
  font-weight: 800;
  font-size: 14px;
  color: var(--text-dark);
}

.g-based {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.review-card:hover {
  transform: translateY(-3px);
}

.rev-stars {
  color: #fbbc05;
  font-size: 16px;
  margin-bottom: 8px;
}

.rev-text {
  font-size: 12.5px;
  line-height: 1.7;
  color: #555;
}

.rev-author {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 10px;
}

/* ---------------------------------------------------------------
   TESTIMONIALS
--------------------------------------------------------------- */
.testimonials-section {
  background: #fff;
}

.testi-card {
  background: var(--light-bg);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  position: relative;
  height: 100%;
}

.testi-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue);
  margin-bottom: 14px;
}

.testi-text {
  font-size: 13.5px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 14px;
  margin-bottom: 4px;
}

.testi-role {
  font-size: 12px;
  color: #888;
}

/* Testimonial Carousel Controls */
.testi-prev,
.testi-next {
  width: 38px;
  height: 38px;
  background: var(--navy) !important;
  border-radius: 50% !important;
  top: auto;
  bottom: -54px;
}

.testi-prev {
  left: 42%;
}

.testi-next {
  right: 42%;
}

@media (max-width: 576px) {
  .testi-prev {
    left: 30%;
  }

  .testi-next {
    right: 30%;
  }
}

.testi-indicators {
  bottom: -50px;
}

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

.testi-indicators button.active {
  background: var(--navy) !important;
}

#testimonialCarousel {
  padding-bottom: 70px;
}

/* ---------------------------------------------------------------
   OUR CLIENTS
--------------------------------------------------------------- */
.clients-section {
  background: var(--light-bg);
  border-top: 1px solid var(--gray-border);
}

.clients-track-wrap {
  overflow: hidden;
  position: relative;
}

.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
}

.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--light-bg), transparent);
}

.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--light-bg), transparent);
}

.clients-track {
  display: flex;
  gap: 0;
  animation: clientsScroll 28s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes clientsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo-box {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 12px 22px;
  margin: 0 10px;
  height: 110px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.client-logo-box:hover {
  transform: scale(1.04);
}

.client-logo-box img {
  max-height: 100px;
  object-fit: contain;
}

/* ---------------------------------------------------------------
   REQUEST A CALLBACK
--------------------------------------------------------------- */
.callback-section {
  background: #0d1b2e;
}

.callback-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.callback-heading i {
  color: var(--yellow);
}

.callback-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-top: 12px;
}

.callback-q {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.cb-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13.5px;
  padding: 11px 14px;
}

.cb-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--cyan);
  box-shadow: none;
  color: #fff;
}

.cb-input option {
  background: #1a2a3a;
  color: #fff;
}

.btn-callback {
  background: var(--blue);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 11px;
  border-radius: 6px;
  border: none;
}

.btn-callback:hover {
  background: #005fa3;
  color: #fff;
}

/* ---------------------------------------------------------------
   FOOTPRINTS — India SVG Map
--------------------------------------------------------------- */
.footprints-section {
  background: #f0f5ff;
}

.footprints-map-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.india-map-svg {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 6px 24px rgba(0, 53, 128, 0.18));
}

/* ---------------------------------------------------------------
   FOOTER
--------------------------------------------------------------- */
.main-footer {
  background: var(--navy-dark);
  color: #cde;
}

.footer-col-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 8px;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-sub-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  display: block;
}

/* Footer Contact List */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 12.5px;
  color: #c0d4e8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-icon {
  color: var(--cyan);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 13px;
}

.footer-list li a {
  color: #b0ccde;
}

.footer-list li a:hover {
  color: var(--cyan);
}

/* Footer Links List */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  padding: 4px 0;
}

.footer-links-list li a {
  font-size: 12px;
  color: #aec2d0;
  transition: color 0.2s;
}

.footer-links-list li a i {
  color: var(--blue);
}

.footer-links-list li a:hover {
  color: var(--cyan);
}

/* Social Icons */
.footer-social-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.soc-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s;
}

.soc-icon:hover {
  background: var(--blue);
  color: #fff;
}

/* Association Marks */
.assoc-marks-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.assoc-mark-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Payment Logos */
.payment-logos-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer Form */
.footer-input-group {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-icon-span {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--cyan);
  font-size: 13px;
}

.footer-input {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #fff;
  font-size: 12.5px;
}

.footer-input:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: #fff;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.btn-footer-submit {
  background: var(--blue);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  border: none;
  padding: 11px;
  border-radius: 6px;
}

.btn-footer-submit:hover {
  background: var(--cyan);
  color: #fff;
}

/* Footer Bottom */
.footer-hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

/* ---- TABLET: 768px ---- */
@media (max-width: 768px) {
  .hero-slide {
    height: 280px;
  }

  .hero-text-box {
    padding: 18px 14px;
  }

  .hero-title {
    font-size: 16px;
  }

  .hero-list li a {
    font-size: 12px;
  }

  .btn-hero-dark,
  .btn-hero-primary {
    padding: 8px 16px;
    font-size: 12px;
  }

  .hero-form-col {
    padding: 20px 14px;
  }

  .about-section .col-md-3:first-child {
    order: 2;
  }

  .about-section .col-md-6 {
    order: 1;
  }

  .about-section .col-md-3:last-child {
    order: 3;
  }

  .achieve-heading {
    font-size: 18px;
  }

  .section-heading {
    font-size: 22px;
  }

  .svc-tab-btn {
    padding: 10px 12px;
    font-size: 12px;
  }

  .news-card-img {
    height: 140px;
  }

  .stats-heading {
    font-size: 22px;
  }

  .stat-num {
    font-size: 28px;
  }

  .testi-prev {
    left: 28%;
  }

  .testi-next {
    right: 28%;
  }

  .callback-heading {
    font-size: 20px;
  }

  .footer-grid {
    gap: 20px;
  }

}

/* ---- MOBILE: 576px ---- */
@media (max-width: 576px) {
  .top-bar {
    font-size: 11px;
  }

  .hero-slide {
    height: 240px;
  }

  .hero-title {
    font-size: 14px;
  }

  .hero-list {
    display: none;
  }

  .hero-cta-btns {
    gap: 8px;
  }

  .btn-hero-dark,
  .btn-hero-primary {
    padding: 7px 12px;
    font-size: 11px;
  }

  .section-heading {
    font-size: 19px;
  }

  .about-heading {
    font-size: 20px;
  }

  .nl-heading {
    font-size: 17px;
  }

  .stats-heading {
    font-size: 19px;
  }

  .stat-num {
    font-size: 24px;
  }

  .callback-heading {
    font-size: 18px;
  }

  .audit-img {
    height: 140px;
  }

  .svc-tab-btn {
    font-size: 11px;
    padding: 9px 10px;
  }

  .india-map-svg {
    max-width: 320px;
  }

  .logo-brand {
    font-size: 14px;
  }

  .logo-circle {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .floating-side-btns {
    display: none;
  }

  .footer-col-heading {
    font-size: 14px;
  }
}



/*this is my code html and css service dropdown not opening help me to solve it in it and proper open it do a good css and a proper one and tell me what to replace not to change content or leak code give me this and tell me */