:root {
  --primary: #4FB8C8;
  --secondary: #A7D3E0;
  --accent: #B9E8EB;
  --bg-light: #F7FFFF;
  --dark: #2C3E50;
  --white: #ffffff;
  --water: #aae5f2;
  --water1: #afd3ea;
  --darkblue:#62C1E5;
}


/* =====================
   RESET & GLOBAL
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg-light);
  color: var(--dark);
}

h1,
h2,
h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);

}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;

}

/* section {
  padding: 80px 0
} */

/* ============================
   HEADER – RESPONSIVE
============================ */

.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(79,184,200,0.25);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

/* LOGO */
.logo img {
  height: 48px;
}

/* DESKTOP NAV */
.main-nav {
  display: flex;
  gap: 28px;
}

/* ============================
   DESKTOP NAV HOVER EFFECT
============================ */

.main-nav a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  color:var(--dark);;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* UNDERLINE */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--darkblue);
  border-radius: 2px;
  transition: width 0.35s ease;
}

/* HOVER */
.main-nav a:hover {
  color: var(--darkblue);
}

.main-nav a:hover::after {
  width: 100%;
}

/* CTA */
/* HEADER CTA BUTTON */
.header-cta a {
  position: relative;
  padding: 12px 26px;
  background: var(--darkblue);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.35s ease;

  box-shadow:
    0 12px 30px rgba(79,184,200,0.35),
  0 6px 14px rgba(79,184,200,0.25);
}

/* SHINE EFFECT */
.header-cta a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.45),
      transparent);
  transition: all 0.5s ease;
}

/* HOVER EFFECT */
.header-cta a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(255, 106, 45, 0.45),
    0 8px 20px rgba(255, 106, 45, 0.35);
}

/* SHINE MOVE ON HOVER */
.header-cta a:hover::after {
  left: 120%;
}


/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #0F2A44;
  border-radius: 3px;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 20px 40px rgba(255, 106, 45, 0.2);
  padding: 20px;
}

/* ============================
   MOBILE MENU EFFECTS
============================ */

.mobile-menu a {
  position: relative;
  padding: 14px 0;
  text-decoration: none;
  font-weight: 600;
  color: #0F2A44;
  transition: color 0.25s ease, transform 0.2s ease;
}

/* TAP FEEDBACK */
.mobile-menu a:active {
  color:var(--darkblue);
  transform: scale(0.97);
}

/* OPTIONAL: subtle divider */
.mobile-menu a:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
}

.mobile-cta {
  margin-top: 10px;
  text-align: center;
  background:var(--darkblue);
  color: #fff !important;
  padding: 14px;
  border-radius: 50px;
}

/* CLOSE ICON */
.menu-toggle .close-icon {
  display: none;
  font-size: 26px;
  font-weight: 700;
  color: #0F2A44;
  line-height: 1;
}

/* WHEN MENU IS OPEN */
.menu-toggle.active span:not(.close-icon) {
  display: none;
}

.menu-toggle.active .close-icon {
  display: block;
}
/* ============================
   MOBILE VIEW
============================ */

@media (max-width: 768px) {

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
    animation: slideDown 0.35s ease;
  }

  .logo img {
    height: 42px;
  }
}

/* SLIDE ANIMATION */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* HERO */
.hero {
  position: relative;
  background: #62C1E5;
  padding: 80px 0 140px; /* extra bottom space */
  overflow: hidden;
  border-bottom: 14px solid #4fb8c8;
}

/* FLEX */
.hero-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* TEXT */
.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 40px;
  color: var(--dark);
}

.hero p {
  color: #2c3e50;
  margin-top: 10px;
}

/* BUTTONS */
.hero-buttons a {
  display: inline-block;
  margin: 16px 16px 0 0;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: var(--dark);
  color: var(--bg-light);
  animation: pulse 2.5s infinite;
}


.btn-outline {
  border: 2px solid var(--dark);
  color:var(--dark);
}

/* DOCTOR IMAGE */
.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 320px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* TOOTH IMAGE */
.hero-tooth {
  position: absolute;
  right: 7%;          /* not full corner */
  bottom: 12px;       /* exactly like screenshot */
  max-width: 230px;
  z-index: 1;
  pointer-events: none;
}

.hero-tooth img {
  width: 100%;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.25));
  animation: toothFloat 6s ease-in-out infinite;
}

/* FLOAT */
@keyframes toothFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-tooth {
   
    max-width: 160px;
   
  }

  .hero h1 {
    font-size: 30px;
  }
}



/* FLOAT ANIMATION */
@keyframes toothFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
@keyframes floatDoctor {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }

  100% {
    transform: translateY(0)
  }
}

/* =====================
   INTRO SECTION
===================== */
.doctor-intro {
  background: #fff;
  padding-top: 20px;
}

.intro-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.intro-text {
  flex: 1
}

.intro-text h2 {
  font-size: 36px;
  margin-bottom: 20px
}

.intro-text span {
  color:var(--darkblue)
}

.intro-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #555;
}

.intro-btn {
  display: inline-block;
  padding: 14px 32px;
  background:  var(--darkblue);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}

.intro-experience {
  flex: 1;
  display: flex;
  justify-content: center;
}

.experience-circle {
  width: 280px;
  height: 280px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: floatDoctor 4s ease-in-out infinite;
}

.experience-circle h3 {
  font-size: 72px;
  color: #0F2A44;
}

.experience-circle p {
  font-weight: 600;
  color: #555;
  text-align: center;
}

/* =========================
   IMPACT STATS – PRO LEVEL
========================= */

.impact-stats {
  position: relative;
  padding: 90px 0;
 background: linear-gradient(
  135deg,
  var(--darkblue),
  var(--secondary),
  var(--darkblue)
);
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* CARD */
.impact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.impact-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* ICON */
.impact-icon {
  font-size: 34px;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
}

/* NUMBER */
.impact-card h3 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  position: relative;
}

.impact-card h3::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(18px);
  opacity: 0.7;
  z-index: -1;
}

/* LABEL */
.impact-card p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .impact-stats {
    padding: 70px 0;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .impact-card h3 {
    font-size: 36px;
  }

  .impact-icon {
    font-size: 30px;
  }
}

/* =========================
   STATS HEADING
========================= */

.stats-heading {
  background: #fff;
  text-align: center;
  padding: 80px 0 30px;
}

.stats-heading h2 {
  font-size: 36px;
  color: #0F2A44;
  margin-bottom: 10px;
}

.stats-heading p {
  font-size: 16px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats-heading {
    padding: 60px 20px 20px;
  }

  .stats-heading h2 {
    font-size: 28px;
  }

  .stats-heading p {
    font-size: 15px;
  }
}


/* ===============================
   PREMIUM SERVICES (CLEAN)
================================ */

.premium-services {
  background: linear-gradient(
    180deg,
    var(--white),
    var(--bg-light)
  );
  padding: 100px 0;
  text-align: center;
}

.services-sub {
  color: #666;
  margin-bottom: 60px;
  font-size: 16px;
}

/* GRID */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.premium-card {
  background: var(--white);
  border-radius: 26px;
  padding: 50px 28px 42px;
  text-align: center;
  position: relative;

  box-shadow:
    0 20px 45px rgba(79,184,200,0.25),
    0 10px 20px rgba(79,184,200,0.15);

  animation: floatPremium 8s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* HOVER */
.premium-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px rgba(79,184,200,0.35),
    0 15px 30px rgba(79,184,200,0.25);
}

/* ICON */
.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--darkblue),
    var(--secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  box-shadow:
    0 14px 30px rgba(79,184,200,0.45),
    0 6px 14px rgba(79,184,200,0.35);

  animation: iconFloat 5s ease-in-out infinite;
}

.service-icon i {
  font-size: 30px;
  color: #fff;
}

/* RING EFFECT */
.service-icon::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(79,184,200,0.45);
  opacity: 0;
  animation: ringPulse 3.5s ease-in-out infinite;
}

/* TEXT */
.premium-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}

.premium-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ANIMATIONS */
@keyframes floatPremium {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes iconFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes ringPulse {
  0% { opacity: 0; transform: scale(0.85); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.15); }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .premium-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================
   ACHIEVEMENTS & AWARDS (FINAL)
============================ */

.awards-section {
  background: var(--bg-light);
  padding: 90px 0;
  text-align: center;
}

.awards-sub {
  color: #666;
  margin-bottom: 50px;
}

/* GRID */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 34px;
}

/* CARD */
.award-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  position: relative;

  /* THEME SHADOW */
  box-shadow:
    0 18px 40px rgba(79,184,200, 0.25),
    0 8px 20px rgba(79,184,200, 0.15);

  animation: floatTilt 8s ease-in-out infinite;
}

.award-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 2px solid rgba(255, 106, 45, 0.25);
  pointer-events: none;
}


/* STAGGERED VIBRATION */
.award-card:nth-child(2) {
  animation-delay: 1.5s;
}

.award-card:nth-child(3) {
  animation-delay: 3s;
}

/* PORTRAIT IMAGE – KEEP SIZE */
.award-image {
  width: 100%;
  aspect-ratio: 7 / 10.3;
  /* 700x1030 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  position: relative;
}

/* IMAGE */
.award-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
}


/* CONTENT */
.award-content {
  padding: 28px;
  text-align: left;
}

.award-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0F2A44;
}

.award-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* SOFT GLOW BEHIND IMAGE */
.award-image::after {
  content: "";
  position: absolute;
  inset: 12%;
  background: radial-gradient(circle,
      rgba(255, 106, 45, 0.25),
      transparent 70%);
  filter: blur(24px);
  opacity: 0;
  animation: glowPulse 6s ease-in-out infinite;
}

/* CONTENT */
.award-content {
  padding: 28px;
}

/* ============================
   VIBRATION EFFECT (SUBTLE)
============================ */

@keyframes floatTilt {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-6px) rotate(0.3deg);
  }

  50% {
    transform: translateY(0) rotate(0deg);
  }

  75% {
    transform: translateY(-4px) rotate(-0.3deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

/* ============================
   MOBILE – KEEP IMAGE SIZE
============================ */

@media (max-width: 768px) {
  .awards-section {
    padding: 70px 0;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .award-content {
    padding: 26px;
  }

  /* ❗ NO IMAGE SIZE CHANGE */
}


/* ===============================
   SMILE GALLERY + FORM
================================ */

.gallery-form-section {
  background: var(--bg-light);
  /* padding: 10px 0; */
}

.gallery-form-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gallery-single {
  width: 100%;
  max-width: 460px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;

  box-shadow:
    0 30px 60px rgba(79,184,200,0.35),
    0 14px 30px rgba(79,184,200,0.25);
}

.gallery-single img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* SUBTLE HOVER (DESKTOP ONLY) */
@media (hover: hover) {
  .gallery-single:hover img {
    transform: scale(1.05);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-single {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 22px;
  }
}
/* ===============================
   PREMIUM APPOINTMENT FORM
================================ */

.appointment-card-premium {
  background: var(--white);
  padding: 46px 42px;
  border-radius: 30px;
  max-width: 520px;

  box-shadow:
    0 35px 70px rgba(79,184,200,0.35),
    0 15px 30px rgba(79,184,200,0.25);
}

.appointment-card-premium h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* INPUT GROUP */
.input-group {
  position: relative;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 16px 14px;
  border-radius: 12px;
  border: 1.5px solid #d7e6ec;
  background: transparent;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

/* LABEL */
.input-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  background: var(--white);
  padding: 0 6px;
  font-size: 14px;
  color: #777;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* FLOAT LABEL */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group select:focus + label,
.input-group select:valid + label {
  top: -8px;
  font-size: 12px;
  color: var(--darkblue);
}

/* FOCUS */
.input-group input:focus,
.input-group select:focus {
  border-color: var(--darkblue);
  box-shadow: 0 0 0 4px rgba(79,184,200,0.15);
}

/* BUTTON */
.form-cta {
  margin-top: 34px;
  width: 100%;
  padding: 18px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--darkblue),
    var(--secondary)
  );
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s ease;
}

.form-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(79,184,200,0.45);
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 576px) {
  .appointment-card-premium {
    padding: 36px 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .gallery-form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    justify-content: center;
  }
}

/* ===============================
   CLINIC LOCATOR – CARD STYLE
================================ */

.clinic-locator {
  background: linear-gradient(135deg, #F7FFFF, #E0FFFF);
  padding: 100px 0;
}

.locator-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT CARD */
.locator-content {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 42px;

  box-shadow:
    0 25px 55px rgba(79,184,200,0.25),
    0 10px 25px rgba(79,184,200,0.15);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.locator-content h2 {
  font-size: 28px;
  margin-bottom: 18px;
  color: #2C3E50;
}

.locator-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #4FB8C8;
}

.clinic-address,
.clinic-hours,
.clinic-phone {
  font-size: 15px;
  color: #2C3E50;
  margin-bottom: 10px;
}

.clinic-phone a {
  color: #4FB8C8;
  font-weight: 600;
  text-decoration: none;
}

/* CTA BUTTON */
.direction-btn {
  margin-top: 22px;
  align-self: flex-start;

  padding: 14px 32px;
  border-radius: 50px;

  background: linear-gradient(135deg, #4FB8C8, #A7D3E0);
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 14px 35px rgba(79,184,200,0.45);
  transition: all 0.3s ease;
}

.direction-btn:hover {
  transform: translateY(-3px);
}

/* RIGHT CARD (MAP) */
.locator-map {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 14px;

  box-shadow:
    0 25px 55px rgba(79,184,200,0.25),
    0 10px 25px rgba(79,184,200,0.15);
}

.locator-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: 20px;
  border: none;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {
  .locator-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .locator-content {
    text-align: center;
  }

  .direction-btn {
    align-self: center;
  }

  .locator-map iframe {
    min-height: 280px;
  }
}


/* ============================
   FOOTER
============================ */

.site-footer {
  background: var(--darkblue);
  color: var(--dark);
  padding: 60px 0 0;
}

/* FLEX */
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand img {
  height: 48px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
}

/* SOCIAL */
.footer-social h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F2A44;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.social-icons a:hover {
  background: var(--secondary);
  transform: translateY(-4px);
 box-shadow: 0 10px 25px rgba(163, 243, 255, 0.45);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  padding: 16px;
  font-size: 13px;
  color:var(--dark);
}

/* ============================
   MOBILE
============================ */

@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    margin-top: 20px;
  }
}


/* =====================
   MOBILE RESPONSIVE
===================== */
@media(max-width:768px) {
  section {
    padding: 60px 0
  }

  .hero-flex {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px
  }

  .hero-buttons a {
    display: block;
    margin: 12px auto;
    max-width: 280px;
  }

  .hero-image img {
    max-width: 260px
  }

  .intro-flex {
    flex-direction: column;
    text-align: center;
  }

  .intro-text h2 {
    font-size: 28px
  }

  .experience-circle {
    width: 200px;
    height: 200px;
  }

  .experience-circle h3 {
    font-size: 52px
  }

  .exp-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  form {
    padding: 30px 22px
  }
}


/* ============================
   TESTIMONIAL SLIDER
============================ */

/* ============================
   REVIEW SLIDER
============================ */

.review-slider-section {
  background: var(--bg-light);
  padding: 100px 0;
}

.review-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 6px;
}

.review-sub {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

/* SLIDER */
.review-slider {
  position: relative;
  max-width: 820px;
  margin: auto;
}

/* CARD */
.review-card {
  display: none;
  background: var(--white);
  border-radius: 26px;
  padding: 40px 42px;

  box-shadow:
    0 30px 60px rgba(79,184,200,0.35),
    0 14px 30px rgba(79,184,200,0.25);
}

.review-card.active {
  display: block;
  animation: slideFade 0.6s ease;
}

/* HEADER */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-header h4 {
  font-size: 18px;
  color: var(--dark);
}

.review-time {
  font-size: 13px;
  color: #777;
}

/* STARS */
.review-stars {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 16px;
}

/* TEXT */
.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
}

/* KEYWORD HIGHLIGHT */
.review-text span {
  color: var(--dark);
  font-weight: 700;
  position: relative;
}

.review-text span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 6px;
  background: var(--accent);
  border-radius: 4px;
  z-index: -1;
}

/* NAV BUTTONS */
.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--darkblue);
  color: #fff;
  font-size: 22px;
  cursor: pointer;

  box-shadow: 0 12px 30px rgba(79,184,200,0.45);
}

.review-nav.prev { left: -70px; }
.review-nav.next { right: -70px; }

/* ANIMATION */
@keyframes slideFade {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
  .review-nav {
    display: none;
  }

  .review-card {
    padding: 32px 26px;
  }

  .review-title {
    font-size: 28px;
  }
}
