/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body * {
  outline: 1px solid transparent;
}


body {
    line-height: 1.6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* ================= TOP HEADER ================= */
.top-header {
  background: #00b9d5;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.top-item i {
  color: #0a6db6;
}

/* ================= MAIN HEADER ================= */
.main-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

/* LOGO */
.logo img {
  height: 90px;
}

/* MENU */
.menu {
  display: flex;
  gap: 22px;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 15px;
}

.menu a:hover {
  color: #0a6db6;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.call-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-box i {
  font-size: 28px;
  color: #0a6db6;
}

.call-box small {
  font-size: 12px;
  color: #555;
}

.call-box strong {
  font-size: 16px;
}

.badge {
  height: 55px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .menu {
    display: none;
  }

  .top-flex {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #114B5F;
    color: #fff;
}

.nav-links li {
    list-style: none;
    display: inline;
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

/* HERO */
.hero {
    height: 60vh;
    background: url('../images/dental-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.8rem;
}

.btn {
    background: #028090;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    display: inline-block;
}

/* ABOUT */
.about {
    padding: 40px 20px;
    background: #f7f7f7;
    text-align: center;
}

/* SERVICES */
.services {
    padding: 40px 20px;
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 20px;
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* TEAM */
.team {
    padding: 40px 20px;
    text-align: center;
}

/* CONTACT */
.contact {
    padding: 40px 20px;
    background: #f7f7f7;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
}

/* FOOTER */
footer {
    background: #114B5F;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
}

@media (max-width: 992px) {

  .header-flex {
    position: relative;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    z-index: 9999;
  }

  .menu a {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .call-box,
  .badge {
    display: none;
  }
}
@media (max-width: 992px) {

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0a6db6;      /* 🔵 Mobile menu background */
    flex-direction: column;
    display: none;
    z-index: 9999;
    max-height: 320px;        /* 🔽 Reduced height */
    overflow-y: auto;
  }

  .menu a {
    padding: 12px 18px;       /* 🔽 Reduced link height */
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #fff;              /* White text */
    font-size: 14px;
  }

  .menu a:hover {
    background: rgba(255,255,255,0.15);
  }

  .menu.active {
    display: flex;
  }

}
.dropdown {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
@media (min-width: 993px) {

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 230px;
    display: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 9999;
  }

  .dropdown-menu a {
    padding: 12px 16px;
    display: block;
    color: #000;
    border-bottom: 1px solid #eee;
  }

  .dropdown-menu a:hover {
    background: #0a6db6;
    color: #fff;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
@media (max-width: 992px) {

  .dropdown-menu {
    position: static;
    background: #0a6db6;
    display: none;
  }

  .dropdown-menu a {
    color: #fff;
    padding-left: 30px;
    font-size: 14px;
  }

  .dropdown-menu.active {
    display: block;
  }
}
/* ================= SLIDER ================= */
.hero-slider {
  width: 100%;
  height: calc(100vh - 140px); /* adjust if header height changes */
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10%;
  color: #fff;
}

/* Background Images */
.slide1 {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url("../images/slide1.png") center/cover no-repeat;
}

.slide2 {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url("../images/slide2.png") center/cover no-repeat;
}

.slide3 {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url("../images/slide3.png") center/cover no-repeat;
}

/* Text */
.slide-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.slider-btn {
  background: #0a6db6;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

/* Controls color */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet-active {
  background: #0a6db6;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .swiper-slide {
    padding: 20px;
    text-align: center;
    justify-content: center;
  }

  .slide-content h1 {
    font-size: 30px;
  }

  .slide-content p {
    font-size: 15px;
  }
}
.hero-slider {
  height: calc(100vh - 60px);
}
/* ================= TWO COLUMN SECTION ================= */
.about-section {
  padding: 70px 0;
  background: #fff;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* TEXT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #000;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0a6db6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.about-btn:hover {
  background: #084e87;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 28px;
  }
}
/* ================= JAIPUR DENTAL SECTION ================= */
.jaipur-dental-section {
  padding: 70px 0;
  background: #f7fbff; /* light premium blue */
}

.jaipur-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.jaipur-image {
  flex: 1;
}

.jaipur-image img {
  width: 100%;
  border-radius: 12px;
}

/* TEXT */
.jaipur-text {
  flex: 1;
}

.jaipur-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0a6db6;
}

.jaipur-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.jaipur-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: #0a6db6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.jaipur-btn:hover {
  background: #084e87;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .jaipur-flex {
    flex-direction: column;
    text-align: center;
  }

  .jaipur-text h2 {
    font-size: 28px;
  }
}
/* ================= SINGLE COLUMN DENTAL SECTION ================= */
.jaipur-dental-single {
  padding: 70px 0;
  background: #f7fbff;
  text-align: center;
}

.jaipur-dental-single h2 {
  font-size: 36px;
  color: #0a6db6;
  margin-bottom: 20px;
}

.jaipur-dental-single p {
  max-width: 900px;
  margin: 0 auto 15px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.jaipur-single-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 32px;
  background: #0a6db6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.jaipur-single-btn:hover {
  background: #084e87;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .jaipur-dental-single h2 {
    font-size: 28px;
  }
}
/* ================= TRUST STATS ================= */
.trust-stats {
  background: #0a6db6;
  padding: 50px 0;
  color: #fff;
}

.stats-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.stat-box {
  flex: 1;
}

.stat-box h3 {
  font-size: 42px;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 15px;
  opacity: 0.9;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .stats-flex {
    flex-direction: column;
    gap: 25px;
  }

  .stat-box h3 {
    font-size: 36px;
  }
}
/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 70px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 36px;
  color: #0a6db6;
  margin-bottom: 10px;
}

.section-title p {
  color: #555;
  font-size: 16px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #f7fbff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 22px;
  margin: 15px 0 10px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  padding: 0 20px;
}

.service-btn {
  display: inline-block;
  margin: 15px 0 25px;
  padding: 10px 26px;
  background: #0a6db6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.service-btn:hover {
  background: #084e87;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 200px;
  }
}
.services-wrapper {
  margin-top: 40px;
}

.service-card {
  background: #f7fbff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* IMAGE + ICON */
.service-img {
  position: relative;
}

.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a6db6;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.service-card h3 {
  margin-top: 35px;
  font-size: 20px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  padding: 0 20px;
}

.service-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 26px;
  background: #0a6db6;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}
.simple-testimonial {
  padding: 80px 0;
  background: #f8fbff;
  text-align: center;
}

.simple-testimonial h2 {
  font-size: 32px;
  color: #0a6db6;
  margin-bottom: 40px;
}

/* ===== SLIDER LAYOUT FIX ===== */

.slider {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
  gap: 25px;
}

/* Each slide = card container */
.slide {
  flex: 0 0 33.333%; /* 3 cards desktop */
}

/* Card */
.testimonial-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  height: 100%;
  text-align: center;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

/* Patient info */
.patient img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #0a6db6;
}

.patient strong {
  display: block;
  color: #0a6db6;
  font-size: 16px;
}

.stars {
  color: #f4b400;
  font-size: 14px;
  margin-top: 6px;
}

/* ===== RESPONSIVE ===== */

/* Tablet → 2 cards */
@media (max-width: 992px) {
  .slide {
    flex: 0 0 50%;
  }
}

/* Mobile → 1 card */
@media (max-width: 600px) {
  .slide {
    flex: 0 0 100%;
  }
}
/* ===== VIDEO TESTIMONIAL ===== */

.video-testimonial {
  padding: 90px 0;
  background: #ffffff;
}

.video-testimonial h2 {
  text-align: center;
  font-size: 34px;
  color: #0a6db6;
  margin-bottom: 45px;
}

.video-slides {
  display: flex;
  transition: transform 0.6s ease;
}

.video-slides .slide {
  flex: 0 0 33.333%;
  padding: 15px;
}

.video-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  padding: 15px;
  text-align: center;
}

.video-card video {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  object-fit: cover;
}

.video-card h4 {
  margin-top: 12px;
  font-size: 16px;
  color: #0a6db6;
}

/* Tablet */
@media (max-width: 992px) {
  .video-slides .slide {
    flex: 0 0 50%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .video-slides .slide {
    flex: 0 0 100%;
  }

  .video-card video {
    height: 200px;
  }
}
.services-section {
  padding: 80px 0;
  background: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 600;
}

.section-heading .underline {
  width: 80px;
  height: 3px;
  background: #f0a500;
  display: inline-block;
  margin-top: 10px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
}

/* Bottom curve accent */
.service-card::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 30px;
  background: #f0a500;
  border-radius: 0 0 20px 20px;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* Buttons */
.service-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.btn.enquiry {
  background: #18c618;
}

.btn.call {
  background: #5e5ce6;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer {
  background: linear-gradient(180deg, #0f0f0f, #1b1b1b);
  color: #aaa;
  padding: 70px 0 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Headings */
.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-logo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Text */
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #aaa;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f0a500;
  padding-left: 5px;
}

/* Contact */
.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 50px;
  background: #222;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
.packages-section {
  padding: 80px 0;
  background: #fff;
}

/* Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.package-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
}

/* Bottom accent */
.package-card::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 30px;
  background: #f0a500;
  border-radius: 0 0 20px 20px;
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-content {
  padding: 20px;
  text-align: center;
}

.package-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #555;
}

/* Buttons */
.package-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  flex: 1;
  padding: 12px 0;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.btn.enquiry {
  background: #18c618;
}

.btn.call {
  background: #5e5ce6;
}

/* Responsive */
@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px)
/* Social links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social {
  color: #aaa;
  font-size: 14px;
  transition: 0.3s;
}

.social:hover {
  color: #f0a500;
  padding-left: 5px;
}
.packages-section {
  padding: 80px 0;
  background: #fff;
}

/* Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.package-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
}

/* Bottom accent */
.package-card::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 30px;
  background: #f0a500;
  border-radius: 0 0 20px 20px;
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-content {
  padding: 20px;
  text-align: center;
}

.package-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #555;
}

/* Buttons */
.package-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  flex: 1;
  padding: 12px 0;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.btn.enquiry {
  background: #18c618;
}

.btn.call {
  background: #5e5ce6;
}

/* Responsive */
@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}
.footer-col.contact {
  text-align: center;
}

.footer-col.contact .contact-item {
  justify-content: center;
}
.about-hero-new {
  height: 55vh;
  background: url("images/about-new-banner.jpg") center/cover no-repeat;
  position: relative;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.about-overlay h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.about-overlay p {
  font-size: 18px;
}
.about-story {
  padding: 80px 0;
  background: #fff;
}

.about-story h2 {
  font-size: 34px;
  margin-bottom: 25px;
  text-align: center;
}

.about-story p {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: center;
}
.why-us {
  background: #f8f9fa;
  padding: 70px 0;
}

.why-us h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-size: 16px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.mission-vision {
  padding: 80px 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-box {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mv-box h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #f0a500;
}

.mv-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}
.about-cta {
  background: #0a6db6;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.about-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-cta p {
  margin-bottom: 20px;
}

.about-cta a {
  background: #f0a500;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
}
.contact-hero {
  padding: 60px 20px;
  background: #0a6db6;
  color: #fff;
  text-align: center;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 8px;
}

.contact-hero p {
  font-size: 16px;
  opacity: 0.9;
}
.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
}

/* Form */
.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0a6db6;
  outline: none;
}

.contact-form button {
  background: #0a6db6;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* Contact Info */
.contact-info {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-info h2 {
  font-size: 26px;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 32px;
  }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float a:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

