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

:root {
  --navy:   #0a1f4b;
  --navy2:  #122360;
  --red:    #3f969d;
  --red2:   #c0151f;
  --white:  #ffffff;
  --light:  #f4f7ff;
  --dark:   #111111;
  --shadow: 0 8px 32px rgba(10,31,75,0.13);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; }

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

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-hero {
  background: var(--navy);
  color: var(--white);
  margin-top: 28px;
}
.btn-hero:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,31,75,0.4); }

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(227,28,28,0.35); }

.btn-submit {
  background: var(--red);
  color: var(--white);
  padding: 15px 40px;
  width: 100%;
  font-size: 1rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.5s;
}
.btn-submit:hover::after { transform: scale(2); }
.btn-submit:hover { background: var(--red2); box-shadow: 0 0 0 6px rgba(227,28,28,0.18); }

/* ---- SECTION HEADERS ---- */
.section-tag {
  display: inline-block;
  background: rgba(141, 187, 179, 0.1);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: #556;
  max-width: 560px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 56px; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
  padding:10px 0;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,31,75,0.1);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
}
.logo-icon {
  width: 72px; height: 72px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
}
.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.4s;
}
.navbar.scrolled .logo-text { color: var(--navy); }
.logo-accent { display: block; color: var(--red); font-size: 1.2rem; text-align: right; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.navbar.scrolled .nav-link { color: var(--navy); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--red); }
.navbar.scrolled .nav-link:hover { color: var(--red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  overflow: hidden;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.slide.active .slide-bg { animation-play-state: running; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,75,0.82) 0%, rgba(10,31,75,0.45) 100%);
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: var(--white);
  width: 90%;
  max-width: 760px;
  z-index: 3;
}
.slide.active .slide-content { animation: fadeUp 0.9s 0.3s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 40px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.slide-tag {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(166, 229, 245, 0.75);
  margin-bottom: 14px;
}
.slide-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.slide-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--red); border-color: var(--red); }
.slider-arrow.prev, .testi-prev { left: 24px; }
.slider-arrow.next, .testi-next { right: 24px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--red); transform: scale(1.3); }

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.about-bg-shape {
  position: absolute;
  right: -200px; top: -100px;
  width: 600px; height: 600px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 480px;
}
.img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 2;
}
.img-main img { width: 100%; height: 340px; object-fit: cover; }
.img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 3;
  border: 2px solid #3f969d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  
}
.img-secondary img { width: 100%; height: 250px; object-fit: cover;  }
.img-secondary:hover {
  transform: rotate(360deg);
}
/* .img-secondary-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(236, 237, 238, 0.35) 0%,#f9fafa 100%);
} */

.img-accent-shape {
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 5px solid var(--red);
  border-radius: 8px;
  z-index: 1;
  opacity: 0.6;
}

.about-desc {
  color: #445;
  line-height: 1.9;
  font-size: 0.98rem;
  margin-bottom: 24px;
}
.about-highlights { list-style: none; margin-bottom: 32px; }
.about-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: #334;
  margin-bottom: 10px;
  font-weight: 500;
}
.highlight-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.stats-row {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
}
.stat-plus { font-size: 1.6rem; font-weight: 900; color: var(--red); }
.stat-label { display: block; font-size: 0.78rem; color: #778; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

/* ============================================================
   SERVICES – FLIP CARDS
============================================================ */
.services {
  padding: 110px 0;
  background: var(--light);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.flip-card {
  perspective: 1200px;
  height: 360px;
  cursor: pointer;
  animation-delay: var(--delay);
}
.flip-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(.4,0,.2,1);
}
.flip-card:hover .flip-inner { transform: rotateX(180deg); }

.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
}
.flip-front {
  background-size: cover;
  background-position: center;
}
.flip-front-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(217, 219, 224, 0.35) 0%, rgba(143, 157, 187, 0.85) 100%);
}
.flip-front-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 30px;
  color: var(--navy);
  z-index: 2;
}
.service-icon {
  font-size: 6.4rem;
  margin-bottom: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flip-front-content h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 6px; display: flex; justify-content: center; align-items: center; text-align: center;}
.flip-front-content p { font-size: 0.88rem; opacity: 0.85; display: flex; justify-content: center; align-items: center; }


.flip-back {
  background: var(--navy2);
  transform: rotateX(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  box-shadow: 0 16px 48px rgba(10,31,75,0.15);
}
.flip-back h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: wheat;
  margin-bottom: 18px;
}
.flip-back p { font-size: 0.93rem; color:white; line-height: 1.85; margin-bottom: 24px; }
.read-more {
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.read-more:hover { color: whitesmoke; }

/* ============================================================
   PARTNERS MARQUEE
============================================================ */
.partners {
  padding: 80px 0 80px;
  background: var(--white);
  overflow: hidden;
}
.marquee-wrapper { overflow: hidden; width: 100%; position: relative; }
.marquee-wrapper::before, .marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


.marquee-item {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  filter: grayscale(0);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f7f7f7;
  border-color: var(--red);
}

.marquee-item:hover {
  filter: grayscale(0);
  border-color: var(--red);
  box-shadow: var(--red);
  transform: translateY(-3px);
}

.logo-brand {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}
/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  padding: 110px 0;
  background: rgb(29, 29, 77);
  position: relative;
  overflow: hidden;
}
.testi-bg-shape {
  position: absolute;
  bottom: -150px; right: -150px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.testimonials .section-tag { background: rgba(255, 254, 254, 0.2); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.6); }

.testi-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
.testi-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.testi-card {
  min-width: 100%;
  padding: 0 80px;
  box-sizing: border-box;
  text-align: center;
  animation: cardFadeScale 0.5s both;
}
@keyframes cardFadeScale {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.quote-icon {
  font-size: 6rem;
  line-height: 0.7;
  color: var(--red);
  font-family: Georgia, serif;
  margin-bottom: 20px;
}
.stars { color: var(--red); font-size: 1.3rem; margin-bottom: 20px; letter-spacing: 3px; }
.testi-text {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
  margin-bottom: 32px;
  font-style: italic;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testi-author img {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--red);
}
.testi-author strong { display: block; color: var(--white); font-weight: 700; }
.testi-author span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.testi-prev, .testi-next { top: 50%; transform: translateY(-70%); }
.testi-dots {
  bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.testi-dots .dot { background: rgba(255,255,255,0.35); }
.testi-dots .dot.active { background: var(--red); }

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: 110px 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.contact-bg-shape {
  position: absolute;
  top: -80px; left: -120px;
  width: 400px; height: 400px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  opacity: 0.06;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(10,31,75,0.07);
  margin-bottom: 16px;
  transition: var(--transition);
}
.info-card:hover { transform: translateX(6px); box-shadow: 0 8px 30px rgba(10,31,75,0.12); }
.info-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-card h4 { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.info-card p { font-size: 0.88rem; color: #556; line-height: 1.6; }

.social-mini { display: flex; gap: 8px; margin-top: 6px; }
.social-mini a {
  width: 32px; height: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-mini a:hover { background: var(--red); }

/* Form */
.contact-form form { background: var(--white); border-radius: 14px; padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { position: relative; margin-bottom: 20px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #dde4f0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  color: #222;
  background: #f8faff;
  transition: border-color 0.3s;
  outline: none;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--navy); background: var(--white); }
.form-group input.error, .form-group textarea.error { border-color: var(--red); }

.err {
  display: none;
  color: var(--red);
  font-size: 0.78rem;
  margin-top: 4px;
  padding-left: 4px;
}
.err.show { display: block; }

.form-success {
  display: none;
  color: #1a7a4a;
  background: #eafaf2;
  border: 1px solid #b2e8d0;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 14px;
}
.form-success.show { display: block; }

/* ============================================================
   WORLD MAP SECTION
============================================================ */
.world-map-section {
  padding: 110px 0;
  background: white;
  position: relative;
  overflow: hidden;
}


.map-container { width: 100%; }
/* The wrapper specifically for the image */
.map-wrapper {
    display: flex;
    justify-content: center;  /* Centers the map horizontally */
    align-items: center;      /* Centers the map vertically if needed */
    max-width: 1200px;        /* Prevents map from becoming too huge */
    margin: 0 auto;           /* Centers the container itself */
}

.world-map {
    width: 100%; 
    height: 500px; 
    display: block;
    mix-blend-mode: multiply;
    filter: contrast(1.2);
  
}



/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #111827;
  color: rgba(255,255,255,0.75);
  padding-top: 80px;
  position: relative;
}
.footer-top-border {
  height: 3px;
  background: #3f969d;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding: 60px 0 48px;
}
.footer-brand {}
.logo-footer .logo-text { color: var(--white); }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin: 18px 0 24px;
}
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--red2); transform: translateY(-3px); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--red);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col ul li a:hover { color: var(--red); padding-left: 6px; }

.footer-address li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-address li span { flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.4); }
.footer-bottom strong { color: rgba(255,255,255,0.6); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { height: 340px; }
  .img-main { width: 85%; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px 24px 32px;
    gap: 4px;
    box-shadow: 0 10px 30px rgba(10,31,75,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { color: var(--navy); padding: 10px 0; font-size: 0.95rem; }
  .nav-link::after { display: none; }

  .slide-title { font-size: 2rem; }
  .slider-arrow { width: 38px; height: 38px; font-size: 0.9rem; }
  .testi-card { padding: 0 50px; }
  .testi-prev { left: 0; }
  .testi-next { right: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 20px; }
  .contact-form form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .testi-card { padding: 0 20px; }
  .map-stats { grid-template-columns: 1fr 1fr; }
  .about-images { height: 280px; }
}



/* Floating WhatsApp */
  /* Container for the buttons */
.floating-contact {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px; 
  z-index: 9999; 
}

/* Base style for buttons */
.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Individual Colors */
.whatsapp {
  background-color: #25D366;
}

/* Hover Effect */
.floating-btn:hover {
  transform: scale(1.1);
}

/* Mobile responsive (optional: make them smaller on phones) */
@media (max-width: 480px) {
  .floating-contact {
    bottom: 30px; 
    right: 15px;  
  }
  
  .floating-btn {
    width: 50px; 
    height: 50px;
    font-size: 22px;
  }
}

.red-heart {
  color: rgb(187, 21, 21);
  font-size: 14px; 
}

.created-by .red { font-weight: 700; font-size: 7px; color: #e8f5e9; }
.created-by .red:hover {
  color: #c42d19;
  border-bottom: 1px solid #c42d19;
  font-size: 14px;
}