/* ============================================================
   style.css — Custom CSS for Sakshi Dental Clinic
   (Animations, ticker, lightbox, scrollbar, overrides)
   ============================================================ */

/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary: #396cf0;
  --secondary: #1c58ef;
  --dark: #111111;
  --body-text: #444444;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* ── Global Reset & Base ───────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--body-text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

h1 { font-size: 36px; line-height: 44px; }
h2 { font-size: 28px; line-height: 34px; }
h3 { font-size: 22px; line-height: 28px; }
h4 { font-size: 20px; line-height: 26px; }
h5 { font-size: 18px; line-height: 24px; font-weight: 600; }
h6 { font-size: 16px; line-height: 22px; font-weight: 600; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover { color: var(--secondary); }

img { max-width: 100%; height: auto; }

.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }

/* ── Preloader ─────────────────────────────────────────────── */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}
.preloader-spinner {
  width: 50px; height: 50px;
  border: 4px solid #e0e0e0;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Top Bar ───────────────────────────────────────────────── */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid #eee;
  font-size: 14px;
  padding: 8px 0;
  color: var(--body-text);
}
.top-bar a { color: var(--body-text); }
.top-bar a:hover { color: var(--primary); }
.top-bar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: #8a8a8a;
  transition: all 0.3s;
  font-size: 13px;
}
.top-bar .social-icons a:hover {
  background: var(--primary);
  color: var(--white);
}
.top-bar i { color: var(--secondary); margin-right: 5px; }

/* ── Header / Navigation ──────────────────────────────────── */
.site-header {
  background: #112338;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: all 0.3s ease;
}

.site-header .logo img {
  max-height: 55px;
}

.site-header nav a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--white);
  text-transform: capitalize;
  padding: 20px 15px;
  display: inline-block;
  position: relative;
  transition: color 0.3s;
}
.site-header nav a:hover,
.site-header nav a.active {
  color: #a4c4ff;
}
.site-header nav a::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.site-header nav a:hover::after,
.site-header nav a.active::after {
  transform: scaleX(1);
}

.header-appointment-btn {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 25px !important;
  border-radius: 3px;
  font-weight: 500;
  transition: all 0.3s;
}
.header-appointment-btn:hover {
  background: var(--secondary);
  color: var(--white) !important;
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  font-size: 22px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 3px;
}

/* Mobile nav - hidden by default on all screen sizes */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--secondary);
  background: #f8f9ff;
}

@media (max-width: 1024px) {
  .desktop-nav { display: none !important; }
  .mobile-menu-btn { display: block; }
}

/* ── Hero Slider ───────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(57, 108, 240, 0.95) 0%, rgba(57, 108, 240, 0.85) 50%, rgba(57, 108, 240, 0.4) 100%);
  display: flex;
}
.hero-slide .slide-content {
  text-align: left;
  color: var(--white);
  max-width: 650px;
  padding: 20px 0;
  z-index: 2;
}
.hero-slide .slide-subtitle-top {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 5px;
  animation: fadeInDown 0.8s ease;
}
.hero-slide .slide-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 25px;
  animation: fadeInLeft 0.8s ease;
}
.hero-slide .slide-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 35px;
  animation: fadeInUp 0.8s ease;
}
.hero-doctor-img {
  position: absolute;
  bottom: 0;
  right: 5%;
  height: 95%;
  object-fit: contain;
  z-index: 1;
  animation: fadeInRight 1s ease;
}
.hero-slide .slide-btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 14px 35px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  animation: fadeInUp 1s ease;
}
.hero-slide .slide-btn:hover {
  background: var(--dark);
  color: var(--white);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  font-size: 28px;
  width: 50px; height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 3px;
}
.slider-nav:hover { background: var(--primary); }
.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

/* ── Info Bar ──────────────────────────────────────────────── */
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 20px;
  background: var(--white);
  transition: all 0.3s;
}
.info-bar-item:hover { transform: translateY(-3px); }
.info-bar-item img { width: 55px; height: 55px; }
.info-bar-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}
.info-bar-item p {
  font-size: 14px;
  margin: 0;
  color: #666;
}

/* ── Section Headings ──────────────────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading .subtitle {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary);
}

/* ── Welcome Section ───────────────────────────────────────── */
.welcome-section .welcome-text h1 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.welcome-section .welcome-text p {
  text-align: justify;
  margin-bottom: 25px;
  color: #555;
}
.welcome-section .video-container {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}
.welcome-section .video-container video {
  width: 100%;
  display: block;
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.video-play-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ── Service Box ───────────────────────────────────────────── */
.service-box {
  text-align: center;
  padding: 25px 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  transition: all 0.3s;
  cursor: pointer;
}
.service-box:hover {
  background: var(--primary);
}
.service-box:hover p a,
.service-box:hover p { color: var(--white); }
.service-box img {
  width: 55px; height: 55px;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.service-box p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.service-box p a { color: var(--white); }

/* ── Choose Best Section ───────────────────────────────────── */
.choose-best-section {
  background: #f5f8ff;
}
.choose-best-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.checklist-item {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
}
.checklist-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}
.checklist-item::after {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(57,108,240,0.15);
  z-index: -1;
}

/* ── Progress Bars ─────────────────────────────────────────── */
.progress-bar-container {
  margin-bottom: 20px;
}
.progress-bar-container .progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 15px;
}
.progress-track {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  width: 0;
  transition: width 1.5s ease;
}

/* ── Why Choose Us ─────────────────────────────────────────── */
.why-choose-section {
  background: #f5f8ff;
}
.why-choose-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.why-choose-feature .feature-icon {
  width: 55px; height: 55px;
  min-width: 55px;
  background: rgba(57,108,240,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
}
.why-choose-feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.why-choose-feature p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.before-title {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* ── Appointment Form ──────────────────────────────────────── */
.appointment-section {
  background: linear-gradient(135deg, #0a1628 0%, #142850 100%);
}
.appointment-form-wrap {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.1);
}
.appointment-form-wrap h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 24px;
  position: relative;
  padding-bottom: 15px;
}
.appointment-form-wrap h3::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--primary);
}
.appointment-form-wrap select,
.appointment-form-wrap input,
.appointment-form-wrap textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 12px 15px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 15px;
  transition: border-color 0.3s;
}
.appointment-form-wrap select:focus,
.appointment-form-wrap input:focus,
.appointment-form-wrap textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.appointment-form-wrap select option {
  background: var(--dark);
  color: var(--white);
}
.appointment-form-wrap textarea {
  min-height: 100px;
  resize: vertical;
}
.appointment-form-wrap .submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s;
  width: 100%;
}
.appointment-form-wrap .submit-btn:hover {
  background: var(--secondary);
}

/* ── About Doctor ──────────────────────────────────────────── */
.doctor-card {
  text-align: center;
}
.doctor-card img {
  border-radius: 5px;
  margin-bottom: 20px;
}
.doctor-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.doctor-card p { font-size: 14px; color: #666; }
.doctor-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px; height: 35px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  margin: 0 4px;
  transition: all 0.3s;
  font-size: 14px;
}
.doctor-social a:hover {
  background: var(--secondary);
  color: var(--white);
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(rgba(57,108,240,0.9), rgba(28,88,239,0.9)),
              url('Images/Home/sliderim.webp') center/cover;
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner .cta-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 400;
}
.cta-banner h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 25px;
  text-transform: capitalize;
}
.cta-banner .cta-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 14px 35px;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.3s;
}
.cta-banner .cta-btn:hover {
  background: var(--white);
  color: var(--primary);
}

/* ── Working Process ───────────────────────────────────────── */
.process-card {
  text-align: center;
  padding: 20px;
}
.process-card .process-img {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid #e8e8e8;
  transition: all 0.3s;
}
.process-card:hover .process-img {
  border-color: var(--primary);
  transform: scale(1.05);
}
.process-card h3 { font-size: 18px; margin-bottom: 10px; }
.process-card p { font-size: 14px; color: #666; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section {
  background: var(--primary);
  padding: 80px 0;
}
.testimonial-card {
  text-align: center;
  padding: 40px 30px;
  color: var(--white);
}
.testimonial-card .testimonial-img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid rgba(255,255,255,0.3);
}
.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-card .testimonial-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.testimonial-card .testimonial-role {
  font-size: 14px;
  opacity: 0.8;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.testimonial-nav button {
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
}
.testimonial-nav button:hover { background: rgba(255,255,255,0.4); }

/* ── Stats / Counters ──────────────────────────────────────── */
.stats-section {
  background: #f5f8ff;
  padding: 70px 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-item img { width: 55px; margin-bottom: 15px; }
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}
.stat-item p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* ── Newsletter / Footer Center ────────────────────────────── */
.footer-newsletter {
  background: var(--dark);
  padding: 30px 0;
  border-bottom: 1px solid #222;
}
.footer-newsletter .newsletter-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.footer-newsletter .newsletter-form {
  display: flex;
}
.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: var(--white);
  font-size: 14px;
  border-radius: 3px 0 0 3px;
}
.footer-newsletter .subscribe-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
  transition: background 0.3s;
  font-size: 13px;
  letter-spacing: 1px;
}
.footer-newsletter .subscribe-btn:hover { background: var(--secondary); }

.footer-social-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social-bar span {
  color: #ccc;
  font-weight: 500;
  font-size: 14px;
}
.footer-social-bar a {
  color: #ccc;
  font-size: 16px;
  transition: color 0.3s;
  position: relative;
}
.footer-social-bar a::before,
.footer-social-bar a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  left: 0;
  transition: transform 0.3s;
  transform: scaleX(0);
}
.footer-social-bar a::before { top: -3px; }
.footer-social-bar a::after { bottom: -3px; }
.footer-social-bar a:hover { color: var(--secondary); }
.footer-social-bar a:hover::before,
.footer-social-bar a:hover::after { transform: scaleX(1); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: #e3e3e3;
}
.footer-top {
  padding: 60px 0 40px;
}
.footer-widget h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--primary);
}
.footer-widget p { font-size: 14px; line-height: 1.8; color: #aaa; }
.footer-widget ul { list-style: none; padding: 0; }
.footer-widget ul li {
  padding: 6px 0;
  font-size: 14px;
  position: relative;
  padding-left: 15px;
}
.footer-widget ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.footer-widget ul li a { color: #ccc; }
.footer-widget ul li a:hover { color: var(--primary); }

.footer-widget .contact-info li {
  padding-left: 30px;
}
.footer-widget .contact-info li::before { content: none; }
.footer-widget .contact-info li i {
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--secondary);
}
.footer-widget .contact-info li a { color: #ccc; }
.footer-widget .contact-info li a:hover { color: var(--primary); }

/* Opening Hours */
.opening-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0 !important;
  padding-left: 0 !important;
}
.opening-hours li::before { content: none !important; }
.opening-hours li .closed {
  color: var(--primary);
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  background: var(--dark);
  border-top: 1px solid #222;
  padding: 15px 0;
  text-align: center;
  font-size: 13px;
  color: #8f8f8f;
}

/* ── Scroll To Top ─────────────────────────────────────────── */
.scroll-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 45px; height: 45px;
  background: rgba(57,108,240,0.3);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: var(--primary);
  color: var(--white);
}

/* ── WhatsApp Button ───────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 55px; height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
}

/* ── Inner Page Banner ─────────────────────────────────────── */
.inner-banner {
  background: linear-gradient(rgba(57,108,240,0.9), rgba(57,108,240,0.9)),
              url('Images/Home/sliderim.webp') center/cover;
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.inner-banner h1 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 15px;
}
.inner-banner .breadcrumb {
  font-size: 14px;
}
.inner-banner .breadcrumb a { color: #c5d5ff; }
.inner-banner .breadcrumb a:hover { color: var(--white); }
.inner-banner .breadcrumb span { color: var(--white); }

/* ── Services Page ─────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  margin-bottom: 30px;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card .card-body {
  padding: 25px;
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.service-card h3 a { color: var(--dark); }
.service-card h3 a:hover { color: var(--primary); }
.service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.service-card .read-more {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
}
.service-card .read-more:hover { color: var(--secondary); }

/* ── Gallery ───────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.gallery-filters button {
  background: transparent;
  border: 2px solid #ddd;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.gallery-filters button.active,
.gallery-filters button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(57,108,240,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i {
  color: var(--white);
  font-size: 24px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 5px;
}
.lightbox .close-lightbox {
  position: absolute;
  top: 20px; right: 30px;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
}
.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  font-size: 28px;
  width: 50px; height: 50px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}
.lightbox .lb-nav:hover { background: var(--primary); }
.lightbox .lb-prev { left: 20px; }
.lightbox .lb-next { right: 20px; }

/* ── Blog ──────────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  margin-bottom: 30px;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.blog-card .card-img {
  position: relative;
  overflow: hidden;
}
.blog-card .card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .card-img img { transform: scale(1.05); }
.blog-card .blog-date {
  position: absolute;
  bottom: 15px; left: 15px;
  background: var(--white);
  color: var(--primary);
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
}
.blog-card .card-body { padding: 25px; }
.blog-card h3 { font-size: 18px; margin-bottom: 10px; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card .blog-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
}
.blog-card .blog-meta i { color: var(--primary); margin-right: 4px; }
.blog-card p { font-size: 14px; color: #666; margin-bottom: 15px; }
.blog-card .blog-read-more {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-card .blog-read-more:hover { color: var(--secondary); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.faq-question {
  padding: 18px 25px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform 0.3s; color: var(--primary); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-item.open .faq-question {
  background: var(--primary);
  color: var(--white);
}
.faq-item.open .faq-question i { color: var(--white); }
.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
.faq-item.open .faq-answer {
  padding: 20px 25px;
  max-height: 300px;
}
.faq-answer p { font-size: 14px; color: #666; margin: 0; }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 15px;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  outline: none;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 35px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s;
}
.contact-form .submit-btn:hover { background: var(--secondary); }
.contact-info-box {
  background: var(--primary);
  color: var(--white);
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 15px;
}
.contact-info-box i { font-size: 28px; margin-bottom: 15px; }
.contact-info-box h4 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.contact-info-box p { font-size: 14px; margin: 0; }
.contact-info-box a { color: var(--white); }

/* ── Read More Button ──────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--secondary);
  color: var(--white);
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Custom Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-slide .slide-title { font-size: 32px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-banner h2 { font-size: 28px; }
}
@media (max-width: 767px) {
  .hero-slide .slide-title { font-size: 24px; }
  .hero-slide .slide-subtitle { font-size: 14px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .top-bar .social-icons { display: none; }
  .footer-newsletter .newsletter-form { flex-direction: column; }
  .footer-newsletter .subscribe-btn { border-radius: 3px; margin-top: 8px; }
  .stat-item .stat-number { font-size: 32px; }
  .cta-banner h2 { font-size: 24px; }
  .slider-nav { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(1, 1fr); }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
}
