/*
Theme Name: Beauty Expressway
Theme URI: https://beautiexpressway.com
Author: Sudish World
Author URI: https://sudishworld.com
Description: Custom WordPress theme for doctor appointment system
Version: 1.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-doctor
*/
/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fdfaf8;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 500px;
  background: rgba(0,0,0,0.6);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(233,30,99,0.3);
  color: #fff;
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  color: #e91e63;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.dot.active,
.dot:hover {
  background: #e91e63;
}
/* Mobile & Tablet slider height */
@media (max-width: 768px) {
  .hero-slider {
    height: 400px; /* tablet */
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 300px; /* mobile */
  }
}



/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
/* Logo Image */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 180px; /* Adjust size as needed */
  height: auto;
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* Navbar Layout */
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img {
    width: 140px;
  }
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #e91e63;
}

.nav-links {
  display: flex;
  gap: 30px;
  margin-bottom: 0px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: larger;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e91e63;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: 0.3s;
}
/* Page Header with Background Image */
.page-header {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;

  /* BACKGROUND IMAGE */
  background-image:
    linear-gradient(
      rgba(232, 30, 99, 0.5),
      rgba(232, 30, 99, 0.5)
    ),
    url('https://beautyexpressway.com/wp-content/uploads/2026/02/bg_banner_be.webp');

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Gradient overlay for better text readability */
.page-header::before {
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233,30,99,0.8), rgba(240,98,146,0.6));
  opacity: 0.9;
}

.header-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: 1.2rem;
  margin-bottom: 0;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    height: 35vh;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
}

/* Buttons */
.btn, .btn-sm {
  display: inline-block;
  background-color: #e91e63;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}
.btn-sm{
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    background: #e91e63;
    color: #fff;
}

.btn:hover, .btn-sm:hover {
  background-color: #c2185b;
}

.btn-sm {
  padding: 8px 20px;
  font-size: .7rem;
  margin-top: 10px;
}

/* Sections */
.section {
  padding: 25px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #e91e63;
  position: relative;
}
.margintop {
  margin-top: 20px;
}
/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background-color: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}


.service-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px; 
    display: block;
    margin-bottom: 15px;
}

.service-card-vax-image {
    width: 100%;
    height: 300px;         
    overflow: hidden;
    border-radius: 12px;
}
.service-card-vax-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* MAGIC LINE 🔥 */
    object-position: center;
    display: block;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #e91e63;
  font-size: 1.1rem;
}

.service-card p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #555;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 0 !important;
  padding: 0 !important;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(233,30,99,0.15);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
  line-height: 0 !important;
  font-size: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.gallery-item img {
  width: 100% !important;
  height: 250px;
  object-fit: cover;
  display: block !important;
  line-height: 0 !important;
  font-size: 0 !important;
  transition: transform 0.6s ease;
}


.gallery-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 35px 80px rgba(233,30,99,0.3);
}


.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover::before {
  opacity: 1;
  transform: translateY(0);
}
/* Lightbox Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 100px rgba(233,30,99,0.4);
  animation: modalZoom 0.3s ease-out;
}

@keyframes modalZoom {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: #e91e63;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .gallery-item img {
    height: 220px;
  }
}
/* Video */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.video-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-title {
  padding: 8px;
  font-size: 1rem;
  color: #e91e63;
  background-color: black;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}
/* 3 Parts Row */
.three-parts-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 60px;
}

.part-welcome, .part-book, .part-track {
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(233, 30, 99, 0.1);
  transition: 0.3s;
  text-align: center;
  position: relative;
}

.part-welcome:hover, .part-book:hover, .part-track:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Welcome Styling */
.part-welcome {
  background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
  overflow: hidden;
}

.part-welcome::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(233,30,99,0.1) 0%, transparent 70%);
}

.welcome-badge {
  background: linear-gradient(45deg, #e91e63, #f06292);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.part-welcome h2 {
  background: linear-gradient(45deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.welcome-features p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 6px;
  padding-left: 25px;
  position: relative;
}

.welcome-features p strong {
  color: #e91e63;
}

.welcome-features p:before {
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: 2px;
}

.welcome-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 35px;
}

.welcome-stats span {
  background: rgba(233, 30, 99, 0.1);
  color: #e91e63;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(233, 30, 99, 0.2);
}

/* Book Part */
.trusted-logo {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-top: 0px;
  margin-bottom: 15px;
  border-radius: 12px;
}

.btn-book {
  background: linear-gradient(45deg, #e91e63, #f06292);
  color: white;
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  margin: 5px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  transition: 0.3s;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* Track Part */
.part-track {
  min-height: 320px;
  padding-bottom: 110px;
}

.track-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-control {
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  text-align: center;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #e91e63;
}

.track-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.track-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.alert-success {
  background: linear-gradient(45deg, #d4edda, #c3e6cb);
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 12px;
  border-radius: 12px;
  margin-top: 15px;
}

.patience-message-bottom {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 12px 15px;
  background: linear-gradient(90deg, rgba(233,30,99,0.08), rgba(233,30,99,0.12));
  border-radius: 10px;
  border-left: 3px solid #e91e63;
  text-align: center;
  box-shadow: 0 2px 10px rgba(233,30,99,0.1);
}

.patience-message-bottom p {
  margin: 0;
  color: #e91e63;
  font-size: 0.9rem;
  font-weight: 500;
  font-style: italic;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 20px 0;
    gap: 10px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }

  .nav-toggle:checked ~ .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .three-parts-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .service-card-image img {
    height: 235px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

}


/* Booking Section Title */


.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #e91e63, #f06292);
  border-radius: 2px;
}

/* Two Cards Row (Already optimized) */
.two-cards-row {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.about-card-half {
  flex: 1;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  padding: 40px;
  transition: 0.3s;
  border: 1px solid rgba(233, 30, 99, 0.15);
  position: relative;
  overflow: hidden;
}

.about-card-half::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e91e63, #f06292);
}

.about-card-half:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.about-card-content h2 {
  color: #e91e63;
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.about-card-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #e91e63;
  border-radius: 2px;
}

.about-card-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-card-content strong {
  color: #e91e63;
  font-weight: 700;
}

/* Service Flow */
.service-flow {
  margin-top: 30px;
  padding: 25px;
  background: rgba(233, 30, 99, 0.05);
  border-radius: 15px;
  border-left: 4px solid #e91e63;
}

.service-flow h4 {
  color: #e91e63;
  font-size: 1.3rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.service-flow ul {
  list-style: none;
  padding: 0;
}

.service-flow li {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.service-flow li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e91e63;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Booking Form Card Styling */
.about-card-half:nth-child(2) p {
  font-size: 1.3rem;
  color: #e91e63;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .two-cards-row {
    flex-direction: column;
    gap: 25px;
  }

  .about-card-half {
    padding: 30px 25px;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-card-content h2 {
    font-size: 1.7rem;
  }
}






/* About Layout: 3/4 Text + 1/4 Services */
.about-layout-3-4 {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  align-items: flex-start;
}

.about-col-3-4 {
  flex: 3; /* 75% width */
  padding: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(253,242,248,0.9));
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233,30,99,0.15);
  position: relative;
  overflow: hidden;
}

.about-col-3-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e91e63, #f06292, #e91e63);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

.about-col-3-4 h2 {
  color: #e91e63;
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
}

.about-col-3-4 h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e91e63, transparent);
  border-radius: 2px;
}

.about-col-3-4 p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}

.about-col-3-4 p:before {
  position: absolute;
  left: 0;
  color: #e91e63;
  font-size: 1.2rem;
}

/* Services Column (1/4) */
.services-col-1-4 {
  flex: 1; /* 25% width */
}

.services-col-1-4 h2 {
  color: #e91e63;
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.services-col-1-4 h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #e91e63;
  border-radius: 2px;
}

/* Compact Services Grid for Sidebar */
.services-grid-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.services-col-1-4 .service-card {
  padding: 20px 15px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  border-left: 4px solid rgba(233 30 99 / 80%);
  transition: 0.3s;
  height: 100%;
}

.services-col-1-4 .service-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  border-left-color: #e91e63;
}

.services-col-1-4 {
  color: #e91e63;
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.services-col-1-4 .service-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}

.services-col-1-4 .btn-sm {
  font-size: 0.85rem;
  padding: 6px 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-layout-3-4 {
    flex-direction: column;
    gap: 30px;
  }

  .services-col-1-4 .services-grid-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .services-col-1-4 .service-card {
    flex: 1 1 48%;
  }
}

@media (max-width: 768px) {
  .about-col-3-4 {
    padding: 25px 20px;
  }

  .about-col-3-4 h2 {
    font-size: 1.8rem;
  }

  .about-col-3-4 p {
    font-size: 1rem;
  }

  .services-col-1-4 h2 {
    font-size: 1.4rem;
  }
}

/* Stats Cards Grid */
.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.stat-card {
  background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
  padding: 40px 25px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border: 2px solid rgba(233,30,99,0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #e91e63, #f06292, #ff80ab);
  box-shadow: 0 2px 10px rgba(233,30,99,0.3);
}

.stat-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
  border-color: rgba(233,30,99,0.3);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 8px rgba(233,30,99,0.3));
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.stat-number {
  font-size: 3.8rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(45deg, #e91e63, #f06292, #ff4081);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 4px 12px rgba(233,30,99,0.3);
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(45deg, #666, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Counter Animation */
.stat-number.animate {
  animation: countGlow 2.5s ease-out forwards;
}

@keyframes countGlow {
  0% { 
    opacity: 0; 
    transform: scale(0.3); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.15); 
    text-shadow: 0 0 30px rgba(233,30,99,0.8);
  }
  100% { 
    opacity: 1; 
    transform: scale(1); 
  }
}

/* Responsive */
@media (max-width: 768px) {
  .stats-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card {
    height: 200px;
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .stats-cards-grid {
    grid-template-columns: 1fr;
  }
}


/* Training Hero Section */
.training-hero {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 35px 0;
  padding: 25px;
  background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid rgba(233,30,99,0.15);
}

.training-content {
  flex: 1;
}

.training-content h3 {
  color: #e91e63;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.training-content p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.training-badge {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.training-badge span {
  background: linear-gradient(45deg, #e91e63, #f06292);
  color: white;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(233,30,99,0.3);
}

.training-image {
  flex: 1;
}

.training-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Course Features */
.course-features {
  margin: 30px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  background: linear-gradient(135deg, #fff 0%, #fdfaf8 100%);
  padding: 30px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(233,30,99,0.1);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 18px;
}

.feature-card h4 {
  color: #e91e63;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Training Modules */
.training-modules {
  margin: 30px 0;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.module-card {
  background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(233,30,99,0.15);
  text-align: center;
  transition: 0.3s;
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.module-card h4 {
  color: #e91e63;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.module-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.module-card li {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
  /*padding-left: 25px;*/
  position: relative;
}

.module-card li:before {
  /*content: "✓";*/
  position: absolute;
  left: 0;
  color: #e91e63;
  font-weight: 700;
}

.module-duration {
  display: inline-block;
  background: rgba(233,30,99,0.1);
  color: #e91e63;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(233,30,99,0.2);
}

/* Placement Section */
.placement-section {
  margin: 60px 0;
  padding: 40px;
  background: linear-gradient(135deg, #fdf2f8 0%, #fff 100%);
  border-radius: 25px;
  border: 1px solid rgba(233,30,99,0.2);
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.placement-section h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #e91e63;
  font-size: 1.8rem;
  position: relative;
}

.placement-section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e91e63, #f06292);
  border-radius: 2px;
}

.placement-content p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

.placement-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.placement-list span {
  background: linear-gradient(45deg, #e91e63, #f06292);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(233,30,99,0.3);
}

.placement-note {
  text-align: center;
  font-size: 0.95rem;
  color: #888;
  font-style: italic;
}

/* Training CTA */
.training-cta {
  text-align: center;
  margin: 60px 0;
  padding: 50px 30px;
  background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid rgba(233,30,99,0.2);
}

.training-cta h3 {
  color: #e91e63;
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.training-cta p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: #e91e63;
  border: 2px solid #e91e63;
  padding: 12px 35px;
}

.btn-outline:hover {
  background: #e91e63;
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .training-hero {
    flex-direction: column;
    text-align: center;
  }

  .training-badge {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .training-hero {
    padding: 30px 20px;
  }

  .training-content h3 {
    font-size: 1.8rem;
  }

  .training-content p {
    font-size: 1.05rem;
  }

  .features-grid,
  .modules-grid {
    grid-template-columns: 1fr;
  }

  .placement-list {
    flex-direction: column;
    gap: 10px;
  }
}
/* Blog Filters */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: #555;
  border: 2px solid #ddd;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #e91e63;
  color: white;
  border-color: #e91e63;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(233,30,99,0.1);
  transition: all 0.4s ease;
}
.blog-card p {
  color: #555;
  line-height: 1.7;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Blog Image */
.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  position: relative;
  display: block;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e91e63;
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Blog Content */
.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.blog-content h3 {
  color: #e91e63;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.blog-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  color: #e91e63;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #c2185b;
  transform: translateX(5px);
}
@media (max-width: 991px) {
  .blog-grid { grid-template-columns: 1fr; }
}
/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.page-btn {
  background: transparent;
  color: #555;
  border: 2px solid #ddd;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-btn.active,
.page-btn:hover {
  background: #e91e63;
  color: white;
  border-color: #e91e63;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blog-card {
  margin: 0 10px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.blog-card h3 a {
  color: #ff2d7a;
  text-decoration: none;
}

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-content h3 {
    font-size: 1.3rem;
  }
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: #888;
}

.breadcrumb a {
  color: #e91e63;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Post Header */
.post-header {
  margin-bottom: 30px;
}

.post-tag {
  display: inline-block;
  background: #e91e63;
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.post-title {
  color: #e91e63;
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  gap: 8px;
  font-size: 1rem;
  color: #666;
  flex-wrap: wrap;
}

/* Featured Image */
.post-featured-image {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.post-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Post Content */
.post-content {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 50px;
}

.post-content h2 {
  color: #e91e63;
  font-size: 1.8rem;
  margin: 40px 0 20px;
  font-weight: 700;
}

.post-content p {
  margin-bottom: 25px;
}

.post-content ul,
.post-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.post-content li {
  margin-bottom: 10px;
}

/* Blockquote */
.post-quote {
  background: linear-gradient(135deg, #fdf2f8 0%, #fff 100%);
  border-left: 4px solid #e91e63;
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 10px;
  font-style: italic;
  font-size: 1.15rem;
  color: #444;
}

.post-quote p {
  margin-bottom: 15px;
}

.post-quote cite {
  display: block;
  font-size: 1rem;
  color: #e91e63;
  font-weight: 600;
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 25px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
  border-radius: 20px;
  border: 1px solid rgba(233,30,99,0.15);
  margin: 50px 0;
}

.author-avatar {
  flex: 0 0 80px;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e91e63;
}

.author-info h4 {
  color: #e91e63;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.author-info p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 0;
}

/* Social Sharing */
.social-share {
  margin: 50px 0;
}

.social-share h4 {
  color: #e91e63;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  background: transparent;
  color: #e91e63;
  border: 2px solid #e91e63;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: #e91e63;
  color: white;
}

/* Related Posts */
.related-posts {
  margin: 60px 0;
}

.related-posts h3 {
  color: #e91e63;
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
}

.related-posts h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e91e63, #f06292);
  border-radius: 2px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.related-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(233,30,99,0.1);
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-card h4 {
  color: #e91e63;
  font-size: 1.3rem;
  margin: 15px 15px 15px;
  font-weight: 700;
}

/* Comments Section */
.comments-section {
  margin: 60px 0;
}

.comments-section h3 {
  color: #e91e63;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.comment {
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(233,30,99,0.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comment-author {
  font-size: 1.1rem;
  color: #e91e63;
  font-weight: 700;
  margin-bottom: 5px;
}

.comment-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.comment p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Comment Form */
.comment-form {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
  border-radius: 20px;
  border: 1px solid rgba(233,30,99,0.15);
}

.comment-form h4 {
  color: #e91e63;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e91e63;
}

.comment-form .btn {
  margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .post-title {
    font-size: 2rem;
  }

  .post-featured-image {
    margin-bottom: 30px;
  }

  .post-featured-image img {
    height: 300px;
  }

  .post-content {
    font-size: 1.05rem;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar {
    flex: 0 0 100px;
  }
}

/* Contact Content */
.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.contact-details {
  background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(233,30,99,0.15);
}

.contact-info {
  margin-top: 30px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(233,30,99,0.2);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon {
  font-size: 2rem;
  color: #e91e63;
  flex: 0 0 40px;
}

.info-item h4 {
  color: #e91e63;
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.info-item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Map Section */
.contact-map {
  background: linear-gradient(135deg, #fff 0%, #fdfaf8 100%);
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(233,30,99,0.15);
}

.map-container {
  margin-top: 25px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-container iframe {
  border-radius: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-details,
  .contact-map {
    padding: 30px 20px;
  }

  .info-item {
    gap: 12px;
  }

  .info-icon {
    font-size: 1.8rem;
  }
}

.testimonial-section {
  padding: 30px 20px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-title {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-slider {
  position: relative;
  max-width: 1110px;
  margin: auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* DEFAULT (Desktop) */
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 50%;   /* Desktop: 2 cards */
  padding: 15px;
  box-sizing: border-box;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;   /* 🔥 Mobile: 1 card only */
  }
}


.card {
  height: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ff6b9d, #e91e63);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}

.stars {
  color: #ffa500;
  font-size: 20px;
}

.review {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.user strong {
  color: #e91e63;
  font-size: 16px;
}

.user span {
  display: block;
  font-size: 14px;
  color: #888;
}

/* Navigation */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e91e63;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(233,30,99,0.4);
}

.nav.prev { left: 15px; }
.nav.next { right: 15px; }

/* Dots */
.dots {
  text-align: center;
  margin-top: 25px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
}

.dot.active {
  background: #e91e63;
}

/* ===== MODERN BLOG DESIGN ===== */
.blog-wrapper {
  padding: 30px 0;
  min-height: 100vh;
}

.blog-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}

/* Article Styling */
.blog-post {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.blog-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #ff69b4, #e91e63, #ff69b4);
}

.blog-post h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 25px;
  line-height: 1.2;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.post-meta .author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff69b4, #e91e63);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.feature-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.blog-post h2 {
  font-size: 2rem;
  color: #1a1a2e;
  margin: 25px 0 20px;
  font-weight: 700;
}

.blog-post p, .blog-post li {
  font-size: 18px;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: fit-content;
}

.sidebar-widget {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 35px 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.3);
}

.sidebar-widget h3 {
  color: #1a1a2e;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 25px;
  padding-bottom: 15px;
  position: relative;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff69b4, #e91e63);
  border-radius: 2px;
}

.recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.recent-item:last-child {
  border-bottom: none;
}

.recent-item:hover {
  padding-left: 10px;
  background: rgba(255,105,180,0.05);
  border-radius: 10px;
}

.recent-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.recent-title {
  font-size: 15px;
  color: #1a1a2e;
  line-height: 1.4;
  font-weight: 600;
}

.recent-title:hover {
  color: #ff69b4;
}

/* Sidebar Ads */
.sidebar-ads {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-ad {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.sidebar-ad:hover {
  transform: translateY(-5px);
}

.sidebar-ad img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.sidebar-ad:hover img {
  transform: scale(1.02);
}
.ad-badge::before {
    content: "Ad";
    position: absolute;
    top: 0;
    left: 0;
    background: #e91e63;
    color: #fff;
    font-size: 11px;
    padding: 3px 7px;
    border-bottom-right-radius: 6px;
}



.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 15px;
  color: #6b7280;
}

.breadcrumb-item a {
  color: #ff69b4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #e91e63;
}

.breadcrumb-item.active {
  color: #1a1a2e;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  
  .blog-post {
    padding: 35px 25px;
  }
  
  .blog-post h1 {
    font-size: 2.2rem;
  }

}

@media (max-width: 768px) {
  .blog-wrapper {
    padding: 50px 0;
  }
  
  .blog-post {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .blog-post h1 {
    font-size: 1.9rem;
  }
  
  .feature-image {
    height: 280px;
    border-radius: 16px;
  }
}   

  .about-card {
  max-width: 1120px;
  margin: 45px auto;
  background: #fffdfd;
  border-radius: 20px;
  padding: 25px 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(233, 30, 99, 0.15);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  transition: 0.3s;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e91e63, #f06292);
}

.about-card p {
  font-size: 16px;
  line-height: 1.8;
  color: black;
  margin-bottom: 16px;
}



/* Full page overlay */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  /* Card */
  .offer-card {
    width: 420px;
    max-width: 90%;
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    animation: zoomIn 0.3s ease;
  }

  @keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
  }

  .close-btn:hover {
    color: #000;
  }

  .offer-card h2 {
    margin-top: 0;
    font-size: 24px;
    color: #222;
  }

  .offer-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }

  .services {
    list-style: none;
    padding: 0;
    margin: 16px 0;
  }

  .services li {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .offer {
    font-weight: bold;
    color: #e91e63;
    margin: 15px 0;
    font-size: 15px;
  }

  .book-btn {
    display: block;
    text-align: center;
    background: #e91e63;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
  }

  .book-btn:hover {
    background: #d81b60;
  }
  .overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}
.image-wrapper{
    position: relative;
}

/* Duration badge like AVAILABLE */
.duration-badge{
    position: absolute;
    top: 0px;
    right: 0px;
    background: #28a745;
    color: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Booking + Price row */
.service-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

/* Booking left */
.btn-center{
    text-align: left;
}

/* Price right */
.btn-right{
    text-align: right;
}
.service-categories{
    text-align:center;
    margin-bottom:30px;
}

.service-categories button{
    padding:8px 16px;
    margin:5px;
    border:none;
    background:#e91e63;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
}

.service-categories button:hover{
    background:#000;
}
