@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --green: #2ecc71;
  --green-dark: #27ae60;
  --green-light: #A9D9BA;
  --dark-blue: #023661;
  --dark-blue-deep: #0a1628;
  --navy: #061564;
  --orange: #ff8400;
  --orange-light: #ffa033;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --gray: #8892a4;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --glass: rgba(255, 255, 255, 0.08);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes blob {

  0%,
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes borderGlow {

  0%,
  100% {
    box-shadow: 0 0 5px var(--green), 0 0 10px var(--green);
  }

  50% {
    box-shadow: 0 0 20px var(--orange), 0 0 30px var(--orange);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 4px solid var(--glass);
  border-top-color: var(--green);
  border-right-color: var(--orange);
  border-radius: 50%;
  animation: rotate360 1s linear infinite;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  animation: slideDown 0.6s ease;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar a {
  color: var(--green-light);
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--orange);
}

.top-bar-left {
  display: flex;
  gap: 25px;
  align-items: center;
}

.top-bar-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--glass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 13px;
}

.top-social a:hover {
  background: var(--green);
  transform: translateY(-3px);
}

.flags {
  display: flex;
  gap: 6px;
}

.flags img {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  transition: var(--transition);
}

.flags img:hover {
  transform: scale(1.3);
}

/* ===== HEADER / NAV ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--dark-blue);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(255, 132, 0, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 132, 0, 0.4) !important;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--dark-blue);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
}

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--green-light);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  padding: 0 50px;
  color: var(--dark-blue);
  font-weight: 500;
  font-size: 13px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 650px;
  overflow: hidden;
  background: var(--dark-blue-deep);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark-blue-deep) 0%, var(--dark-blue) 50%, #0d3b66 100%);
  z-index: -1;
}

.hero-bg-overlay::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");
}

.hero-slide .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-slide.active .hero-content {
  animation: fadeInLeft 1s ease 0.3s both;
}

.hero-slide.active .hero-right {
  animation: fadeInRight 1s ease 0.5s both;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 10;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--green);
  transform: scale(1.3);
}

.slider-nav button {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-nav button:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* Hero Break Design */
.hero-break {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-break svg {
  width: 100%;
  height: 100px;
}

@media(max-width:1024px) {
  .hero-slide .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 50px;
  }

  .hero-right {
    display: none;
  }

  .hero-track-form {
    margin: 0 auto 20px;
  }

  .hero-btns {
    justify-content: center;
  }

  .slider-nav {
    bottom: 40px;
  }

  .hero-break svg {
    height: 60px;
  }
}

.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(255, 132, 0, 0.1));
  animation: blob 8s ease-in-out infinite;
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(255, 132, 0, 0.1), rgba(46, 204, 113, 0.08));
  animation: blob 10s ease-in-out infinite reverse;
  bottom: -50px;
  left: -80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInLeft 1s ease 0.3s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--orange);
}

.hero h1 .green {
  color: var(--green);
}

.hero-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Hero Tracking Form */
.hero-track-form {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  max-width: 480px;
}

.hero-track-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 15px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  outline: none;
}

.hero-track-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-track-form input:focus {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.12);
}

.hero-track-form button {
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}

.hero-track-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 132, 0, 0.3);
}

.btn-hero-secondary {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  border-color: var(--green);
  background: rgba(46, 204, 113, 0.1);
}

.hero-right {
  animation: fadeInRight 1s ease 0.5s both;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
}

.hero-img-main {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

.hero-float-card.card-1 {
  bottom: 30px;
  left: -40px;
  animation-delay: 0.5s;
}

.hero-float-card.card-2 {
  top: 30px;
  right: -30px;
  animation-delay: 1s;
}

.hero-float-card .card-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.hero-float-card .card-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-blue);
}

.hero-float-card .card-label {
  font-size: 12px;
  color: var(--gray);
}

/* ===== INFO STRIP ===== */
.info-strip {
  background: var(--white);
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.info-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px;
  border-right: 1px solid #e8ecf0;
  transition: var(--transition);
  background: var(--white);
  border-radius: 0;
}

.info-card:first-child {
  border-radius: 16px 0 0 16px;
}

.info-card:last-child {
  border-radius: 0 16px 16px 0;
  border-right: none;
}

.info-strip .container {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.info-card:hover {
  background: var(--green-light);
}

.info-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}

.info-card p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 2px;
}

.info-card strong {
  font-size: 15px;
  color: var(--dark-blue);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.06) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-1 {
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.about-img-2 {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: 20px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
  z-index: 3;
}

.about-exp-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  z-index: 4;
  animation: pulse 3s infinite;
}

.about-exp-badge .num {
  font-size: 36px;
  font-weight: 900;
  display: block;
}

.about-exp-badge .lab {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-content .section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(46, 204, 113, 0.1);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 38px;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--orange);
}

.about-content>p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 15px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}

.mv-card {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e8ecf0;
  background: var(--white);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.mv-card h4 {
  color: var(--dark-blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mv-card h4 span {
  font-size: 20px;
}

.mv-card p {
  font-size: 13px;
  color: var(--gray);
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(2, 54, 97, 0.3);
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(46, 204, 113, 0.1);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 40px;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.section-header h2 span {
  color: var(--orange);
}

.section-header p {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.service-card .s-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(255, 132, 0, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition);
}

.service-card:hover .s-icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  transform: rotateY(180deg);
}

.service-card:hover .s-icon span {
  filter: brightness(0) invert(1);
}

.service-card h4 {
  font-size: 16px;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--gray);
}

/* ===== EXCELLENCE SECTION ===== */
.excellence {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-blue-deep), var(--dark-blue));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.excellence::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
}

.excellence .container {
  position: relative;
  z-index: 2;
}

.excellence .section-header h2 {
  color: var(--white);
}

.excellence .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.excellence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.exc-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.exc-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--green);
}

.exc-card .exc-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.exc-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.exc-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== STATS ===== */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item .stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
}

.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ===== QUOTE FORM ===== */
.quote-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7f8fc, var(--off-white));
  position: relative;
}

.quote-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quote-info h2 {
  font-size: 38px;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.quote-info h2 span {
  color: var(--orange);
}

.quote-info>p {
  color: var(--gray);
  margin-bottom: 30px;
}

.quote-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qf-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qf-item .qf-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.qf-item span {
  font-size: 15px;
  color: var(--dark-blue);
  font-weight: 500;
}

.quote-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.quote-form-card h3 {
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8ecf0;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
  background: var(--white);
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-quote {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 132, 0, 0.3);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-blue-deep) 0%, var(--dark-blue) 100%);
  color: var(--white);
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: marqueeScroll 40s linear infinite;
}

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.testimonial-card .stars {
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-card .quote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.testimonial-card .author-info .name {
  font-weight: 600;
  font-size: 14px;
}

.testimonial-card .author-info .location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== CITIES ===== */
.cities {
  padding: 100px 0;
  background: var(--white);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.city-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: var(--transition);
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.city-card .city-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.city-card:hover .city-bg {
  transform: scale(1.1);
}

.city-card .city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.city-card h4 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}

.city-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.city-card .city-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
}

.city-card:hover .city-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BLOG ===== */
.blog {
  padding: 100px 0;
  background: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card .blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-card .blog-body {
  padding: 24px;
}

.blog-card .blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(46, 204, 113, 0.1);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card h4 {
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 14px;
  color: var(--gray);
}

/* ===== PARTNERS ===== */
.partners {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid #e8ecf0;
}

.partners h3 {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.partners-track {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.5;
}

.partners-track span {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-blue);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--dark-blue-deep), #060d1a);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 16px 0;
  line-height: 1.7;
}

.footer-brand .footer-logo {
  height: 40px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--green);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--green);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  border: none;
  font-size: 18px;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-right {
    display: none;
  }

  .hero-track-form {
    margin: 0 auto 20px;
  }

  .hero-btns {
    justify-content: center;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .about-images {
    margin-bottom: 40px;
  }

  .excellence-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .quote-section .container {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  .top-bar {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu a {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    padding: 12px;
  }

  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-text {
    font-size: 15px;
  }

  .info-strip .container {
    grid-template-columns: 1fr;
  }

  .info-card {
    border-right: none;
    border-bottom: 1px solid #e8ecf0;
  }

  .info-card:last-child {
    border-bottom: none;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .excellence-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    width: 300px;
  }

  .quote-info h2 {
    font-size: 28px;
  }
}