/* ============================================
   SUNSHINE BLUE LLC – MAIN STYLESHEET
   Color Palette from Logo:
   Navy: #0A2854 | Blue: #1565C0 | Gold: #C8941A
   White: #FFFFFF | Light: #F4F7FC
============================================ */

:root {
  --navy: #0A2854;
  --blue: #1565C0;
  --blue-mid: #1976D2;
  --gold: #C8941A;
  --gold-light: #E8B84B;
  --white: #ffffff;
  --light-bg: #F4F7FC;
  --text-dark: #1a1a2e;
  --text-body: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(10,40,84,0.10);
  --shadow-lg: 0 12px 48px rgba(10,40,84,0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: var(--transition); }

/* ============================================
   NAVBAR
============================================ */
#mainNav {
  background: #ffffff;
  padding: 18px 0;
  transition: var(--transition);
  z-index: 9999;
}
#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(10,40,84,0.25);
}
.nav-logo {
  height: 46px;
  width: auto;
}
.logo-text-fallback {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-sunshine { color: var(--white); }
.logo-blue { color: #258cff; }
.logo-text-fallback sup {
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin-left: 2px;
  vertical-align: super;
}
.navbar-toggler {
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 6px 10px;
  color: white;
  background: none;
}
.navbar-toggler i { font-size: 22px; color: #000; }
.navbar-nav .nav-link {
  color: rgb(0 0 0) !important;
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 14px !important;
  letter-spacing: 0.3px;
  position: relative;
}
.fixed-top {
    position: sticky !important;
}
.dropdown-toggle::after {
    display:none;
}
/*.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 5px; right: 5px;
  height: 2px;
  background: #258cff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}*/
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link.active { color: #258cff !important;font-weight: 600; }
.navbar-nav .nav-link i { font-size: 14px; vertical-align: middle; }

/* Dropdown */
.dropdown-menu.mega-dropdown {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 8px;
  min-width: 220px;
  border-top: 3px solid #000;
  animation: dropIn 0.25s ease forwards;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Show on hover */
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu .dropdown-item {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.dropdown-menu .dropdown-item i { color: var(--blue); font-size: 16px; }
.dropdown-menu .dropdown-item:hover {
  background: var(--light-bg);
  color: var(--navy);
  padding-left: 22px;
}

/* CTA Btn Navbar */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white) !important;
  font-weight: 600;
  justify-content: center;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(200,148,26,0.35);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,148,26,0.45);
  background: linear-gradient(135deg, #d9a31e, #258cff);
  color: var(--white) !important;
}
.second_lable {
    justify-content: left !important;
}
/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  position: relative;
  height: 550px;
  min-height: 550px;
  overflow: hidden;
}
.hero-slides { width: 100%; height: 550px; position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 8s ease;
  transform: scale(1.06);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,40,84,0.85) 0%, rgba(10,40,84,0.55) 60%, rgba(21,101,192,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-tag {
  display: inline-block;
  background: rgb(21 92 176);
    border: 1px solid #258cff;
    color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: #258cff;
}
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 34px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-hero-primary {
  background: #258cff;
  color: white !important;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(200,148,26,0.4);
}
.btn-hero-primary:hover { background: #258cff; transform: translateY(-2px); }
.btn-hero-secondary {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white !important;
  font-weight: 500;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.22); border-color: white; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #258cff; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; margin-top: 3px; }

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.slider-btn:hover { background: #258cff; border-color: #258cff; }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: #258cff; width: 28px; border-radius: 6px; }
.scroll-indicator {
  position: absolute;
  bottom: 35px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.scroll-line {
  width: 2px; height: 50px;
  background: linear-gradient(to bottom, transparent, #258cff);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { height: 0; opacity: 0; }
  50% { height: 50px; opacity: 1; }
  100% { height: 0; opacity: 0; }
}

/* ============================================
   TICKER MARQUEE
============================================ */
.ticker-wrap {
  background: var(--navy);
  overflow: hidden;
  padding: 14px 0;
  border-bottom: 3px solid #258cff;
}
.ticker-inner {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-inner span {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker-inner span i { color: #258cff; font-size: 16px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMONS
============================================ */
.section-pad { padding: 90px 0; }
.bg-light-custom { background: var(--light-bg) !important; }
.section-label {
  font-size: 12px;
      justify-content: center;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #258cff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: #258cff;
  display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 18px;
}
.section-body { color: var(--text-body); font-size: 15.5px; line-height: 1.75; }

/* ============================================
   ABOUT SECTION
============================================ */
.about-img-grid {
  position: relative;
  padding-bottom: 60px;
}
.about-img-main {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: block;
}
.about-img-small {
  position: absolute;
  bottom: 0; right: 0;
  width: 200px;
  border-radius: 12px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 30px; right: 10px;
  background: #258cff;
  color: white;
  padding: 18px 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(200,148,26,0.4);
}
.badge-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: 11px; font-weight: 600; opacity: 0.9; letter-spacing: 0.5px; }
.about-features .feat-item {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-features .feat-item i { color: #258cff; font-size: 18px; }

/* ============================================
   SERVICE CARDS
============================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1.5px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #258cff, var(--blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); }
.service-icon i { font-size: 24px; color: white; }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--text-body); line-height: 1.7; margin-bottom: 18px; }
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { color: #258cff; gap: 10px; }

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-box {
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-box i { font-size: 28px; color: #258cff; margin-bottom: 6px; }
.stat-box .counter {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.stat-box small { font-size: 13px; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }

/* ============================================
   PRODUCT CARDS
============================================ */
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,40,84,0.9) 0%, rgba(10,40,84,0.3) 60%, transparent 100%);
  transition: var(--transition);
}
.product-card:hover .product-overlay { background: linear-gradient(to top, rgba(10,40,84,0.95) 0%, rgba(10,40,84,0.6) 100%); }
.product-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 26px;
  z-index: 2;
}
.product-content i { font-size: 26px; color: #258cff; margin-bottom: 8px; display: block; }
.product-content h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 6px; }
.product-content p { font-size: 13.5px; color: rgba(255,255,255,0.75); margin-bottom: 12px; line-height: 1.5; display: none; }
.product-card:hover .product-content p { display: block; }
.product-content a { font-size: 13px; color: #258cff; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.product-content a:hover { color: white; }

/* ============================================
   WHY CHOOSE US
============================================ */
.why-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3366 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.why-section::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(21,101,192,0.18);
}
.why-list { margin-top: 30px; display: flex; flex-direction: column; gap: 22px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-item > i {
  font-size: 22px;
  color: #258cff;
  margin-top: 3px;
  flex-shrink: 0;
}
.why-item strong { display: block; color: white; font-size: 15px; margin-bottom: 2px; }
.why-item p { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0; }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white !important;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* Global Map Visual */
.global-map-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.globe-img {
  width: 100%;
  border-radius: 20px;
  filter: brightness(0.6) saturate(0.8);
}
.office-pin {
  position: absolute;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  animation: pinFloat 3s ease infinite;
}
.pin-usa { top: 35%; left: 12%; animation-delay: 0s; }
.pin-uk { top: 20%; left: 42%; animation-delay: 0.5s; }
.pin-china { top: 30%; right: 12%; animation-delay: 1s; }
.pin-india { bottom: 30%; right: 28%; animation-delay: 1.5s; }
@keyframes pinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================
   OFFICE CARDS
============================================ */
.office-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  height: 100%;
  transition: var(--transition);
  text-align: center;
}
.office-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #258cff; }
.office-flag { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.office-card h5 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.office-card p { font-size: 13.5px; color: var(--text-body); margin-bottom: 14px; line-height: 1.6; }
.office-phone {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.office-phone:hover { color: #258cff; }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonial-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: #258cff;
  opacity: 0.2;
  line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.stars { color: #258cff; margin-bottom: 16px; }
.stars i { font-size: 15px; }
.testimonial-card p { font-size: 14.5px; color: var(--text-body); font-style: italic; line-height: 1.75; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14.5px; color: var(--navy); }
.testi-author small { color: var(--text-light); font-size: 12.5px; }

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: linear-gradient(135deg, #258cff 0%, #9c6f10 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-2.5h10v-5H20V20.5z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: white; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  background: white;
  color: #258cff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.btn-cta-outline {
  border: 2px solid white;
  color: white !important;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); }

/* ============================================
   FOOTER
============================================ */
.main-footer { background: #08213e; color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo {     width: 250px;
    margin-bottom: 14px;
    background: white;
    border-radius: 5px;
    padding: 10px 10px;}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}
.logo-blue-light { color: #258cff; }
.footer-tagline {
  font-style: italic;
  color: #258cff;
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.social-icons a:hover { background: #258cff; border-color: #258cff; color: white; transform: translateY(-3px); }
.footer-heading { color: white; font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.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: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links a i { color: #258cff; font-size: 14px; }
.footer-links a:hover { color: #258cff; padding-left: 5px; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 13.5px; }
.footer-contact li i { color: #258cff; font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: #258cff; }
.footer-bottom {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom p { margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 12.5px; }
.footer-bottom-links a:hover { color: #258cff; }

/* ============================================
   FLOATING BUTTONS
============================================ */
.floating-btns {
  position: fixed;
  bottom: 26px; right: 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: white !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.float-btn:hover { transform: scale(1.1) translateY(-3px); }
.float-phone { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.float-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 90px; right: 20px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 9997;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #258cff; transform: translateY(-3px); }

/* ============================================
   INQUIRY POPUP
============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,40,84,0.75);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-box {
  background: white;
  border-radius: 20px;
  padding: 35px 30px 20px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 24px 80px rgba(10,40,84,0.3);
}
.popup-overlay.active .popup-box { transform: scale(1); }
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--light-bg);
  border: none;
  font-size: 18px;
  color: var(--text-body);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.popup-close:hover { background: var(--navy); color: white; }
.logo_popup {
    width: 200px;
    margin-bottom: 10px;
}
.popup-box h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); margin-bottom: 10px; }
.popup-box > p { color: var(--text-body); font-size: 14.5px; margin-bottom: 0px; }
.popup-box .form-control {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
}
.popup-box .form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.12); }
.popup-note { font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* ============================================
   ANIMATIONS
============================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-slide.active .animate-fade-up { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   INNER PAGES – BANNER
============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 70px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-banner h1 { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: white; margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,0.75); font-size: 15.5px; }
.breadcrumb-item a { color: #258cff; }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================
   CONTACT PAGE
============================================ */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1.5px solid var(--border);
  height: 100%;
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-lg); border-color: #258cff; transform: translateY(-4px); }
.contact-info-card .icon-wrap {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact-info-card .icon-wrap i { font-size: 22px; color: white; }
.contact-info-card h5 { font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: var(--text-body); margin: 0; display: block; }
.contact-info-card a:hover { color: var(--blue); }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.contact-form-card .form-label { font-weight: 600; font-size: 14px; color: var(--navy); }
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14.5px;
  transition: var(--transition);
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

        /* card styles */
        .service-card, .process-card, .industry-card {
            background: white;
            border-radius: 28px;
            padding: 2rem 1.8rem;
            transition: all 0.3s ease;
            border: 1px solid #E9EDF2;
            height: 100%;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
        }

        .service-card:hover, .process-card:hover, .industry-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
            border-color: #1257a8;
        }

        .service-card h4, .process-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #0B2B5E;
        }

        .service-card p, .process-card p {
            color: #4A5568;
            line-height: 1.5;
        }

        /* step circles for process */
        .step-number {
            width: 48px;
            height: 48px;
            background: #0B2B5E;
            color: white;
            font-weight: 800;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 60px;
            margin-bottom: 1.2rem;
            transition: 0.2s;
        }
    .banner_service_page img {
        width:100%;
        height: 400px;
    object-fit: cover;
    }
        .process-card:hover .step-number {
            background: #116ab7;
            color: #fff;
        }

        /* Why choose list */
        .check-list {
            list-style: none;
            padding: 0;
        }

        .check-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            color: #1F2A44;
        }

        .check-list li i {
            color: #1158a9;
            font-size: 1.4rem;
        }

        /* banner image (global trade) */
        .img-preview {
            border-radius: 32px;
            width: 100%;
            object-fit: cover;
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
        }

        .bg-soft-gold {
            background: linear-gradient(135deg, #FEF9E6 0%, #ffffff 100%);
            border-radius: 32px;
        }

        /* 2 column layout */
        .two-col-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        /* responsive */
        @media (max-width: 992px) {
            .two-col-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
        }

        @media (max-width: 768px) {
            .service-card, .process-card {
                padding: 1.5rem;
            }
            .banner_service_page img {
        height: 200px;
    
    }
        }
.services-container .service-icon {
        color: white;
    font-size: 25px;
    margin: 0 auto 10px;
}
.services-container {
    padding:50px 0;
}
@media (max-width: 991px) {
  .navbar-collapse { background: var(--navy); border-radius: 12px; margin-top: 10px; padding: 16px; }
  .dropdown-menu.mega-dropdown { position: static; box-shadow: none; border: none; background: rgba(255,255,255,0.07); border-radius: 8px; }
  .dropdown-menu .dropdown-item { color: rgba(255,255,255,0.8); }
  .dropdown-menu .dropdown-item:hover { background: rgba(255,255,255,0.1); color: white; }
  .hero-title { font-size: 2.2rem; }
  .about-img-grid { padding-bottom: 0px; padding-right: 0px; }
  .about-img-small { width: 140px; }
  .global-map-visual { margin-top: 40px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .scroll-indicator { display: none; }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-title { font-size: 1.9rem; }
  .hero-stats { gap: 24px; }
  .contact-form-card { padding: 30px 22px; }
  .about-img-small { display: none; }
  .about-badge { display: none; }
  .floating-btns { bottom: 16px; right: 14px; }
  .float-btn { width: 46px; height: 46px; font-size: 20px; }
  .cta-section h2 { font-size: 1.7rem; }
  .slider-next,
  .slider-prev {
      display:none !important;
  }
  .hero-tag {
      font-size: 10px;
  }
  .popup-box > p {
    font-size: 12px;
  }
  .popup-box h3 {
    font-size: 15px;
  }
  .nav-logo {
    height: 36px;
  }
  .hero-section,
  .hero-slides {
      min-height:450px;
          height: 450px;
  }
  .btn-hero-secondary,
  .btn-hero-primary {
      font-size: 12px;
    padding: 10px 18px;
  }
}