/* ==========================================================================
   SKYDONE HEALTHCARE — Custom Stylesheet
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. VARIABLES
--------------------------------------------------------------------------- */
:root {
  --teal-900: #072a30;
  --teal-700: #0b5a69;
  --teal-500: #128298;
  --navy-950: #071a1e;
  --gold-500: #d2a032;
  --gold-300: #e8c673;
  --paper: #f2f5f1;
  --paper-dim: #e7ece6;
  --ink: #142024;
  --ink-soft: #4a5a5c;
  --mist: #dce6de;
  --font-display: "Cinzel", serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --c-lac: #c81e3a;
  --c-africa: #f07d1c;
  --c-cis: #14a8a0;
  --c-asia: #7cb342;
  --c-europe: #7b4fa6;
  --c-middleeast: #f0b429;
  --c-northamerica: #1e5fc4;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 20px 50px -20px rgba(16, 27, 34, 0.35);
}

/* ---------------------------------------------------------------------------
   2. RESET
--------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

section {
  position: relative;
}

/* ---------------------------------------------------------------------------
   3. TYPOGRAPHY
--------------------------------------------------------------------------- */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  color: var(--navy-950);
  font-weight: 600;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--teal-700);
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--gold-500);
  margin-right: 10px;
  vertical-align: middle;
}

.section-heading {
  font-size: clamp(1.9rem, 3.2vw, 2.3rem);
  margin: 10px 0 16px;
}

.section-lede {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 640px;
}

.text-on-dark {
  color: var(--paper);
}

.text-on-dark .section-heading,
.text-on-dark h1,
.text-on-dark h2,
.text-on-dark h3 {
  color: #fff;
}

.text-on-dark .eyebrow {
  color: var(--gold-300);
}

.text-on-dark .section-lede {
  color: #c7d3ce;
}

/* Buttons */
.btn-brand {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 40px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-brand:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-950);
}

.btn-gold:hover {
  background: var(--gold-300);
  color: var(--navy-950);
  box-shadow: 0 12px 24px -8px rgba(198, 150, 60, 0.55);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-outline-teal {
  border-color: var(--teal-700);
  color: var(--teal-700);
}

.btn-outline-teal:hover {
  background: var(--teal-700);
  color: #fff;
}

/* ---------------------------------------------------------------------------
   4. HEADER
--------------------------------------------------------------------------- */
.site-header {
  
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: #ffffff94;
    position: fixed;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.6);
}

.topbar {
  background: var(--navy-950);
  color: #cdd7d2;
  font-size: 0.8rem;
  padding: 6px 0;
}

.topbar a {
  color: #cdd7d2;
}

.topbar .topbar-social a {
  color: #cdd7d2;
  margin-left: 14px;
  transition: color 0.2s ease;
}

.topbar .topbar-social a:hover {
  color: var(--gold-300);
}

.site-header .navbar-brand img {
  height: 63px;
  width: auto;
}

.site-header .nav-link {
  color: var(--navy-950);
  font-weight: 500;
  font-size: 0.94rem;
  margin: 0 4px;
  padding: 8px 12px !important;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: var(--gold-300);
}

.site-header .dropdown-menu {
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 8px;
}

.site-header .dropdown-item {
  color: #dfe6e2;
  border-radius: 8px;
  font-size: 0.9rem;
  padding: 8px 12px;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus {
  background: var(--teal-900);
  color: #fff;
}

/* Open dropdown on hover (desktop only) */
@media (min-width: 992px) {
  .site-header .nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    margin-top: 0;
  }
 
  .site-header .nav-item.dropdown.show-hover .dropdown-menu,
  .site-header .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.site-header .btn-brand {
  padding: 10px 22px;
}

.navbar-toggler {
  border: none;
  color: #fff;
  font-size: 1.4rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    background: var(--navy-950);
    margin-top: 14px;
    padding: 18px;
    border-radius: var(--radius-md);
  }
}

/* ---------------------------------------------------------------------------
   5. HERO
--------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../images/mainbanner.jpg") center/cover no-repeat;
  position: relative;
  padding-top: 110px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 27, 34, 0.55) 0%, rgba(11, 61, 58, 0.82) 70%, var(--navy-950) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-card {
  background: rgba(16, 27, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 46px clamp(24px, 4vw, 56px);
  max-width: 780px;
}

.hero-card .eyebrow {
  color: var(--gold-300);
}

.hero-card h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 2.9rem);
  margin: 14px 0 18px;
}

.hero-card p {
  color: #d5ded9;
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stat-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-strip .stat-item {
  padding: 26px 20px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-strip .stat-item:first-child {
  border-left: none;
}

.hero-stat-strip .stat-number {
  font-family: var(--font-mono);
  color: var(--gold-300);
  font-size: 1.8rem;
  font-weight: 600;
}

.hero-stat-strip .stat-label {
  color: #c7d3ce;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}


/* new */
.hero-slider .hero-slide{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
    padding-top:110px;
}

.hero-slider .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(16,27,34,.55) 0%,
        rgba(11,61,58,.82) 70%,
        var(--navy-950) 100%
    );
}

.hero-slider .hero-inner{
    position:relative;
    z-index:2;
    width:100%;
}

.hero-card{
    background:rgba(16,27,34,.55);
    border:1px solid rgba(255,255,255,.16);
    backdrop-filter:blur(10px);
    border-radius:var(--radius-lg);
    padding:46px clamp(24px,4vw,56px);
    max-width:780px;
}

.hero-card .eyebrow{
    color:var(--gold-300);
}

.hero-card h1{
    color:#fff;
    font-size:clamp(2.1rem,5vw,2.9rem);
    margin:14px 0 18px;
}

.hero-card p{
    color:#d5ded9;
    font-size:1.05rem;
    max-width:560px;
    margin-bottom:30px;
}

.hero-cta-group{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}
.hero-slider .owl-nav button{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border-radius:50% !important;
    background:rgba(255,255,255,.18) !important;
    color:#fff !important;
    backdrop-filter:blur(8px);
    transition:.3s;
}

.hero-slider .owl-nav button:hover{
    background:var(--gold-400) !important;
}

.hero-slider .owl-prev{
    left:35px;
}

.hero-slider .owl-next{
    right:35px;
}

.hero-slider .owl-dots{
    position:absolute;
    bottom:30px;
    width:100%;
    text-align:center;
}

.hero-slider .owl-dot span{
    width:12px;
    height:12px;
    margin:5px;
    background:rgba(255,255,255,.45) !important;
}

.hero-slider .owl-dot.active span{
    width:34px;
    border-radius:20px;
    background:var(--gold-400) !important;
}
/* ---------------------------------------------------------------------------
   6. ABOUT
--------------------------------------------------------------------------- */
.about-section {
  
  background: var(--paper);
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-badge-coa {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -16px rgba(16, 27, 34, 0.4);
  padding: 18px 20px;
  width: 220px;
  border: 1px dashed var(--gold-500);
}

.about-badge-coa .coa-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--teal-700);
  text-transform: uppercase;
  font-weight: 509;
}

.about-badge-coa .coa-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy-950);
  margin: 6px 0 2px;
  font-weight: 509;
}

.about-badge-coa .coa-code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-soft);
}

.about-experience-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  box-shadow: 0 14px 30px -10px rgba(198, 150, 60, 0.6);
}

.about-experience-badge strong {
  font-size: 1.5rem;
  line-height: 1;
}

.about-experience-badge span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-list {
  margin: 22px 0 28px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}

.about-list li i {
  color: var(--teal-700);
  margin-top: 4px;
}

/* ---------------------------------------------------------------------------
   7. INDUSTRIES WE SERVE
--------------------------------------------------------------------------- */
.industries-section {
  
  background: var(--paper-dim);
}

.industry-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 22px 20px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--mist);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-500);
}

.industry-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--teal-900);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.industry-card h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-950);
  margin-bottom: 0;
}

/* ---------------------------------------------------------------------------
   8. PRODUCTS
--------------------------------------------------------------------------- */
.products-section {
  
  background: var(--paper);
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-soft);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-card .product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 27, 34, 0) 30%, rgba(16, 27, 34, 0.92) 100%);
  display: flex;
  align-items: flex-end;
  padding: 26px;
}

.product-card .product-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold-300);
  text-transform: uppercase;
}

.product-card h5 {
  color: #fff;
  margin: 6px 0 6px;
}

.product-card p {
  color: #cfd8d4;
  font-size: 0.85rem;
  margin: 0;
}

.products-carousel .owl-nav {
  text-align: center;
  margin-top: 26px;
}

.products-carousel .owl-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-900) !important;
  color: #fff !important;
  font-size: 1.2rem !important;
  margin: 0 6px !important;
}

.products-carousel .owl-nav button:hover {
  background: var(--gold-500) !important;
  color: var(--navy-950) !important;
}

/* ---------------------------------------------------------------------------
   9. MANUFACTURING PROCESS
--------------------------------------------------------------------------- */
.process-section {
  
  background: var(--navy-950);
}

.process-track {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  margin-top: 50px;
  position: relative;
}

.process-step {
  flex: 1 1 0;
  min-width: 160px;
  text-align: center;
  padding: 0 14px;
  position: relative;
}

.process-step .process-index {
  font-family: var(--font-mono);
  color: var(--gold-500);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.process-step .process-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-900);
  border: 2px solid var(--gold-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 10px auto 16px;
  position: relative;
  z-index: 2;
}

.process-step h6 {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.process-step p {
  color: #9fb0aa;
  font-size: 0.8rem;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-500) 0 8px, transparent 8px 16px);
  z-index: 1;
}

@media (max-width: 767.98px) {
  .process-step:not(:last-child)::after {
    display: none;
  }
}

/* ---------------------------------------------------------------------------
   10. SERVICES
--------------------------------------------------------------------------- */
.services-section {
  
  background: var(--paper);
}

.service-row {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 40px 0;
  border-bottom: 1px solid var(--mist);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-icon-wrap {
  flex: 0 0 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--teal-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  font-size: 3rem;
}

.service-content {
  flex: 1;
}

.service-content .eyebrow {
  margin-bottom: 8px;
}

.service-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  padding-top: 10px;
}

.service-content p {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0;
}

@media (max-width: 767.98px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .service-content p {
    margin: 0 auto;
  }
}

/* ---------------------------------------------------------------------------
   11. WHY CHOOSE US + STATISTICS (merged)
--------------------------------------------------------------------------- */
.why-stats-section {
  
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--teal-900) 100%);
  position: relative;
  overflow: hidden;
}

.why-stats-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 150, 60, 0.16), transparent 70%);
  top: -160px;
  right: -160px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  height: 100%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.glass-card i {
  font-size: 1.7rem;
  color: var(--gold-300);
  margin-bottom: 14px;
  display: inline-block;
}

.glass-card h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.glass-card p {
  color: #b9c7c1;
  font-size: 0.86rem;
  margin: 0;
}

.stats-row {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-block {
  text-align: center;
}

.stat-block .stat-count {
  color: var(--gold-300);
  font-size: 2.6rem;
  font-weight: 600;
}

.stat-block .stat-tag {
  color: #fff;
  font-weight: 600;
  margin-top: 6px;
}

.stat-block .stat-desc {
  color: #9fb0aa;
  font-size: 0.82rem;
  margin-top: 4px;
}

/* ---------------------------------------------------------------------------
   12. CERTIFICATIONS + GLOBAL PRESENCE
--------------------------------------------------------------------------- */
.certifications-section {
 
  background: var(--paper-dim);
}

.coa-cert-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  border: 1px dashed var(--teal-700);
  position: relative;
  height: 100%;
}

.coa-cert-card::before,
.coa-cert-card::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--paper-dim);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.coa-cert-card::before {
  left: -8px;
}

.coa-cert-card::after {
  right: -8px;
}

.coa-cert-card .cert-mark {
  font-size: 1.7rem;
  color: var(--teal-700);
  margin-bottom: 10px;
}

.coa-cert-card h6 {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: var(--navy-950);
}

.coa-cert-card span {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.global-panel {
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  padding: 40px clamp(20px, 3vw, 40px);
  margin-top: 60px;
}

.global-panel h4 {
  color: #fff;
}

.export-region {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.export-region:last-child {
  border-bottom: none;
}

.export-region i {
  color: var(--gold-300);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.export-region .region-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

.export-region .region-note {
  color: #9fb0aa;
  font-size: 0.78rem;
}

/* ---------------------------------------------------------------------------
   13. TESTIMONIALS
--------------------------------------------------------------------------- */
.testimonials-section {
 
  background: var(--paper);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: 0 5px 15px -9px rgba(16, 27, 34, 0.35);
  height: 100%;
  margin: 6px;
  min-height: 291px;
}

.testimonial-card .stars {
  color: var(--gold-500);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.testimonial-card p.quote {
  color: var(--ink-soft);
  
  min-height: 110px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal-900);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
}

.testimonial-person strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.92rem;
}

.testimonial-person span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.testimonials-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.testimonials-carousel .owl-dot span {
  width: 9px;
  height: 9px;
  margin: 4px;
  background: var(--mist);
  display: block;
  border-radius: 50%;
}

.testimonials-carousel .owl-dot.active span {
  background: var(--gold-500);
}

/* ---------------------------------------------------------------------------
   14. CTA
--------------------------------------------------------------------------- */
.cta-section {
  background: url("../images/cta-bg.webp") center/cover no-repeat;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 27, 34, 0.92) 40%, rgba(16, 27, 34, 0.55) 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  
}
.cta-inner .eyebrow{
  color: var(--gold-500);
}

.cta-inner h2 {
  color: #fff;
 
}

.cta-inner p {
  color: #c7d3ce;
  max-width: 650px;
  margin-bottom: 30px;
}

/* ---------------------------------------------------------------------------
   15. FOOTER
--------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  color: #b9c7c1;
  padding-top: 80px;
}

.site-footer h6 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.site-footer .footer-about p {
  font-size: 0.88rem;
  color: #9fb0aa;
}

.site-footer .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-footer .footer-social a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-950);
}

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

.site-footer ul li a {
  color: #b9c7c1;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.site-footer ul li a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-contact li i {
  color: var(--gold-300);
  margin-top: 3px;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 30px 0 0 30px;
  padding: 10px 16px;
  font-size: 0.85rem;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  border: none;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 0 18px;
  border-radius: 0 30px 30px 0;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding: 22px 0;
  font-size: 0.82rem;
  text-align: center;
  color: #7f938c;
}

/* ---------------------------------------------------------------------------
   16. SCROLL TO TOP
--------------------------------------------------------------------------- */
.scroll-top-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------------------------------------------------------------------------
   17. RESPONSIVE
--------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .about-experience-badge {
    width: 78px;
    height: 78px;
    top: -18px;
    left: -18px;
  }

  .about-badge-coa {
    width: 190px;
    right: -10px;
    bottom: -20px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding-top: 130px;
  }

  .hero-card {
    padding: 30px 22px;
  }

  .hero-stat-strip .row > div {
    margin-bottom: 10px;
  }

  .hero-stat-strip .stat-item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-stat-strip .stat-item:first-child {
    border-top: none;
  }

  .about-media {
    margin-bottom: 70px;
  }

  .global-panel {
    padding: 26px 18px;
  }
}

@media (max-width: 575.98px) {
  .section-heading {
    font-size: 1.7rem;
  }

  .btn-brand {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-group {
    flex-direction: column;
  }
}

.comanspace{
  padding: 80px 0;
}



/* ---------------------------------------------------------------------------
   13. Innerbanner
--------------------------------------------------------------------------- */



/* Banner */
.innerbanner {
    background: linear-gradient(160deg, var(--navy-950) 0%, var(--teal-900) 100%);
    padding: 56px 0 40px;
    text-align: center;
}
.innerbanner h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
}
.innerbanner .breadcrumb {
    background: transparent;
    display: inline-flex;
    padding: 0;
    margin: 0 auto;
}
.innerbanner .breadcrumb-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
}
.innerbanner .breadcrumb-item.active {
    color: var(--gold-500);
    font-size: 14px;
    font-weight: 500;
}
.innerbanner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* Wrapper */
.catwrap {
    
    position: relative;
    z-index: 2;
}

/* Accordion cards */
.catcard {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 18px rgba(13, 43, 82, 0.08);
}

.catwrap .accordion-button {
    background: #fff;
    color: #0d2b52;
    font-size: 17px;
    font-weight: 600;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: none;
}
.catwrap .accordion-button:not(.collapsed) {
    background: rgb(22 44 49);
    color: #fff;
}
.catwrap .accordion-button:focus {
    box-shadow: none;
}
.catwrap .accordion-button::after {
    margin-left: auto;
    filter: none;
}
.catwrap .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.catletter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff4dc;
    color: var(--gold-500);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.accordion-button:not(.collapsed) .catletter {
    background: var(--gold-500);
    color: #fff;
}

.catcount {
    margin-left: auto;
    margin-right: 12px;
    font-size: 13px;
    font-weight: 400;
    color: #8a93a3;
    white-space: nowrap;
}
.catwrap .accordion-button:not(.collapsed) .catcount {
    color: rgba(255,255,255,0.65);
}

.catwrap .accordion-body {
    background: #f8fafb;
    padding: 24px;
}

/* Product chips */
.prodgrid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.prodchip {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e3e8ee;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333c4a;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.prodchip:hover {
    border-color: var(--gold-500);
    background: #fff4dc;
    color: #0d2b52;
}

@media (max-width: 575px) {
    .catbanner h1 { font-size: 24px; }
    .accordion-button { font-size: 15px; padding: 14px 16px; }
    .catcount { display: none; }
    .prodchip { font-size: 13px; padding: 8px 12px; }
}



.sectiontag {
    display: inline-block;
    color: #6cb33f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: var(--bs-breadcrumb-item-padding-x);
    color: rgba(255, 255, 255, 0.75);
}
/* About Section */

.aboutimgwrap {
    position: relative;
    display: inline-block;
}
.aboutimgwrap img {
    width: 100%;
    border-radius: 16px;
}
.expbadge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #0d2b52;
    color: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(13, 43, 82, 0.25);
}
.expbadge .expnum {
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: 4px;
}
.expbadge .explabel {
    font-size: 12px;
    line-height: 1.3;
}

.abouttext h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0d2b52;
    margin-bottom: 16px;
}
.abouttext p {
   
    color: #5f6b7d;
    line-height: 1.7;
    margin-bottom: 22px;
}

.aboutpoints {
    margin-bottom: 26px;
}
.pointitem {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.pointicon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #fff4dc;
    color: var(--gold-500);
    font-size: 12px;
    flex-shrink: 0;
}
.pointitem span:last-child {
    font-size: 14.5px;
    color: #333c4a;
    font-weight: 500;
}

.aboutbtn {
    background: #6cb33f;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.aboutbtn:hover {
    background: #0d2b52;
    color: #fff;
}

/* Mission & Vision Section */
.mvsec {
    background: #f8fafb;
}
.mvsec h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0d2b52;
}

.mvcard {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    height: 100%;
    box-shadow: 0 4px 18px rgba(13, 43, 82, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mvcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(13, 43, 82, 0.12);
}

.mvicon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #eaf5e2;
    color: #6cb33f;
    font-size: 24px;
    margin-bottom: 20px;
}
.mvvision .mvicon {
    background: #dbe9fb;
    color: #0d2b52;
}

.mvcard h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0d2b52;
    margin-bottom: 12px;
}
.mvcard p {
    font-size: 14.5px;
    color: #5f6b7d;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767px) {
    .aboutsec, .mvsec { padding: 50px 0; }
    .abouttext h2, .mvsec h2 { font-size: 24px; }
    .expbadge { padding: 14px 18px; bottom: -16px; right: -16px; }
    .expbadge .expnum { font-size: 20px; }
}



.globalsec {
    background: #f8fafb;
}

.mapwrap {
    text-align: center;
    margin-bottom: 28px;
}
.mapwrap img {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}

/* Region tabs */
.regiontabs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0 0 28px;
    border: none;
}
.regiontabs .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #5f6b7d;
    background: #f1f4f8;
    border: none;
    border-radius: 30px;
    padding: 9px 18px;
    transition: background 0.2s ease, color 0.2s ease;
}
.regiontabs .nav-link.active {
    background: #0d2b52;
    color: #fff;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.dot-lac { background: var(--c-lac); }
.dot-africa { background: var(--c-africa); }
.dot-cis { background: var(--c-cis); }
.dot-asia { background: var(--c-asia); }
.dot-europe { background: var(--c-europe); }
.dot-middleeast { background: var(--c-middleeast); }
.dot-northamerica { background: var(--c-northamerica); }

/* Country chips */
.regioncontent {
    border-top: 1px solid #eef1f5;
    padding-top: 24px;
}
.countrygrid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.countrychip {
    background: #f8fafb;
    border: 1px solid #e3e8ee;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 13.5px;
    font-weight: 500;
    color: #333c4a;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.countrychip:hover {
    border-color: rgb(22 44 49);
    background: #fff4dc;
    color: rgb(22 44 49);
}

@media (max-width: 767px) {
    .globalcard { padding: 26px 18px; }
    .globalsec h2 { font-size: 24px; }
    .regiontabs .nav-link { font-size: 12.5px; padding: 8px 14px; }
    .countrychip { font-size: 12.5px; padding: 8px 12px; }
}



.contactcard {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(13, 43, 82, 0.1);
}

/* Info panel */
.contactinfo {
    background: var(--navy-950);
    height: 100%;
    padding: 44px 36px;
}
.infoitem {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}
.infoitem:last-child {
    margin-bottom: 0;
}
.infoicon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-size: 17px;
    flex-shrink: 0;
}
.infoitem h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}
.infoitem p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.infoitem p a {
    color: var(--gold-500);
    text-decoration: none;
}

/* Form panel */
.contactform {
    padding: 44px 40px;
}
.contactform h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 24px;
}
.contactform .form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-950);
    margin-bottom: 6px;
}
.contactform .form-control,
.contactform .form-select {
    border: 1px solid #e3e8ee;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
}
.contactform .form-control:focus,
.contactform .form-select:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(210, 160, 50, 0.15);
}
.submitbtn {
    background: var(--gold-500);
    color: var(--navy-950);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 32px;
    border-radius: 8px;
}
.submitbtn:hover {
    background: var(--navy-950);
    color: #fff;
}

/* Map */
.mapwrap {
    margin-top: 32px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(13, 43, 82, 0.08);
}
.mapwrap iframe {
    width: 100%;
    height: 360px;
    border: 0;
}

@media (max-width: 991px) {
    .contactinfo { padding: 32px 28px; }
    .contactform { padding: 32px 28px; }
}
@media (max-width: 575px) {
    .contactsec h2 { font-size: 24px; }
    .contactform h3 { font-size: 19px; }
}
.cmstext h2{
  font-size: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
}
.cmstext h3{
  font-size: 17px;
  margin-bottom: 15px;
  padding-top: 20px;
}
.cmstext ul{
  list-style: disc;
  padding-left: 15px;
  margin-bottom: 15px;
}
@media(max-width: 991px){
  .site-header .navbar-toggler i{
    color: #000;
  }
  .site-header .navbar-brand img {
    height: 47px !important;
  }
  .site-header .nav-link{
    color: #fff;
  }
  .dropdown-toggle::after{
    margin-left: 12px;
  }
}
@media(max-width: 768px){
  
  .hero-slider .hero-slide{
    padding-top: 59px !important;
  }
  .hero-card h1 {
    font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
    margin: 14px 0 12px !important;
  }
  .eyebrow{
    font-size: 10px !important;
  }
  .hero-card p{
    font-size: 15px !important;
  }
  .about-media {
        margin-bottom: 0 !important;
    }
  .section-heading {
        font-size: 23px !important;
  }
  .section-lede{
    font-size: 14.5px !important;
  }
  body{
    font-size: 14.5px !important;
  }
  .about-list li{
    margin-bottom: 6px;
  }
  .about-list {
    margin: 15px 0 15px;
}
.comanspace {
    padding: 45px 0;
}
.industry-card h5{
  font-size: 14.5px !important;
}
.stat-block .stat-desc{
  font-size: 12px;
}
.stat-block .stat-tag{
  font-size: 13px;
}
.stat-block .stat-count{
  font-size: 28px;
}
.cta-section{
  padding: 0 20px;
}
.footer-bottom {
  margin-top: 22px;
}

}
