/* ============================================================
   LogiGlobe - Premium Logistics Website Stylesheet
   Brand: #084F80 (Dark Blue) | #84B53B (Green) | #FFFFFF | #F8F9FA
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
html,
body{
    overflow-x: hidden;
}
/* --- CSS Custom Properties --- */
:root {
  --blue:        #084F80;
  --blue-dark:   #053d63;
  --blue-light:  #0a6aad;
  --green:       #84B53B;
  --green-dark:  #6a9230;
  --green-light: #9dcf47;
  --white:       #ffffff;
  --light:       #F8F9FA;
  --gray:        #6c757d;
  --dark:        #1a2332;
  --text:        #374151;
  --border:      #e5e7eb;

  --gradient-blue:  linear-gradient(135deg, #084F80 0%, #0a6aad 100%);
  --gradient-green: linear-gradient(135deg, #84B53B 0%, #9dcf47 100%);
  --gradient-hero:  linear-gradient(135deg, rgba(8,79,128,0.92) 0%, rgba(8,79,128,0.75) 50%, rgba(132,181,59,0.65) 100%);

  --shadow-sm:  0 2px 8px rgba(8,79,128,0.08);
  --shadow-md:  0 8px 32px rgba(8,79,128,0.12);
  --shadow-lg:  0 20px 60px rgba(8,79,128,0.18);
  --shadow-xl:  0 32px 80px rgba(8,79,128,0.22);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { color: var(--gray); line-height: 1.8; }

a { text-decoration: none; color: var(--blue); transition: var(--transition); }
a:hover { color: var(--green); }

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

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 10px; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-blue    { color: var(--blue) !important; }
.text-green   { color: var(--green) !important; }
.bg-blue      { background: var(--blue) !important; }
.bg-green     { background: var(--green) !important; }
.bg-light-gray { background: var(--light) !important; }

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(132,181,59,0.12);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(132,181,59,0.25);
}

.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.section-heading {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-heading span { color: var(--blue); }
.section-heading .accent { color: var(--green); }

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

.divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-green);
  border-radius: 10px;
  margin: 16px auto 24px;
}

.divider-left { margin-left: 0; }

/* --- Buttons --- */
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-green);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(132,181,59,0.35);
  text-decoration: none;
}

.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(132,181,59,0.45);
  color: var(--white);
  background: linear-gradient(135deg, #6a9230 0%, #84B53B 100%);
}

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-lg:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-blue);
  color: var(--white);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(8,79,128,0.3);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(8,79,128,0.4);
  color: var(--white);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-green);
  color: var(--white);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(132,181,59,0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(132,181,59,0.4);
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 12px 0;
}

#navbar.transparent {
  background: #fff !important;
}

#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(8,79,128,0.12);
  padding: 8px 0;
}

.navbar-brand img {
  height: 52px;
  transition: var(--transition);
}

#navbar.scrolled .navbar-brand img { height: 44px; }

.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: #1a2332 !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

#navbar.scrolled .nav-link { color: var(--dark) !important; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--green);
  border-radius: 10px;
  transition: var(--transition);
}


.nav-link.active::after { left: 14px; right: 14px; }

.nav-link::after{
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: .3s ease;
}

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

.nav-cta {
  background: var(--gradient-green);
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(132,181,59,0.35);
}

.nav-cta::after { display: none; }
.nav-cta:hover { box-shadow: 0 8px 28px rgba(132,181,59,0.45) !important; color: var(--white) !important; }

.navbar-toggler { border: none; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon-custom span {
  display: block;
  width: 24px; height: 2px;
  background: #000;
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

#navbar.scrolled .navbar-toggler-icon-custom span { background: var(--dark); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,79,128,0.88) 0%, rgba(8,79,128,0.70) 50%, rgba(6,50,80,0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(132,181,59,0.2);
  border: 1px solid rgba(132,181,59,0.4);
  color: #b8e05c;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero h1 .highlight {
  color: var(--green);
  position: relative;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 38px;
}

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

/* Stats floating bar */
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  margin-top: 60px;
  display: flex;
  gap: 0;
}

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  display: block;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-top: 4px;
  display: block;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--green);
  border-radius: 2px;
  animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview { background: var(--white); }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: var(--transition-slow);
}

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

.about-badge {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.about-badge .icon {
  width: 48px; height: 48px;
  background: var(--gradient-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
}

.about-badge .text strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.about-badge .text span {
  font-size: 0.78rem;
  color: var(--gray);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.about-feature-icon {
  width: 46px; height: 46px;
  background: rgba(132,181,59,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
  flex-shrink: 0;
  transition: var(--transition);
}

.about-feature:hover .about-feature-icon {
  background: var(--gradient-green);
  color: var(--white);
}

.about-feature h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.about-feature p { font-size: 0.87rem; margin: 0; }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(132,181,59,0.3);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-card-img img { transform: scale(1.1); }

.service-card-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,79,128,0.7), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-card-img .overlay { opacity: 1; }

.service-icon-badge {
    position: absolute;
    bottom: 8px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--gradient-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(132,181,59,0.4);
}

.service-icon-badge img{
    width:22px;
    height:22px;
    display:block;
    filter: brightness(0) invert(1); /* White SVG */
}

.service-card-body {
  padding: 30px 24px 24px;
}

.service-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  transition: var(--transition);
}

.service-card:hover .service-card-body h4 { color: var(--blue); }

.service-card-body p {
  font-size: 0.87rem;
  margin-bottom: 16px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover { color: var(--green); gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }

.why-card {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(8,79,128,0.15);
}

.why-icon {
  width: 72px; height: 72px;
  background: rgba(8,79,128,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--blue);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(8,79,128,0.3);
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p { font-size: 0.85rem; margin: 0; }

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process-section {
  background: var(--gradient-blue);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(132,181,59,0.08);
  pointer-events: none;
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 80px; height: 80px;
  background: #fff !important;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green);
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.process-step:hover .process-step-num {
  background: var(--green) !important;
  border-color: var(--green);
  color: var(--white);
  transform: scale(1.1);
}

.process-connector {
  position: absolute;
  top: 40px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: rgba(255,255,255,0.2);
  z-index: 0;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  border: 5px solid transparent;
  border-left-color: rgba(255,255,255,0.2);
}

.process-step h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  color: rgba(255,255,255,0.7);
  font-size: 0.83rem;
}

/* ============================================================
   GLOBAL NETWORK
   ============================================================ */
.network-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.network-map {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.network-map img {
  width: 100%;
  opacity: 0.5;
  filter: sepia(1) saturate(0.5) hue-rotate(180deg);
}

.map-dot {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(132,181,59,0.6);
  animation: pulse-map 2.5s infinite;
  cursor: pointer;
}

.map-dot::after {
  content: attr(data-label);
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
}

.map-dot:hover::after { opacity: 1; }

@keyframes pulse-map {
  0% { box-shadow: 0 0 0 0 rgba(132,181,59,0.6); }
  70% { box-shadow: 0 0 0 16px rgba(132,181,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(132,181,59,0); }
}

.network-region {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  margin-bottom: 12px;
}

.network-region:hover {
  background: rgba(132,181,59,0.1);
  border-color: rgba(132,181,59,0.3);
  transform: translateX(4px);
}

.network-region .dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-map 2s infinite;
}

.network-region h6 {
  color: var(--white);
  font-size: 0.9rem;
  margin: 0;
}

.network-region p {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  margin: 0;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { background: var(--light); }

.industry-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 10px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}

.industry-card:hover {
  background: var(--gradient-blue);
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
  transition: var(--transition);
}

.industry-card h6 {
  margin: 0px !important;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}
.footer-logo-text{
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
}

.footer-logo-text:hover{
    color: #84b53b; 
}
.industry-card:hover .industry-icon { transform: scale(1.15); }
.industry-card:hover h6 { color: var(--white); }

/* ============================================================
   STATISTICS
   ============================================================ */
.stats-section { background: var(--white); }

.stat-card {
  text-align: center;
  background-color: #fff !important;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-green);
  transform: scaleX(0);
  transition: var(--transition);
}

.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  display: block;
}

.stat-plus { color: var(--green); }

.stat-label {
  font-size: 0.95rem;
  color: var(--gray);
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: rgba(132,181,59,0.2);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.author-company {
  font-size: 0.8rem;
  color: var(--gray);
}

.star-rating { color: #f59e0b; font-size: 0.9rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--gradient-blue);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(132,181,59,0.12);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-content { position: relative; z-index: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}

.footer-top { padding: 80px 0 50px; }

.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 48px; }

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

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

.social-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

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

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

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

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

.footer-links a::before {
  content: '›';
  color: var(--green);
  font-size: 1rem;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item .icon {
  width: 36px; height: 36px;
  background: rgba(132,181,59,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item .info {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-contact-item .info a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-item .info a:hover { color: var(--green); }

.newsletter-form { margin-top: 16px; }

.newsletter-form input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  margin-bottom: 10px;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--green); background: rgba(255,255,255,0.12); }

.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 0;
}

.footer-bottom {
  padding: 20px 0;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-bottom a:hover { color: var(--green); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--gradient-blue);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(132,181,59,0.1);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 10%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.page-hero h1 { color: var(--white); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item a:hover { color: var(--green); }
.breadcrumb-item.active { color: var(--green); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.vision-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.vision-card.blue-top::before { background: var(--gradient-blue); }
.vision-card.green-top::before { background: var(--gradient-green); }

.vision-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* .vision-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
} */

.vision-icon{
    width:80px;
    height:80px;
    background:#084F80;
    color:#fff !important;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
    margin-bottom: 25px;
}

.vision-icon img{
    width:35px;
    height:35px;
    display:block;
    filter: brightness(0) invert(1);
}

.vision-icon:hover{
    background:#063B5F;
}

.core-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: var(--transition);
}

.core-value:hover {
  border-color: rgba(132,181,59,0.3);
  box-shadow: var(--shadow-sm);
}

.core-value-num {
  width: 40px; height: 40px;
  background: var(--gradient-blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-avatar {
  width: 100%; height: 200px;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.4);
}

.team-info { padding: 24px 20px; }
.team-info h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-info .role { font-size: 0.82rem; color: var(--green); font-weight: 600; }
.team-info p { font-size: 0.83rem; margin-top: 10px; }

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.timeline-year {
  flex-shrink: 0;
  width: 80px;
  text-align: right;
}

.timeline-year span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(8,79,128,0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

.timeline-dot-line {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 14px; height: 14px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
  flex-shrink: 0;
}

.timeline-line {
  flex: 1;
  width: 2px;
  background: rgba(132,181,59,0.25);
  margin-top: 4px;
}

.timeline-content h6 { font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.timeline-content p { font-size: 0.85rem; margin: 0; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:nth-child(even) { background: var(--light); }

.service-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail-img img {
  width: 100%; height: 380px;
  object-fit: cover;
}

.service-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.service-benefit i { color: var(--green); margin-top: 2px; }
.service-benefit span { font-size: 0.88rem; color: var(--text); }

/* ============================================================
   WHY CHOOSE US PAGE
   ============================================================ */
.advantage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.advantage-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 0;
  background: var(--gradient-blue);
  transition: var(--transition-slow);
  z-index: 0;
}

.advantage-card:hover::after { height: 100%; }

.advantage-card > * { position: relative; z-index: 1; }

.advantage-card:hover h4,
.advantage-card:hover p,
.advantage-card:hover .adv-icon { color: var(--white); }

.adv-icon {
  font-size: 3rem;
  color: var(--blue);
  margin-bottom: 20px;
  display: block;
  transition: var(--transition);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  color: var(--dark);
}

.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8,79,128,0.1);
  outline: none;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-info-card {
  background: var(--gradient-blue);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  height: 100%;
  color: var(--white);
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
  flex-shrink: 0;
}

.contact-detail h6 {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-detail p {
  color: var(--white);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

.contact-detail a { color: var(--white); }

.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(8,79,128,0.2); }

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  user-select: none;
}

.faq-question i { color: var(--blue); transition: var(--transition); }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--green); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--gray);
  font-size: 0.88rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: float-wa 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
  color: var(--white);
}

@keyframes float-wa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================================
   AOS-LIKE ANIMATIONS (CSS)
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-left"] { transform: translateX(-30px); }
[data-animate="fade-left"].animated { transform: translateX(0); }

[data-animate="fade-right"] { transform: translateX(30px); }
[data-animate="fade-right"].animated { transform: translateX(0); }

[data-animate="zoom-in"] { transform: scale(0.9); }
[data-animate="zoom-in"].animated { transform: scale(1); }

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .hero-stats { padding: 20px 24px; }
  .hero-stat .num { font-size: 1.6rem; }
}

@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-stat { flex: 1 1 40%; }
  .hero-stat:not(:last-child)::after { display: none; }
  .about-badge { left: 0; }
  .process-connector { display: none; }
  .navbar-collapse {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 12px;
    box-shadow: var(--shadow-md);
  }
  .nav-link { color: var(--dark) !important; }
  .contact-form-wrap { padding: 36px 28px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 50px 0; }
  .hero-content { padding: 120px 0 60px; }
  .hero-stats { display: none; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .about-image-wrap img { height: 320px; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-info-card { padding: 32px 24px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .footer-top { padding: 50px 0 30px; }
  .stat-num { font-size: 2rem;}
  .service-detail-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;}
    .preloader-logo { height: 40px !important; animation: pulse-logo 1.2s ease infinite; }
    .navbar-brand img {
    height: 44px;
  
}
    

}


@media (max-width: 575px) {
  .btn-primary-lg, .btn-outline-lg { padding: 12px 22px; font-size: 0.88rem; }
  .hero-btns { gap: 12px; }
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease;
}

.preloader-logo { height: 60px; animation: pulse-logo 1.2s ease infinite; }

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.preloader-bar {
  width: 200px; height: 3px;
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: var(--gradient-green);
  border-radius: 10px;
  animation: fill-bar 1.5s ease forwards;
}

@keyframes fill-bar {
  from { width: 0; }
  to { width: 100%; }
}

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  width: 44px; height: 44px;
  background: var(--gradient-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

#backToTop.show {
  opacity: 1;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--gradient-green);
  transform: translateY(-2px);
}
