﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f5f5f5;
}


/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo h2 {
  color: #1e3a8a;
}

.logo p {
  font-size: 12px;
  letter-spacing: 2px;
  color: gray;
}


.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #555;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: medium;
  font-weight: 500;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #555;
  padding: 8px 14px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #1e3a8a;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active::after {
  width: 100%;
}
.nav.active {
  display: flex;
}

.dropdown-content.show {
  display: block;
}
.nav a.active {
  color: #1e3a8a;
}
.right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn,
.call-btn {
  background: #1e3a8a;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;   
  align-items: center;
  gap: 8px;
  font-size: 14px;        
  height: 40px;          
}

.buttons .call-btn {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn:hover,
.call-btn:hover {
  background: #163075;
}

.menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
}


.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #333;
}

.dropdown-content a:hover {
  background: #f0f4ff;
  color: #1e3a8a;
  padding-left: 20px;
  transition: all 0.2s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media (max-width: 900px) {

  .header {
    position: fixed;
  }

  .container {
    position: relative;
    flex-wrap: wrap;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px 20px;
    margin: 0;
    border-radius: 0;
    width: 100%;
    text-align: center;
  }

  .nav a::after {
    display: none;
  }

  .dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #f0f4ff;
    display: none;
    width: 100%;
  }

  .dropdown-content.show {
    display: block;
  }

  .dropdown-content a {
    padding: 10px 30px;
    text-align: center;
  }

  .menu {
    display: block;
  }

  .right .btn {
    display: none;
  }
}

/* call-btn visibility handled in comprehensive media queries below */





/* HERO SECTION */
.hero {
  width: 100%;
  height: 98vh;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.content {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  max-width: 550px;
  color: #fff;
  z-index: 2;
}

.content h1 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
}

.content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
    
}

.btn.call {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn.book {
  background: #1e3a8a;
  color: #fff;
  border-radius: 30px;
}

/* HERO CONTENT ANIMATION */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide.active .content h1 {
  animation: fadeSlideUp 0.7s ease forwards;
}

.slide.active .content p {
  animation: fadeSlideUp 0.7s ease 0.2s forwards;
  opacity: 0;
}

.slide.active .buttons {
  animation: fadeSlideUp 0.7s ease 0.4s forwards;
  opacity: 0;
}

/* Tablet - 1024px */
/* Tablet portrait - 768px */
/* Mobile - 480px */
/* Small mobile - 360px */
/* moved to comprehensive media queries at bottom */



















/* Section */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px;
  background-color: #000;
}

/* Card */
.card {
  perspective: 1000px;
}

/* Inner */
.card-inner {
  position: relative;
  width: 100%;
  height: 280px;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

/* Hover flip */
.card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Front & Back */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  backface-visibility: hidden;
}

/* Front */
.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-front h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.3);
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-family: 'poppins',sans-serif;
}

/* Back */
.card-back {
  background: #1e3a8a;
  color: #fff;
  transform: rotateY(180deg);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.card-back h3 {
  margin-bottom: 10px;
}

























/* ========================= */
/* ABOUT SECTION */
/* ========================= */

.about{
    padding: 90px 20px;
    background: #f9fafb;
}

.about-container{
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;

    align-items: start;
}

/* ========================= */
/* LEFT IMAGE */
/* ========================= */

.about-img{
    position: sticky;
    top: 120px;
}

.about-img img{
    width: 100%;
    height: 650px;

    object-fit: cover;

    border-radius: 20px;

    display: block;
}

/* ========================= */
/* RIGHT CONTENT */
/* ========================= */

.about-content h2{
    font-size: 38px;
    color: #1e3a8a;

    margin-bottom: 8px;
}

.about-content h4{
    font-size: 18px;
    color: #555;

    margin-bottom: 25px;

    font-weight: 500;
}

.about-content p{
    font-size: 15px;
    color: #444;

    line-height: 1.9;

    margin-bottom: 18px;
}

/* ========================= */
/* EXTRA SECTION */
/* ========================= */

.about-extra{
    margin-top: 35px;
}

/* ========================= */
/* INFO CARDS */
/* ========================= */

.info-cards{
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.info-card{
    display: flex;
    align-items: center;

    gap: 18px;

    background: #e9edf3;

    padding: 22px;

    border-radius: 18px;
}

.info-card i{
    font-size: 28px;
    color: #1e3a8a;
}

.info-card h4{
    margin: 0;

    font-size: 18px;

    color: #1e3a8a;
}

.info-card p{
    margin: 3px 0 0;

    font-size: 15px;

    color: #555;
}

/* ========================= */
/* GUIDE TITLE */
/* ========================= */

.guide-title{
    margin-top: 40px;
    margin-bottom: 20px;

    font-size: 40px;

    color: #1e3a8a;
}

/* ========================= */
/* GUIDE POINTS */
/* ========================= */

.guide-points{
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.guide-points div{
    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 17px;
    font-weight: 500;
}

.guide-points i{
    color: #22c55e;

    font-size: 20px;
}

/* ========================= */
/* BUTTON */
/* ========================= */

.about-btn{
    display: inline-block;

    margin-top: 28px;

    padding: 14px 34px;

    border: 2px solid #1e3a8a;

    color: #1e3a8a;

    text-decoration: none;

    border-radius: 10px;

    font-size: 17px;
    font-weight: 600;

    transition: 0.3s ease;
}

.about-btn:hover{
    background: #1e3a8a;
    color: #fff;
}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media(max-width:992px){

    .about-container{
        grid-template-columns: 1fr;
    }

    .about-img{
        position: static;
    }

    .about-img img{
        height: auto;
    }

    .guide-points{
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px){

    .about{
        padding: 70px 15px;
    }

    .about-content h2{
        font-size: 30px;
    }

    .guide-title{
        font-size: 30px;
    }

    .info-card{
        padding: 18px;
    }

    .guide-points div{
        font-size: 15px;
    }

}








/* Section */
.ortho-services {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f0f6ff, #ffffff);
  font-family: 'Poppins', sans-serif;
}
.ortho-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Small heading */
.ortho-title span {
  color: #1e3a8a;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}


.ortho-title h2 {
  font-size: 34px;
  color: #222;
  margin-bottom: 12px;
}

.ortho-title p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  max-width: 550px;
}

/* Grid */
.ortho-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  perspective: 1000px;
}

/* Card */
.ortho-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
  transform-style: preserve-3d;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Floating idle animation */
.ortho-card {
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Hover tilt + depth */
.ortho-card:hover {
  transform: rotateX(6deg) rotateY(-6deg) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* Image */
.ortho-img {
  position: relative;
  overflow: hidden;
}

.ortho-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Image zoom */
.ortho-card:hover img {
  transform: scale(1.15);
}

/* Shine effect */
.ortho-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-25deg);
}

.ortho-card:hover .ortho-img::after {
  animation: shine 0.8s;
}

@keyframes shine {
  100% { left: 125%; }
}

/* Gradient overlay on hover */
.ortho-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,119,255,0.5), transparent);
  opacity: 0;
  transition: 0.4s;
}

.ortho-card:hover .ortho-img::before {
  opacity: 1;
}

/* Content */
.ortho-content {
  padding: 22px;
  transform: translateZ(30px);
}

.ortho-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #222;
}

.ortho-content h5 {
  font-size: 14px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.ortho-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Button */
.read-more {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  border-radius: 25px;
  background: linear-gradient(135deg, #0077ff, #1e3a8a);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

/* Button hover animation */
/* .read-more::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #0077ff;
  color: #000;
  transition: 0.4s;
  z-index: 0; */
/* } */

.read-more:hover::before {
  width: 100%;
}

.read-more span {
  position: relative;
  z-index: 1;
}

.read-more:hover {
  color: #1e3a8a;
}

/* ortho card hover handled in comprehensive media queries below */












/* Section with background image */
.why-choose-bg {
  background-image: url('https://images.unsplash.com/photo-1551190822-a9333d879b1f?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

/* Dark gradient overlay - only right side dark */
.why-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.88) 60%);
  width: 100%;
  padding: 25px 0;
  display: flex;
  justify-content: flex-end;
}

/* Content aligned right */
.why-content {
  width: 50%;
  padding: 25px 60px 25px 40px;
  color: #fff;
}

/* Heading */
.why-content span {
  color: #4da6ff;
  font-size: 13px;
  letter-spacing: 2px;
}

.why-content h2 {
  font-size: 32px;
  margin: 12px 0 30px;
  line-height: 1.3;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Items */
.why-item h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.why-item p {
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
}

/* Hover effect */
.why-item {
  transition: 0.3s;
}

.why-item:hover {
  transform: translateX(8px);
  color: #4da6ff;
}















/* ===== FOOTER ===== */
.footer {
  margin-top: 10px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0f2f57, #1e3a8a);
  color: #fff;
}

/* Main Box */
.footer-box {
  max-width: 1400px;
  margin: auto;
  padding: 40px;
  border-radius: 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🔥 4 columns fix */
  gap: 40px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Common column */
.footer-left,
.footer-links,
.footer-services,
.footer-contact {
  flex: 1;
}

/* ===== LEFT ===== */
.footer-left h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #93c5fd;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
}

/* ===== HEADINGS ===== */
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  margin-bottom: 12px;
  position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #60a5fa;
  position: absolute;
  bottom: -5px;
  left: 0;
}

/* ===== LINKS & SERVICES ===== */
.footer-links,
.footer-services {
  display: flex;
  flex-direction: column;
}

.footer-links a,
.footer-services a {
  text-decoration: none;
  color: #d1d5db;
  margin-bottom: 6px;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
}

/* hover animation */
.footer-links a:hover,
.footer-services a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* ===== CONTACT ===== */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #e5e7eb;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact i {
  color: #60a5fa;
  min-width: 18px;
  margin-top: 3px;
}

/* ===== SOCIAL ===== */
/* Common style */
.social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;

  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

/* Facebook */
.social a.facebook {
  background: #1877F2;
}

.whatsapp{
    background: #25D366;
}

.call{
    background: #0d6efd;
}
/* Hover effect */
.social a:hover {
  transform: translateY(-4px) scale(1.1);
}
.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);

  display: flex;
  justify-content: space-between; /* 🔥 left-right */
  align-items: center;
  flex-wrap: wrap;

  font-size: 14px;
  color: #cbd5e1;
}

/* Designed by */
.design {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Logo */
.design img {
  height: 28px;
  transition: 0.3s;
}

/* Hover effect */
.design img:hover {
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-box {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 30px;
  }

  .footer-links h3::after,
  .footer-services h3::after,
  .footer-contact h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact p {
    justify-content: center;
  }

  .container {
    padding: 12px 20px;
  }

  .logo h2 {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .footer-box {
    grid-template-columns: 1fr;
    padding: 25px;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* ============================================
   COMPREHENSIVE MEDIA QUERIES - ALL SECTIONS
   ============================================ */

/* ---- HEADER ---- */
@media (max-width: 480px) {
  .logo h2 {
    font-size: 16px;
  }

  .logo p {
    font-size: 10px;
  }
}

/* ---- HERO ---- */
@media (max-width: 1024px) {
  .content {
    left: 50px;
    max-width: 480px;
  }

  .content h1 {
    font-size: 48px;
  }

  .content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .call-btn {
    display: none;
  }

  .buttons .call-btn {
    display: inline-flex;
  }

  .content {
    left: 30px;
    right: 30px;
    max-width: 100%;
  }

  .content h1 {
    font-size: 34px;
  }

  .content p {
    font-size: 15px;
  }

  .buttons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .buttons .call-btn,
  .buttons .btn.book {
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 65vh;
  }

  .content {
    left: 20px;
    right: 20px;
    top: 52%;
  }

  .content h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .content p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .buttons .call-btn,
  .buttons .btn.book {
    padding: 9px 16px;
    font-size: 12px;
    height: 38px;
  }
}

@media (max-width: 360px) {
  .content h1 {
    font-size: 22px;
  }

  .buttons .call-btn,
  .buttons .btn.book {
    padding: 8px 13px;
    font-size: 12px;
    height: 36px;
  }
}

/* ---- SERVICES FLIP CARDS ---- */
@media (max-width: 1024px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .services {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 10px;
  }

  .card-inner {
    height: 220px;
  }
}

/* ---- ORTHO SERVICES ---- */
@media (max-width: 1024px) {
  .ortho-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .ortho-services {
    padding: 50px 15px;
  }

  .ortho-title h2 {
    font-size: 24px;
  }

  .ortho-title p {
    font-size: 14px;
  }

  .ortho-card:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 480px) {
  .ortho-services {
    padding: 40px 10px;
  }

  .ortho-title h2 {
    font-size: 22px;
  }

  .ortho-content h3 {
    font-size: 16px;
  }

  .ortho-img img {
    height: 170px;
  }
}

/* ---- WHY CHOOSE ---- */
@media (max-width: 1024px) {
  .why-content {
    width: 55%;
    padding: 40px 40px 40px 30px;
  }

  .why-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .why-choose-bg {
    background-attachment: scroll;
  }

  .why-overlay {
    background: rgba(0,0,0,0.75);
    justify-content: center;
    padding: 40px 0;
  }

  .why-content {
    width: 100%;
    padding: 30px 25px;
  }

  .why-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .why-content h2 {
    font-size: 20px;
  }

  .why-item h4 {
    font-size: 14px;
  }

  .why-item p {
    font-size: 13px;
  }
}

/* ---- ABOUT ---- */
@media (max-width: 1024px) {
  .about {
    padding: 60px 30px;
  }

  .about-container {
    gap: 30px;
  }

  .about-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 50px 20px;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-img {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-img img {
    height: 350px;
    width: 100%;
  }

  .about-content {
    text-align: justify;
  }

  .about-content h2 {
    font-size: 24px;
    text-align: center;
  }

  .about-content h4 {
    text-align: center;
  }

  .guide-points {
    grid-template-columns: 1fr;
  }

  .about-btn {
    display: block;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 40px 15px;
  }

  .about-img img {
    height: 260px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
  }

  .guide-title {
    font-size: 18px;
    text-align: center;
  }

  .guide-points div {
    font-size: 14px;
    justify-content: center;
  }
}

/* ===== PHOTO GALLERY ===== */
.gallery {
  padding: 70px 40px;
  background: #f9fafb;
  text-align: center;
}

.gallery-title {
  margin-bottom: 40px;
}

.gallery-title span {
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}

.gallery-title h2 {
  font-size: 32px;
  color: #222;
  margin-top: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Gallery Responsive */
@media (max-width: 768px) {
  .gallery {
    padding: 50px 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-card img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-card img {
    height: 150px;
  }

  .gallery-title h2 {
    font-size: 24px;
  }
}

/* ===== VIDEO GALLERY ===== */
.video-gallery {
  padding: 70px 40px;
  background: #fff;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  position: relative;
  padding-top: 56.25%; /* 16:9 ratio */
}

.video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Video Gallery Responsive */
@media (max-width: 768px) {
  .video-gallery {
    padding: 50px 20px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.video-card video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 100px 40px 70px;
  background: #f0f4ff;
}

.reviews-title {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-title span {
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}

.reviews-title h2 {
  font-size: 32px;
  color: #222;
  margin: 8px 0 12px;
}

.reviews-title p {
  color: #666;
  font-size: 15px;
  max-width: 550px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: reviewFadeIn 0.6s ease forwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }
.review-card:nth-child(7) { animation-delay: 0.7s; }
.review-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes reviewFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Top row */
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e0e7f3;
  color: #1e3a8a;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-info h4 {
  font-size: 15px;
  color: #222;
  margin: 0;
}

.review-info p {
  font-size: 12px;
  color: #999;
  margin: 2px 0 0;
}

.review-stars i {
  color: #f59e0b;
  font-size: 13px;
}

/* Quote icon */
.review-quote {
  color: #d1daf0;
  font-size: 22px;
  margin-bottom: 8px;
}

/* Review text */
.review-text {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Tag */
.review-tag {
  font-size: 13px;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-section {
    padding: 90px 20px 50px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reviews-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .reviews-title h2 {
    font-size: 22px;
  }

  .review-card {
    padding: 20px;
  }
}

/* ===== REVIEWS SLIDER (INDEX PAGE) ===== */
.reviews-slider-section {
  padding: 70px 40px;
  background: #f0f4ff;
  overflow: hidden;
}

.reviews-view-all {
  text-align: center;
  margin-top: 40px;
}

.slider-track-wrapper {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollReviews 30s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

.slider-track .review-card {
  width: 340px;
  flex-shrink: 0;
  opacity: 1;
  transform: none;
  animation: none;
}

@keyframes scrollReviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .reviews-slider-section {
    padding: 50px 20px;
  }

  .slider-track .review-card {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .slider-track .review-card {
    width: 250px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  display: flex;
  gap: 40px;
  padding: 70px 60px;
  background: #f5f7fb;
  align-items: stretch;
}

/* Left */
.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Book box */
.contact-book {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.contact-book h2 {
  font-size: 26px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.contact-book p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.contact-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1e3a8a;
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.contact-call-btn:hover {
  background: #163075;
}

/* Info cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-info-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-4px);
}

.contact-info-card.full-width {
  grid-column: 1 / -1;
}

.contact-info-card i {
  font-size: 20px;
  color: #1e3a8a;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 14px;
  color: #222;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Right - Map */
.contact-right {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  min-height: 450px;
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    padding: 50px 30px;
  }

  .contact-right {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .contact-info-card.full-width {
    grid-column: 1;
  }

  .contact-book h2 {
    font-size: 22px;
  }

  .contact-right {
    min-height: 280px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 70px 60px;
  background: #fff;
}

.faq-title {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title span {
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}

.faq-title h2 {
  font-size: 32px;
  color: #222;
  margin: 8px 0 12px;
}

.faq-title p {
  color: #666;
  font-size: 15px;
  max-width: 550px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item.active {
  box-shadow: 0 4px 20px rgba(30,58,138,0.1);
  border-color: #1e3a8a;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s;
}

.faq-item.active .faq-question {
  background: #f0f4ff;
}

.faq-question span {
  font-size: 15px;
  font-weight: 500;
  color: #222;
}

.faq-item.active .faq-question span {
  color: #1e3a8a;
}

.faq-question i {
  color: #1e3a8a;
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 20px;
  }

  .faq-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .faq-title h2 {
    font-size: 22px;
  }

  .faq-question span {
    font-size: 14px;
  }
}

/* ===== SERVICE PAGES ===== */
.service-banner {
  width: 100%;
  height: 55vh;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 70px;
}

.service-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.service-banner-overlay h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-banner-overlay p {
  font-size: 16px;
  color: #ddd;
}

/* Service Detail */
.service-detail {
  padding: 70px 60px;
  background: #fff;
}

.service-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.service-detail-img {
  flex: 1;
}

.service-detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.service-detail-content {
  flex: 1.2;
}

.service-detail-content span {
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}

.service-detail-content h2 {
  font-size: 30px;
  color: #222;
  margin: 10px 0 18px;
}

.service-detail-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.service-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
}

.service-points i {
  color: #1e3a8a;
  font-size: 16px;
  flex-shrink: 0;
}

/* Why Section */
.service-why {
  padding: 60px;
  background: #f0f4ff;
}

.service-why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.service-why-inner h2 {
  font-size: 28px;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 40px;
}

.service-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-why-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: transform 0.3s;
}

.service-why-card:hover {
  transform: translateY(-6px);
}

.service-why-card i {
  font-size: 30px;
  color: #1e3a8a;
  margin-bottom: 14px;
}

.service-why-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #222;
}

.service-why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Service Pages Responsive */
@media (max-width: 1024px) {
  .service-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-banner {
    height: 40vh;
  }

  .service-banner-overlay h1 {
    font-size: 28px;
  }

  .service-detail {
    padding: 50px 20px;
  }

  .service-detail-container {
    flex-direction: column;
    gap: 30px;
  }

  .service-detail-img img {
    height: 280px;
  }

  .service-points {
    grid-template-columns: 1fr;
  }

  .service-why {
    padding: 40px 20px;
  }

  .service-why-inner h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .service-banner-overlay h1 {
    font-size: 22px;
  }

  .service-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================= */
/* Floating Contact Buttons */
/* ========================= */

.floating-contact{
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 99999;
    margin-bottom: 40px;
}

.contact-float{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.phone-float{
    background: #0d6efd;
}

.whatsapp-float{
    background: #25D366;
}

.contact-float:hover{
    transform: scale(1.1);
}

/* Mobile */
@media(max-width:768px){

    .floating-contact{
        left: 15px;
        bottom: 15px;
    }

    .contact-float{
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

}

/* Breadcrumb */

.breadcrumb{
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.breadcrumb a:hover{
    color: #ffd700;
}

.breadcrumb span{
    color: #fff;
    font-size: 15px;
}


.footer-contact p a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact p a:hover{
    color: #0d6efd;
}