/* 
* Serene Yoga - Custom CSS
* Primary Color: #ad1457
*/

/* Global Styles */
:root {
  --primary-color: #ad1457;
  --primary-dark: #ad1457;
  --primary-light: #ad1457;
  --secondary-color: #ad1457;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --success-color: #28a745;
  --info-color: #17a2b8;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body {
  font-family: var(--font-primary)!important;
  /* color: #555; */
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  /* color: var(--primary-color); */
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}
.blog-banner h1{
  font-size: 40px;
}

.bg-nav{
  height: 300px; object-fit: cover; filter: brightness(0.5);
}
.blog-banner .active{
  color: #fff;
}

 #contentPage h1,h2,h3,h4,h5,h6{
    color: #ad003d;
  }
  #contentPage p{
    text-align: justify;
  }
#contentPage img{
    border-radius: 0;
    margin-top: 10px;
  }
.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  /* text-transform: uppercase; */
  /* letter-spacing: 1px;
  font-size: 14px; */
}

.btn-primary {
  background-color: #ad1457!important;
  border-color: #ad1457!important;
}

.btn-primary:hover {
  /* background-color: var(--primary-dark);
  border-color: var(--primary-dark);
} */
 background-color: #ad1457;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.about-image {
  position: relative;
}

.about-image .main-img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.about-image .secondary-img {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 60%;
  border: 10px solid white;
  box-shadow: var(--box-shadow);
}

.experience-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.experience-badge .years {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 14px;
  font-weight: 600;
}

.feature-item {
  margin-bottom: 20px;
}

.feature-item .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(210, 145, 188, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
}

.feature-item h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

/* stat section */
  .stats-section {
    background: #ad1457;
    color: #333;
  }

  .section-header .subtitle {
    color: #ad1457;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 2rem;
  }

  .section-header h2 {
    font-weight: 700;
    color: #333;
      font-size: 1.6rem;
  }

  .stat-card {
    background: white;
    border-radius:0px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }

  .stat-card:hover {
    transform: translateY(-5px);
  }

  .stat-icon i {
    font-size: 2.5rem;
    color: #ad1457;
  }

  .counter {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
  }

  .stat-title {
    font-size: 1rem;
    color: #777;
    margin-top: 5px;
  }
  /* stat section */
/* Services Section */
.services-section {
  background-color: #f9f9f9;
  padding: 100px 0;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-content .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(210, 145, 188, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 20px;
}

.service-content h4 {
  margin-bottom: 15px;
  font-weight: 700;
}

.service-meta {
  border-top: 1px solid #eee;
  padding-top: 15px;
  font-size: 14px;
  color: var(--secondary-color);
}

/* Why Us Section */
.why-us-section {
  padding: 100px 0;
  background-color: #fff;
}

.why-us-item {
  margin-bottom: 30px;
}

.why-us-item .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(210, 145, 188, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
}

.why-us-item h5 {
  margin-bottom: 10px;
  font-weight: 600;
}

.why-us-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.why-us-image img:hover {
  transform: scale(1.05);
}

/* Footer */
.footer-section {
  background-color: #000;
  color: #adb5bd;
  padding-bottom: 0;
}

.footer-logo {
  max-height: 60px;
}

.footer-heading {
  color: white;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #adb5bd;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact li i {
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.footer-bottom {
  background-color: #2b3035;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.footer-bottom-links li {
  margin-left: 20px;
}

.footer-bottom-links a {
  color: #adb5bd;
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .carousel-caption h2 {
    font-size: 42px;
  }
}

@media (max-width: 991.98px) {
  .carousel-caption {
    padding: 0 50px;
  }

  .carousel-caption h2 {
    font-size: 36px;
  }

  .about-image .secondary-img {
    right: -20px;
    bottom: -20px;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
    padding: 15px;
  }

  .experience-badge .years {
    font-size: 30px;
  }

  .experience-badge .text {
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .carousel-caption {
    bottom: 10%;
    padding: 0 20px;
  }

  .carousel-caption h2 {
    font-size: 28px;
  }

  .carousel-caption p {
    font-size: 16px;
  }


  .about-image .secondary-img {
    width: 50%;
    right: 0;
    bottom: -30px;
  }

  .experience-badge {
    top: 10px;
    left: 10px;
    width: 80px;
    height: 80px;
    padding: 10px;
  }

  .experience-badge .years {
    font-size: 24px;
  }

  .experience-badge .text {
    font-size: 10px;
  }

  .counter {
    font-size: 36px;
  }

  .stat-title {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .carousel-caption h2 {
    font-size: 24px;
  }

  .carousel-caption p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .btn {
    padding: 8px 20px;
    font-size: 12px;
  }

  .about-image .secondary-img {
    display: none;
  }

  .experience-badge {
    width: 70px;
    height: 70px;
  }

  .experience-badge .years {
    font-size: 20px;
  }

  .experience-badge .text {
    font-size: 9px;
  }
}


    .product-img {
      max-width: 100%;
      border-radius: 10px;
    }

    .price {
      font-size: 24px;
      font-weight: bold;
      color: var(--main-color);
    }

    .offer-box {
      background-color: #f9f0f6;
      padding: 10px;
      border-radius: 5px;
      font-size: 14px;
      border-left: 4px solid var(--main-color);
    }

    .btn-custom {
      background-color: var(--main-color);
      color: white;
      border: none;
    }

    .btn-custom:hover {
      background-color: #b06e9e;
    }

    h5, h6 {
      color: var(--main-color);
    }

    .table th {
      background-color: #f9f0f6;
      color: #333;
    }

    .breadcrumb-item+.breadcrumb-item::before{
      color: #fff;
    }
/* 
.topbar-left {
  display: flex;       
  align-items: center;  
  gap: 20px;            
} */


@media (max-width: 575.98px) {
  .email-link { display: none; }
}


.social-circle a {
  width: 40px;
  height: 40px;
  background-color: w;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s, transform 0.3s;
}

.social-circle a:last-child {
  margin-right: 0;
}

.social-circle a:hover {
  background-color: #ff69b4; /* darker pink */
  transform: scale(1.1);
}

.social-circle a {
    width: 30px;
    height: 30px;
    background-color: #ad1457;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s, transform 0.3s;
}

.social-circle a:last-child {
  margin-right: 0;
}

.social-circle a:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}

@media (max-width: 575.98px) {
  .social-circle a {
    width: 25px;
    height: 25px;
    font-size: 16px;
    margin-right: 8px;
  }
}

.contact-section {
  padding: 50px 15px;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.contact-form, .contact-map {
  flex: 1 1 45%;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

/* Form styling */
.contact-form h2 {
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

button[type="submit"] {
  padding: 10px 20px;
  background-color: #d987be;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #ad1457;
}

/* Map height */
.contact-map {
  height: 400px;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-map {
    flex: 1 1 100%;
  }
}


/* blogstyle */
 .hero-section {
      background: url('images/yoga-banner.jpg') no-repeat center center/cover;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    }

    .hero-section h1 {
      font-size: 48px;
      font-weight: 700;
    }

    .blog-title {
      font-size: 32px;
      font-weight: 600;
      color: #333;
    }

    .blog-card {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-card img {
      height: 200px;
      object-fit: cover;
    }

    .blog-content h5 {
      font-weight: 600;
      margin-top: 10px;
    }

    .blog-content p {
      color: #555;
    }

  .read-more {
    color: #ad1457;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .read-more:hover {
    color: #b8749f;
    text-decoration: underline;
    transform: translateX(2px);
  }

/* blog_pagesection */
/* ——  Palette & font quick-set  —— */


/* ——  Layout wrapper  —— */
.single-wrap{padding:60px 20px;}
.single-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  gap:48px;
  grid-template-columns:1fr;          /* mobile */
}
@media(min-width:992px){
  .single-grid{grid-template-columns:2fr 3fr 2fr;} /* img–article–sidebar */
}

/* ——  Featured image  —— */
.single-image img{
  height: 230px!important;
  width:100%;
  border-radius:var(--card-radius);
  box-shadow:var(--shadow-lg); 
}

    .yoga-filter-btn {
      border-radius: 30px;
      padding: 8px 20px;
      margin: 5px;
      font-weight: 500;
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
      background-color: white;
      transition: all 0.3s ease;
    }

    .yoga-filter-btn:hover,
    .yoga-filter-btn.active {
      background-color: var(--primary-color);
      color: white;
    }


    .yoga-section-title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5rem;
      font-weight: bold;
      color: var(--primary-color);
    }

    .d-none {
      display: none !important;
    }

    .yoga-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.yoga-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.yoga-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ad1457;
}

.yoga-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}


/* stats section */
 .stat-card {
      background-color: #f9f9f9;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .counter {
      font-size: 2rem;
      font-weight: bold;
    }
    .stat-title {
      font-size: 1rem;
      color: #555;
    }
/* stats section */


/* yogatrainer section start */
 
    .zen-header {
      background: linear-gradient(to right, #ad1457, #e0aaff);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }

    .zen-header h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .zen-header p {
      font-size: 1.25rem;
      margin-top: 10px;
    }

    .zen-section {
      padding: 60px 0;
    }

    .zen-card {
      background: linear-gradient(to bottom right, #ffffff, #fdf0f9);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 8px 24px rgba(210, 145, 188, 0.2);
      position: relative;
      border: 1px solid #e8c7db;
    }

    .zen-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 32px rgba(210, 145, 188, 0.4);
    }

    .zen-icon {
      width: 70px;
      height: 70px;
      background: #ad1457;
      color: #fff;
      font-size: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 auto 20px;
    }

    .zen-card h3 {
      font-size: 1.6rem;
      margin-bottom: 15px;
      color: #b15d94;
    }

    .zen-card p {
      font-size: 1rem;
      color: #555;
    }

    .zen-btn {
      display: inline-block;
      margin-top: 25px;
      padding: 12px 28px;
      font-size: 1rem;
      background: #ad1457;
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .zen-btn:hover {
      background: #f2a0dc;
    }

/* yogatrainer end */

