/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Bootstrap Customization */
:root {
  --bs-primary: #ffaa00;
  --bs-primary-rgb: 255, 170, 0;
  --bs-secondary: #2d334a;
  --bs-link-color: #ffaa00;
  --bs-link-hover-color: #ff8800;
}

.container {
  max-width: 1200px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Override Bootstrap navbar for custom styling */
.navbar {
  padding: 15px 0 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky !important;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 15px !important;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 15px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef1220, #ff8800);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
  color: #f8605a !important;
  font-weight: 600;
}

/* Adjust grid gaps to work with Bootstrap */
.row.g-4 > * {
  margin-bottom: 1.5rem;
}

/* Make custom cards work with Bootstrap columns */
.cards-grid,
.astrologers-grid,
.gemstones-grid,
.courses-grid {
  display: block;
}

/* --- TOP BAR --- */
.top-bar {
  background: linear-gradient(352deg, #ffa95b 0%, #f7555a 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-info span {
  margin-right: 10px;
  opacity: 0.95;
}

.right-icons a {
  margin-left: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.right-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* --- HEADER / NAVIGATION --- */
header {
  background-color: #fff;
  padding: 0px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px; /* Adjusts the logo height to fit the navbar */
  width: auto; /* Maintains aspect ratio */
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Styling the text to match the Logo.png font */
.logo-text-white {
  font-family: "Great Vibes", cursive; /* Matches the logo font */
  font-size: 2.2rem; /* Slightly larger for script font readability */
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 10px;
}

nav a {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  /* height: 2px; */
  /* background: linear-gradient(90deg, #ffaa00, #ff8800); */
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: #ffaa00;
  font-weight: 600;
}

/* --- HERO SECTION --- */
.hero-section {
  /* Replace with your file name: top banner girl.jpg */
  background-image: url("images/top-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh; /* Adjust height based on your image aspect ratio */
  position: relative;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  color: #fff;
  padding-top: 50px; /* Push content down slightly if needed */
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 700;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-content .highlight {
  color: #ffaa00; /* Orange/Gold color */
  font-weight: 800;
  display: inline-block;
  text-shadow: 2px 4px 12px rgba(255, 170, 0, 0.4);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 170, 0, 0.5);
  background: linear-gradient(135deg, #ff8800 0%, #ffaa00 100%);
}

/* Slider Dots */
.slider-dots {
  margin-top: 80px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
  width: 12px;
  height: 12px;
}

/* --- INFO CARDS SECTION --- */
.info-cards-section {
  /* Replace with your file name: 2nd bg.jpg */
  /* background-image: url('images/2nd\ bg.png'); */
  background-size: cover;
  background-position: center;
  padding: 60px 0 80px 0;
  background: #333355;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Glassmorphism Card Style */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 35px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.card-icon {
  margin-bottom: 24px;
  display: inline-block;
}

.card-icon img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card:hover .card-icon img {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-weight: 300;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.schedule {
  font-size: 0.75rem;
  color: #a0a0a0;
}

.schedule span {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 2px;
  color: #fff;
}

.card-btn {
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(123, 67, 151, 0.3);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 67, 151, 0.5);
  background: linear-gradient(135deg, #8b5aa7 0%, #ec3440 100%);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- UTILITIES FOR NEW SECTIONS --- */
.section-padding {
  padding: 50px 0;
}

.light-bg {
  background-color: #fcf3e4;
}

.highlight-text {
  color: #ff5722; /* Orange-red color */
}

.text-orange {
  color: #ffaa00;
}

.text-yellow {
  color: #ffc107;
}

.sub-heading {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

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

.view-all-btn {
  border: 1px solid #ccc;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: 0.3s;
  background: #fff;
}

.view-all-btn:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* --- ASTROLOGERS SECTION --- */
.astrologers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.astro-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 18px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.astro-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 30px rgba(0,0,0,0.12); */
  border-color: #e0e0e0;
}

.astro-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333355;
}

.astro-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.astro-info p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 3px;
}

.astro-actions {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.astro-actions button {
  border: none;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.btn-call {
  background-color: #25d366; /* WhatsApp/Call Green */
}

.btn-chat {
  background-color: #2d334a; /* Dark Blue */
}

.rating {
  font-size: 0.8rem;
  color: #ffaa00;
  font-weight: 600;
}

/* --- GEMSTONES SECTION --- */
.gemstones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gem-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #e0e0e0;
}

.badge-off {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff5722;
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 10px;
}

.gem-img-box img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

.gem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gem-desc {
  font-size: 0.8rem;
  color: #888;
  height: 40px; /* Fixed height for alignment */
  overflow: hidden;
  margin-bottom: 15px;
}

.price {
  font-size: 1.1rem;
  color: #ff5722;
  font-weight: 600;
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.9rem;
  margin-right: 5px;
}

.gem-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon-btn {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  color: #555;
}

.buy-btn {
  background: none;
  border: 2px solid #333;
  padding: 0 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  height: 40px;
}

.buy-btn:hover {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- SALE BANNER --- */
.sale-banner-wrapper {
  margin: 30px 0;
}

.sale-banner-placeholder {
  /* Creating a placeholder gradient since image was missing */
  background-image: url("images/20%\ super\ sale\ banner.png ");
  height: 180px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sale-banner-placeholder h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #ffeb3b;
  font-weight: 800;
  font-style: italic;
}

.sale-banner-placeholder button {
  background: red;
  color: white;
  border: none;
  padding: 8px 20px;
  font-weight: bold;
  cursor: pointer;
}

/* --- COURSES SECTION --- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.course-card {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.course-body {
  padding: 15px;
  background: #fff;
}

.stars {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.course-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.instructor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #555;
}

.inst-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.course-price {
  display: flex;
  flex-direction: column;
}

.course-price span {
  font-weight: 700;
  color: #333;
}

.course-price small {
  font-size: 0.7rem;
  color: #888;
}

.enroll-btn {
  background-color: #3d3361;
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.icon-btn-outline {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer;
}

/* --- STATS BAR --- */
.stats-bar {
  background-color: #fff8e1; /* Light beige/yellowish */
  padding: 30px 0;
  border-top: 1px solid #eee;
  /* margin-bottom: 50px; */
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item i {
  font-size: 2rem;
  color: #ffaa00; /* Use logo orange or similar */
}

.stat-item span {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.3;
}

/* --- KUNDALI BANNER --- */
.kundali-banner {
  /* Background Image Path */
  background-image: url("images/check\ your\ kundali\ banner.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
}

/* Dark overlay for readability */
.kundali-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0,0,0,0.6); */
}

.kundali-content {
  position: relative; /* Brings text above overlay */
  z-index: 1;
}

.kundali-content h2 {
  color: #fff;
  font-size: 2.2rem;
  max-width: 800px;
}

.check-now-btn {
  background-color: #ff5722;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
  transition: transform 0.3s;
}

.check-now-btn:hover {
  transform: translateY(-3px);
  background-color: #ff7043;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .kundali-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .kundali-content h2 {
    font-size: 1.5rem;
  }
}

/* --- HOROSCOPE SECTION --- */
.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-center h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header-center p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.horoscope-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  border: none;
  background: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 15px;
  color: #333;
}

.tab-btn.active {
  background-color: #ff5722;
  color: #fff;
  border-radius: 5px;
}

/* Zodiac Grid */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns */
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.zodiac-item {
  cursor: pointer;
  transition: transform 0.3s;
}

.zodiac-item:hover {
  transform: translateY(-5px);
}

.zodiac-item img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.zodiac-item span {
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}

.zodiac-item.active span {
  color: #ff5722;
  font-weight: 700;
}

/* Prediction Box */
.prediction-box {
  margin-top: 20px;
}

.prediction-date {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.date-nav {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888;
}

.date-nav span {
  margin-right: 15px;
  cursor: pointer;
}

.date-nav span.active {
  color: #ff5722;
  font-weight: 600;
  /* text-decoration: underline; */
}

.prediction-content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.prediction-categories {
  list-style: none;
  min-width: 150px;
  border-right: 2px solid #ddd;
  padding-right: 20px;
}

.prediction-categories li {
  padding: 8px 0;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  font-size: 0.95rem;
}

.prediction-categories li.active {
  color: #333;
  /* Simulate the black bar on the left usually seen in design or bolding */
  font-weight: 800;
}

.prediction-text {
  flex: 1;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- DONATION SECTION --- */
.donation-section {
  padding: 50px 0;
}

.donation-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  position: relative;
  overflow: hidden;
}

/* Overlay darker gradient on left side to make text pop against background */
.donation-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(to right, rgba(20, 10, 50, 0.8), transparent);
}

.donation-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

.donation-content h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 500;
}

.donate-btn {
  background-color: #7b61ff; /* Purple color from image */
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.donate-btn:hover {
  background-color: #6248e6;
}

/* --- ABOUT ME SECTION --- */
.about-me-section {
  padding-bottom: 80px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.mt-2 {
  margin-top: 15px;
}

.read-more-btn {
  display: inline-block;
  background-color: #9c89e8; /* Light purple */
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 10px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #7b61ff;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.rotating-wheel {
  width: 100%;
  max-width: 450px;
  animation: rotate 60s linear infinite; /* Slow rotation effect */
}

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

/* --- RESPONSIVE SECTION 3 --- */
@media (max-width: 992px) {
  .zodiac-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-container {
    flex-direction: column-reverse; /* Text on bottom for mobile */
    text-align: center;
  }

  .about-image {
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .zodiac-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prediction-content-wrapper {
    flex-direction: column;
  }

  .prediction-categories {
    display: flex;
    overflow-x: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    gap: 20px;
    padding-bottom: 10px;
  }

  .donation-banner {
    padding: 30px;
    text-align: center;
    justify-content: center;
  }

  .donation-banner::before {
    width: 100%;
    background: rgba(20, 10, 50, 0.6);
  }

  .donation-content h2 {
    font-size: 1.5rem;
  }
}

/* --- GALLERY SECTION --- */
.gallery-section {
  padding-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-card {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.video-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SUBSCRIBE BANNER --- */
.subscribe-section {
  padding: 40px 0;
}

.subscribe-box {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.subscribe-content {
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
}

.subscribe-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.subscribe-form {
  display: flex;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 5px;
  position: relative;
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form button {
  background-color: #7b61ff; /* Purple */
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background-color: #6248e6;
}

/* --- FEATURES BAR --- */
.features-bar {
  padding: 50px 0;
  background-color: #fff;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.feat-icon {
  width: 70px;
  height: 70px;
  background-color: #fff8e1; /* Light yellow/gold bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.8rem;
  border: 1px solid #ffe082;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3d3361;
}

/* --- FOOTER --- */
.main-footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* --- FOOTER LOGO UPDATE --- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Filter to turn the dark blue logo icon into white for the footer */
.footer-logo-icon {
  height: 40px;
  width: auto;
  /* filter: brightness(0) invert(1);  */
}

.brand-col h4 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Google Play Badge Style */
.play-store-btn {
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 1px solid #555;
  padding: 5px 15px;
  border-radius: 8px;
  gap: 10px;
  margin-bottom: 25px;
  cursor: pointer;
  width: 170px;
}

.play-store-btn i {
  font-size: 1.5rem;
  color: #fff; /* Colorful logo usually, simply white here for icon */
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text small {
  font-size: 0.6rem;
  text-transform: uppercase;
}

.store-text span {
  font-size: 1rem;
  font-weight: 600;
}

.social-links h4 {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #ff5722;
}

/* Footer Links & Contact */
.footer-heading {
  color: #ffaa00; /* Gold color */
  margin-bottom: 25px;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffaa00;
}

/* --- NEW PAGES STYLING --- */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2d334a 0%, #1e2530 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.15); */
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.features-list {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.feature-item i {
  color: #4caf50;
  font-size: 1.3rem;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.expertise-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.expertise-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.expertise-card p {
  color: #666;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffaa00;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
}

/* Consultation Page */
.consultation-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.consult-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.consult-card.featured {
  border-color: #ffaa00;
  transform: scale(1.05);
}

.badge-featured {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.consult-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.consult-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #fff;
}

.consult-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.consult-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.price-tag {
  font-size: 1.2rem;
  color: #ffaa00;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.step-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-item p {
  color: #666;
  line-height: 1.6;
}

/* Courses Page */
.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffaa00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.course-thumb {
  position: relative;
}

.course-info {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #666;
  flex-wrap: wrap;
}

.course-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.course-footer .price {
  font-size: 1.4rem;
  color: #333;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
}

.benefit-item i {
  font-size: 3rem;
  color: #ffaa00;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Products Page */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.product-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #666;
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.per-carat {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

/* Blog Page */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.blog-post {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.post-image {
  position: relative;
}

.post-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffaa00;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.post-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffaa00;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.page-link {
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #ffaa00;
  padding-bottom: 10px;
}

.search-box {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
}

.search-box button {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 0 25px;
  cursor: pointer;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #ffaa00;
}

.category-list span {
  color: #999;
  font-size: 0.9rem;
}

.popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-post img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.popular-content h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.post-date {
  font-size: 0.8rem;
  color: #888;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: all 0.3s ease;
}

.tags-cloud a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: #666;
  line-height: 1.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffaa00;
}

.submit-btn {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.map-section {
  margin-top: 60px;
}

.map-placeholder iframe {
  border-radius: 15px;
}

/* Donation Page */
.donation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.donation-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.donation-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.donation-list {
  list-style: none;
  margin-bottom: 30px;
}

.donation-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.donation-list i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 3px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
}

.stat-item h4 {
  font-size: 2rem;
  color: #ffaa00;
  margin-bottom: 8px;
}

.stat-item p {
  color: #666;
  font-size: 0.9rem;
}

.donation-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.donation-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.donation-amounts {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.amount-btn {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn.active,
.amount-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.donation-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #888;
}

.donors-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.donor-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.donor-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.donor-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.donor-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.donor-date {
  font-size: 0.8rem;
  color: #999;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffaa00;
}

.footer-col p {
  color: #d0d0d0;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #d0d0d0;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffaa00;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #d0d0d0;
}

/* Text Center Utility */
.text-center {
  text-align: center;
}

.text-center h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Responsive for new pages */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid,
  .donation-content,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .consultation-types {
    grid-template-columns: 1fr;
  }

  .consult-card.featured {
    transform: scale(1);
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .products-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
  }
}

/* --- COURSE DETAILS PAGE --- */

.course-hero {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  padding: 40px 0 60px;
  color: #fff;
}

.course-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.course-breadcrumb a {
  color: #fff;
  transition: color 0.3s;
}

.course-breadcrumb a:hover {
  color: #ffaa00;
}

.course-hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.course-category-badge {
  display: inline-block;
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 170, 0, 0.3);
}

.course-hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.course-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 30px;
}

.course-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.meta-item i {
  color: #ffaa00;
}

.course-instructor-mini {
  display: flex;
  align-items: center;
  gap: 20px;
}

.course-instructor-mini img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.course-instructor-mini .created-by {
  font-size: 0.85rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 5px;
}

.course-instructor-mini h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.course-instructor-mini p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.course-preview-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.course-preview-card img {
  width: 100%;
  display: block;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-preview-card:hover .preview-overlay {
  opacity: 1;
}

.play-preview-btn {
  background: rgba(255, 170, 0, 0.95);
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.play-preview-btn:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

.course-price-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

.original-price {
  font-size: 1.3rem;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background: #4caf50;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-notice {
  color: #ff5722;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.enroll-now-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.enroll-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.add-wishlist-btn {
  width: 100%;
  background: #fff;
  color: #333;
  border: 2px solid #e0e0e0;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-wishlist-btn:hover {
  border-color: #ffaa00;
  color: #ffaa00;
}

.course-includes h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.course-includes ul {
  list-style: none;
}

.course-includes ul li {
  padding: 10px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-includes ul li:last-child {
  border-bottom: none;
}

.course-includes ul li i {
  color: #ffaa00;
  width: 20px;
}

/* Course Details Section */
.course-details-section {
  padding: 60px 0;
}

.course-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 50px;
}

.content-block {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #333;
}

.section-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Learning Outcomes */
.learning-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.outcome-item i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.outcome-item span {
  color: #555;
  line-height: 1.6;
}

/* Curriculum Accordion */
.curriculum-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.curriculum-section {
  border-bottom: 1px solid #e0e0e0;
}

.curriculum-section:last-child {
  border-bottom: none;
}

.section-header-acc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #f9f9f9;
  transition: background 0.3s ease;
}

.section-header-acc:hover {
  background: #f0f0f0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title i {
  color: #666;
  font-size: 0.9rem;
}

.section-title h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.section-info {
  color: #666;
  font-size: 0.9rem;
}

.section-content {
  padding: 0 25px 15px 55px;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.lesson-item:last-child {
  border-bottom: none;
}

.lesson-item i {
  color: #ffaa00;
  font-size: 1.1rem;
}

.lesson-title {
  flex: 1;
  color: #555;
}

.lesson-duration {
  color: #888;
  font-size: 0.85rem;
}

/* Requirements */
.requirements-list {
  list-style: none;
}

.requirements-list li {
  padding: 12px 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.requirements-list li i {
  color: #4caf50;
  margin-top: 4px;
}

/* Course Description */
.course-description {
  color: #555;
  line-height: 1.8;
}

.course-description h3 {
  font-size: 1.3rem;
  color: #333;
  margin: 25px 0 15px;
}

.course-description ul {
  margin: 15px 0;
  padding-left: 25px;
}

.course-description ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Instructor Detail */
.instructor-detail {
  display: flex;
  gap: 30px;
}

.instructor-detail img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
  flex-shrink: 0;
}

.instructor-info h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 5px;
}

.instructor-title {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.instructor-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.95rem;
}

.instructor-stats .stat i {
  color: #ffaa00;
}

.instructor-bio {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Reviews */
.reviews-summary {
  margin-bottom: 40px;
}

.rating-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
}

.average-rating {
  text-align: center;
}

.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stars-large {
  color: #ffaa00;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.average-rating p {
  color: #666;
  font-size: 0.95rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.rating-bar > span:first-child {
  width: 60px;
  color: #666;
}

.bar {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #ffaa00, #ff8800);
}

.rating-bar > span:last-child {
  width: 40px;
  text-align: right;
  color: #666;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-item {
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-meta .stars {
  color: #ffaa00;
  font-size: 0.9rem;
}

.review-date {
  color: #888;
  font-size: 0.85rem;
}

.review-text {
  color: #555;
  line-height: 1.7;
}

/* Sidebar */
.course-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ffaa00;
}

.features-list-sidebar {
  list-style: none;
}

.features-list-sidebar li {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.features-list-sidebar li:last-child {
  border-bottom: none;
}

.features-list-sidebar i {
  color: #ffaa00;
  font-size: 1.3rem;
  width: 25px;
}

.features-list-sidebar strong {
  display: block;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.features-list-sidebar span {
  color: #666;
  font-size: 0.9rem;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.linkedin {
  background: #0077b5;
}

.section-title-center {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

/* Responsive Course Details */
@media (max-width: 1024px) {
  .course-hero-content,
  .course-layout {
    grid-template-columns: 1fr;
  }

  .course-hero-left h1 {
    font-size: 2.2rem;
  }

  .learning-outcomes {
    grid-template-columns: 1fr;
  }

  .instructor-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .instructor-stats {
    justify-content: center;
  }

  .rating-overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .course-meta-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .section-content {
    padding-left: 25px;
  }
}

.contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #e0e0e0;
  font-size: 0.95rem;
  align-items: flex-start;
}

.contact-list i {
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Copyright Bar */
.copyright-bar {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: span 2;
    text-align: center;
  }
  .footer-logo,
  .social-icons {
    justify-content: center;
  }
  .play-store-btn {
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-col {
    grid-column: span 1;
  }

  .contact-list li {
    justify-content: center;
  }

  .subscribe-form {
    flex-direction: column;
    border: none;
    gap: 10px;
  }

  .subscribe-form input {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-align: center;
  }

  .subscribe-form button {
    width: 100%;
  }
}

.astro-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.astro-card:hover {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
}
.gem-card {
  transition: all 0.4s ease;
}
.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.zodiac-item {
  transition: all 0.3s ease;
}
.zodiac-item:hover {
  transform: scale(1.1);
}
.rotating-wheel {
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.subscribe-form button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slideShow 15s infinite;
  opacity: 0;
}

.slider img:nth-child(1) {
  animation-delay: 0s;
}
.slider img:nth-child(2) {
  animation-delay: 5s;
}
.slider img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.5); */
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeUp 1.2s ease;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 30px;
  background: #ff9800;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #f41f28;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-item {
  position: relative;
  /* height: 90vh; */
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(0,0,0,0.4); */
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Bootstrap Customization */
:root {
  --bs-primary: #ffaa00;
  --bs-primary-rgb: 255, 170, 0;
  --bs-secondary: #2d334a;
  --bs-link-color: #ffaa00;
  --bs-link-hover-color: #ff8800;
}

.container {
  max-width: 1200px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Override Bootstrap navbar for custom styling */
.navbar {
  padding: 15px 0 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky !important;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 15px !important;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 15px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef1220, #ff8800);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
  color: #f8605a !important;
  font-weight: 600;
}

/* Adjust grid gaps to work with Bootstrap */
.row.g-4 > * {
  margin-bottom: 1.5rem;
}

/* Make custom cards work with Bootstrap columns */
.cards-grid,
.astrologers-grid,
.gemstones-grid,
.courses-grid {
  display: block;
}

/* --- TOP BAR --- */
.top-bar {
  background: linear-gradient(352deg, #ffa95b 0%, #f7555a 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-info span {
  margin-right: 10px;
  opacity: 0.95;
}

.right-icons a {
  margin-left: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.right-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* --- HEADER / NAVIGATION --- */
header {
  background-color: #fff;
  padding: 0px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px; /* Adjusts the logo height to fit the navbar */
  width: auto; /* Maintains aspect ratio */
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Styling the text to match the Logo.png font */
.logo-text-white {
  font-family: "Great Vibes", cursive; /* Matches the logo font */
  font-size: 2.2rem; /* Slightly larger for script font readability */
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 10px;
}

nav a {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  /* height: 2px; */
  /* background: linear-gradient(90deg, #ffaa00, #ff8800); */
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: #ffaa00;
  font-weight: 600;
}

/* --- HERO SECTION --- */
.hero-section {
  /* Replace with your file name: top banner girl.jpg */
  background-image: url("images/top-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh; /* Adjust height based on your image aspect ratio */
  position: relative;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  color: #fff;
  padding-top: 50px; /* Push content down slightly if needed */
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 700;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-content .highlight {
  color: #ffaa00; /* Orange/Gold color */
  font-weight: 800;
  display: inline-block;
  text-shadow: 2px 4px 12px rgba(255, 170, 0, 0.4);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 170, 0, 0.5);
  background: linear-gradient(135deg, #ff8800 0%, #ffaa00 100%);
}

/* Slider Dots */
.slider-dots {
  margin-top: 80px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
  width: 12px;
  height: 12px;
}

/* --- INFO CARDS SECTION --- */
.info-cards-section {
  /* Replace with your file name: 2nd bg.jpg */
  /* background-image: url('images/2nd\ bg.png'); */
  background-size: cover;
  background-position: center;
  padding: 60px 0 80px 0;
  background: #333355;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Glassmorphism Card Style */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 35px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.card-icon {
  margin-bottom: 24px;
  display: inline-block;
}

.card-icon img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card:hover .card-icon img {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-weight: 300;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.schedule {
  font-size: 0.75rem;
  color: #a0a0a0;
}

.schedule span {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 2px;
  color: #fff;
}

.card-btn {
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(123, 67, 151, 0.3);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 67, 151, 0.5);
  background: linear-gradient(135deg, #8b5aa7 0%, #ec3440 100%);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- UTILITIES FOR NEW SECTIONS --- */
.section-padding {
  padding: 50px 0;
}

.light-bg {
  background-color: #fcf3e4;
}

.highlight-text {
  color: #ff5722; /* Orange-red color */
}

.text-orange {
  color: #ffaa00;
}

.text-yellow {
  color: #ffc107;
}

.sub-heading {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

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

.view-all-btn {
  border: 1px solid #ccc;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: 0.3s;
  background: #fff;
}

.view-all-btn:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* --- ASTROLOGERS SECTION --- */
.astrologers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.astro-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 18px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.astro-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 30px rgba(0,0,0,0.12); */
  border-color: #e0e0e0;
}

.astro-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333355;
}

.astro-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.astro-info p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 3px;
}

.astro-actions {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.astro-actions button {
  border: none;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.btn-call {
  background-color: #25d366; /* WhatsApp/Call Green */
}

.btn-chat {
  background-color: #2d334a; /* Dark Blue */
}

.rating {
  font-size: 0.8rem;
  color: #000000;
  font-weight: 600;
}

/* --- GEMSTONES SECTION --- */
.gemstones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gem-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #e0e0e0;
}

.badge-off {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff5722;
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 10px;
}

.gem-img-box img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

.gem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gem-desc {
  font-size: 0.8rem;
  color: #888;
  height: 40px; /* Fixed height for alignment */
  overflow: hidden;
  margin-bottom: 15px;
}

.price {
  font-size: 1.1rem;
  color: #ff5722;
  font-weight: 600;
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.9rem;
  margin-right: 5px;
}

.gem-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon-btn {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  color: #555;
}

.buy-btn {
  background: none;
  border: 2px solid #333;
  padding: 0 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  height: 40px;
}

.buy-btn:hover {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- SALE BANNER --- */
.sale-banner-wrapper {
  margin: 0px 0;
}

.sale-banner-placeholder {
  /* Creating a placeholder gradient since image was missing */
  background-image: url("images/20%\ super\ sale\ banner.png ");
  height: 270px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}

.sale-banner-placeholder h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #ffeb3b;
  font-weight: 800;
  font-style: italic;
}

.sale-banner-placeholder button {
  background: red;
  color: white;
  border: none;
  padding: 8px 20px;
  font-weight: bold;
  cursor: pointer;
}

/* --- COURSES SECTION --- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.course-card {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.course-body {
  padding: 15px;
  background: #fff;
}

.stars {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.course-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.instructor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #555;
}

.inst-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.course-price {
  display: flex;
  flex-direction: column;
}

.course-price span {
  font-weight: 700;
  color: #333;
}

.course-price small {
  font-size: 0.7rem;
  color: #888;
}

.enroll-btn {
  background-color: #3d3361;
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.icon-btn-outline {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer;
}

/* --- STATS BAR --- */
.stats-bar {
  background-color: #fff8e1; /* Light beige/yellowish */
  padding: 30px 0;
  border-top: 1px solid #eee;
  /* margin-bottom: 50px; */
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item i {
  font-size: 2rem;
  color: #ffaa00; /* Use logo orange or similar */
}

.stat-item span {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.3;
  text-align: left;
}

/* --- KUNDALI BANNER --- */
.kundali-banner {
  /* Background Image Path */
  background-image: url("images/check_your_kundali_banner.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  position: relative;
}

/* Dark overlay for readability */
.kundali-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgb(0 0 0 / 26%); */
}

.kundali-content {
  position: relative; /* Brings text above overlay */
  z-index: 1;
}

.kundali-content h2 {
  color: #fff;
  font-size: 2.2rem;
  max-width: 800px;
}

.check-now-btn {
  background-color: #ff5722;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
  transition: transform 0.3s;
}

.check-now-btn:hover {
  transform: translateY(-3px);
  background-color: #ff7043;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .kundali-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .kundali-content h2 {
    font-size: 1.5rem;
  }
}

/* --- HOROSCOPE SECTION --- */
.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-center h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header-center p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.horoscope-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  border: none;
  background: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 15px;
  color: #333;
}

.tab-btn.active {
  background-color: #ff5722;
  color: #fff;
  border-radius: 5px;
}

/* Zodiac Grid */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns */
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.zodiac-item {
  cursor: pointer;
  transition: transform 0.3s;
}

.zodiac-item:hover {
  transform: translateY(-5px);
}

.zodiac-item img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.zodiac-item span {
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}

.zodiac-item.active span {
  color: #ff5722;
  font-weight: 700;
}

/* Prediction Box */
.prediction-box {
  margin-top: 20px;
}

.prediction-date {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.date-nav {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888;
}

.date-nav span {
  margin-right: 15px;
  cursor: pointer;
}

.date-nav span.active {
  color: #ff5722;
  font-weight: 600;
  /* text-decoration: underline; */
}

.prediction-content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.prediction-categories {
  list-style: none;
  min-width: 150px;
  border-right: 2px solid #ddd;
  padding-right: 20px;
}

.prediction-categories li {
  padding: 8px 0;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  font-size: 0.95rem;
}

.prediction-categories li.active {
  color: #333;
  /* Simulate the black bar on the left usually seen in design or bolding */
  font-weight: 800;
}

.prediction-text {
  flex: 1;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- DONATION SECTION --- */
.donation-section {
  padding: 50px 0;
}

.donation-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  position: relative;
  overflow: hidden;
}

/* Overlay darker gradient on left side to make text pop against background */
.donation-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(to right, rgba(20, 10, 50, 0.8), transparent);
}

.donation-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

.donation-content h2 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 500;
}

.donate-btn {
  background-color: #7b61ff; /* Purple color from image */
  color: #fff;
  padding: 12px 0;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: background 0.3s;
  text-align: center;
  height: 50px;
}

.donate-btn:hover {
  background-color: #6248e6;
}

/* --- ABOUT ME SECTION --- */
.about-me-section {
  padding-bottom: 80px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.mt-2 {
  margin-top: 15px;
}

.read-more-btn {
  display: inline-block;
  background-color: #9c89e8; /* Light purple */
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 10px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #7b61ff;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.rotating-wheel {
  width: 100%;
  max-width: 450px;
  animation: rotate 60s linear infinite; /* Slow rotation effect */
}

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

/* --- RESPONSIVE SECTION 3 --- */
@media (max-width: 992px) {
  .zodiac-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-container {
    flex-direction: column-reverse; /* Text on bottom for mobile */
    text-align: center;
  }

  .about-image {
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .zodiac-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prediction-content-wrapper {
    flex-direction: column;
  }

  .prediction-categories {
    display: flex;
    overflow-x: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    gap: 20px;
    padding-bottom: 10px;
  }

  .donation-banner {
    padding: 30px;
    text-align: center;
    justify-content: center;
  }

  .donation-banner::before {
    width: 100%;
    background: rgba(20, 10, 50, 0.6);
  }

  .donation-content h2 {
    font-size: 1.5rem;
  }
}

/* --- GALLERY SECTION --- */
.gallery-section {
  padding-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-card {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.video-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SUBSCRIBE BANNER --- */
.subscribe-section {
  padding: 40px 0;
}

.subscribe-box {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.subscribe-content {
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
}

.subscribe-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.subscribe-form {
  display: flex;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 5px;
  position: relative;
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form button {
  background-color: #7b61ff; /* Purple */
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background-color: #6248e6;
}

/* --- FEATURES BAR --- */
.features-bar {
  padding: 50px 0;
  background-color: #fff;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.feat-icon {
  width: 70px;
  height: 70px;
  background-color: #fff8e1; /* Light yellow/gold bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.8rem;
  border: 1px solid #ffe082;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3d3361;
}

/* --- FOOTER --- */
.main-footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* --- FOOTER LOGO UPDATE --- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Filter to turn the dark blue logo icon into white for the footer */
.footer-logo-icon {
  height: 40px;
  width: auto;
  /* filter: brightness(0) invert(1);  */
}

.brand-col h4 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Google Play Badge Style */
.play-store-btn {
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 1px solid #555;
  padding: 5px 15px;
  border-radius: 8px;
  gap: 10px;
  margin-bottom: 25px;
  cursor: pointer;
  width: 170px;
}

.play-store-btn i {
  font-size: 1.5rem;
  color: #fff; /* Colorful logo usually, simply white here for icon */
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text small {
  font-size: 0.6rem;
  text-transform: uppercase;
}

.store-text span {
  font-size: 1rem;
  font-weight: 600;
}

.social-links h4 {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #ff5722;
}

/* Footer Links & Contact */
.footer-heading {
  color: #ffaa00; /* Gold color */
  margin-bottom: 25px;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffaa00;
}

/* --- NEW PAGES STYLING --- */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2d334a 0%, #1e2530 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.15); */
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.features-list {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.feature-item i {
  color: #4caf50;
  font-size: 1.3rem;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.expertise-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.expertise-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.expertise-card p {
  color: #666;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffaa00;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
}

/* Consultation Page */
.consultation-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.consult-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.consult-card.featured {
  border-color: #ffaa00;
  transform: scale(1.05);
}

.badge-featured {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.consult-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.consult-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #fff;
}

.consult-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.consult-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.price-tag {
  font-size: 1.2rem;
  color: #ffaa00;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.step-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-item p {
  color: #666;
  line-height: 1.6;
}

/* Courses Page */
.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffaa00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.course-thumb {
  position: relative;
}

.course-info {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #666;
  flex-wrap: wrap;
}

.course-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.course-footer .price {
  font-size: 1.4rem;
  color: #333;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
}

.benefit-item i {
  font-size: 3rem;
  color: #ffaa00;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Products Page */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.product-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #666;
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.per-carat {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

/* Blog Page */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.blog-post {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.post-image {
  position: relative;
}

.post-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffaa00;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.post-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffaa00;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.page-link {
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #ffaa00;
  padding-bottom: 10px;
}

.search-box {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
}

.search-box button {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 0 25px;
  cursor: pointer;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #ffaa00;
}

.category-list span {
  color: #999;
  font-size: 0.9rem;
}

.popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-post img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.popular-content h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.post-date {
  font-size: 0.8rem;
  color: #888;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: all 0.3s ease;
}

.tags-cloud a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: #666;
  line-height: 1.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffaa00;
}

.submit-btn {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.map-section {
  margin-top: 60px;
}

.map-placeholder iframe {
  border-radius: 15px;
}

/* Donation Page */
.donation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 50px;
}

.donation-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.donation-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.donation-list {
  list-style: none;
  margin-bottom: 30px;
}

.donation-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.donation-list i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 3px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #3d3361;
}

.stat-item h4 {
  font-size: 2rem;
  color: #ffaa00;
  margin-bottom: 8px;
}

.stat-item p {
  color: #666;
  font-size: 0.9rem;
}

.donation-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.donation-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.donation-amounts {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.amount-btn {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn.active,
.amount-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.donation-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #888;
}

.donors-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.donor-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.donor-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.donor-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.donor-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.donor-date {
  font-size: 0.8rem;
  color: #999;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffaa00;
}

.footer-col p {
  color: #d0d0d0;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #d0d0d0;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffaa00;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #d0d0d0;
}

/* Text Center Utility */
.text-center {
  text-align: center;
}

.text-center h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Responsive for new pages */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid,
  .donation-content,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .consultation-types {
    grid-template-columns: 1fr;
  }

  .consult-card.featured {
    transform: scale(1);
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .products-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
  }
}

/* --- COURSE DETAILS PAGE --- */

.course-hero {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  padding: 40px 0 60px;
  color: #fff;
}

.course-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.course-breadcrumb a {
  color: #fff;
  transition: color 0.3s;
}

.course-breadcrumb a:hover {
  color: #ffaa00;
}

.course-hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.course-category-badge {
  display: inline-block;
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 170, 0, 0.3);
}

.course-hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.course-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 30px;
}

.course-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.meta-item i {
  color: #ffaa00;
}

.course-instructor-mini {
  display: flex;
  align-items: center;
  gap: 20px;
}

.course-instructor-mini img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.course-instructor-mini .created-by {
  font-size: 0.85rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 5px;
}

.course-instructor-mini h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.course-instructor-mini p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.course-preview-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.course-preview-card img {
  width: 100%;
  display: block;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-preview-card:hover .preview-overlay {
  opacity: 1;
}

.play-preview-btn {
  background: rgba(255, 170, 0, 0.95);
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.play-preview-btn:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

.course-price-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

.original-price {
  font-size: 1.3rem;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background: #4caf50;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-notice {
  color: #ff5722;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.enroll-now-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.enroll-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.add-wishlist-btn {
  width: 100%;
  background: #fff;
  color: #333;
  border: 2px solid #e0e0e0;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-wishlist-btn:hover {
  border-color: #ffaa00;
  color: #ffaa00;
}

.course-includes h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.course-includes ul {
  list-style: none;
}

.course-includes ul li {
  padding: 10px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-includes ul li:last-child {
  border-bottom: none;
}

.course-includes ul li i {
  color: #ffaa00;
  width: 20px;
}

/* Course Details Section */
.course-details-section {
  padding: 60px 0;
}

.course-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 50px;
}

.content-block {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #333;
}

.section-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Learning Outcomes */
.learning-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.outcome-item i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.outcome-item span {
  color: #555;
  line-height: 1.6;
}

/* Curriculum Accordion */
.curriculum-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.curriculum-section {
  border-bottom: 1px solid #e0e0e0;
}

.curriculum-section:last-child {
  border-bottom: none;
}

.section-header-acc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #f9f9f9;
  transition: background 0.3s ease;
}

.section-header-acc:hover {
  background: #f0f0f0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title i {
  color: #666;
  font-size: 0.9rem;
}

.section-title h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.section-info {
  color: #666;
  font-size: 0.9rem;
}

.section-content {
  padding: 0 25px 15px 55px;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.lesson-item:last-child {
  border-bottom: none;
}

.lesson-item i {
  color: #ffaa00;
  font-size: 1.1rem;
}

.lesson-title {
  flex: 1;
  color: #555;
}

.lesson-duration {
  color: #888;
  font-size: 0.85rem;
}

/* Requirements */
.requirements-list {
  list-style: none;
}

.requirements-list li {
  padding: 12px 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.requirements-list li i {
  color: #4caf50;
  margin-top: 4px;
}

/* Course Description */
.course-description {
  color: #555;
  line-height: 1.8;
}

.course-description h3 {
  font-size: 1.3rem;
  color: #333;
  margin: 25px 0 15px;
}

.course-description ul {
  margin: 15px 0;
  padding-left: 25px;
}

.course-description ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Instructor Detail */
.instructor-detail {
  display: flex;
  gap: 30px;
}

.instructor-detail img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
  flex-shrink: 0;
}

.instructor-info h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 5px;
}

.instructor-title {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.instructor-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.95rem;
}

.instructor-stats .stat i {
  color: #ffaa00;
}

.instructor-bio {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Reviews */
.reviews-summary {
  margin-bottom: 40px;
}

.rating-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
}

.average-rating {
  text-align: center;
}

.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stars-large {
  color: #ffaa00;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.average-rating p {
  color: #666;
  font-size: 0.95rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.rating-bar > span:first-child {
  width: 60px;
  color: #666;
}

.bar {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #ffaa00, #ff8800);
}

.rating-bar > span:last-child {
  width: 40px;
  text-align: right;
  color: #666;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-item {
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-meta .stars {
  color: #ffaa00;
  font-size: 0.9rem;
}

.review-date {
  color: #888;
  font-size: 0.85rem;
}

.review-text {
  color: #555;
  line-height: 1.7;
}

/* Sidebar */
.course-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ffaa00;
}

.features-list-sidebar {
  list-style: none;
}

.features-list-sidebar li {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.features-list-sidebar li:last-child {
  border-bottom: none;
}

.features-list-sidebar i {
  color: #ffaa00;
  font-size: 1.3rem;
  width: 25px;
}

.features-list-sidebar strong {
  display: block;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.features-list-sidebar span {
  color: #666;
  font-size: 0.9rem;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.linkedin {
  background: #0077b5;
}

.section-title-center {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

/* Responsive Course Details */
@media (max-width: 1024px) {
  .course-hero-content,
  .course-layout {
    grid-template-columns: 1fr;
  }

  .course-hero-left h1 {
    font-size: 2.2rem;
  }

  .learning-outcomes {
    grid-template-columns: 1fr;
  }

  .instructor-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .instructor-stats {
    justify-content: center;
  }

  .rating-overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .course-meta-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .section-content {
    padding-left: 25px;
  }
}

.contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #e0e0e0;
  font-size: 0.95rem;
  align-items: flex-start;
}

.contact-list i {
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Copyright Bar */
.copyright-bar {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: span 2;
    text-align: center;
  }
  .footer-logo,
  .social-icons {
    justify-content: center;
  }
  .play-store-btn {
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-col {
    grid-column: span 1;
  }

  .contact-list li {
    justify-content: center;
  }

  .subscribe-form {
    flex-direction: column;
    border: none;
    gap: 10px;
  }

  .subscribe-form input {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-align: center;
  }

  .subscribe-form button {
    width: 100%;
  }
}

.astro-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.astro-card:hover {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
}
.gem-card {
  transition: all 0.4s ease;
}
.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.zodiac-item {
  transition: all 0.3s ease;
}
.zodiac-item:hover {
  transform: scale(1.1);
}
.rotating-wheel {
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.subscribe-form button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slideShow 15s infinite;
  opacity: 0;
}

.slider img:nth-child(1) {
  animation-delay: 0s;
}
.slider img:nth-child(2) {
  animation-delay: 5s;
}
.slider img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.5); */
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeUp 1.2s ease;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 30px;
  background: #ff9800;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #f41f28;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-item {
  position: relative;
  /* height: 90vh; */
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  /* background: rgba(0,0,0,0.4); */
  color: #fff;
  text-align: left;
  padding-left: 5%;
  padding-right: 50%;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-align: left;
  text-shadow: 2px 3px #00000052;
}

.banner-content p {
  font-size: 1.2rem;
  text-align: left;
}

.owl-stage-outer {
  margin-top: 20px;
  padding-top: 20px;
}

.rating i.fas.fa-star {
  color: #ff8800;
}

.courses-carousel .course-card {
  margin: 5px;
}

.courses-carousel .owl-nav button {
  position: absolute;
  top: 38%;
  width: 42px;
  height: 42px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.courses-carousel .owl-nav .owl-prev {
  left: -20px;
}

.courses-carousel .owl-nav .owl-next {
  right: -20px;
}

.courses-carousel .owl-nav span {
  font-size: 26px;
  color: #000;
}
.gemstones-carousel .item {
  padding: 5px;
}

.gemstones-carousel .owl-nav button {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.gemstones-carousel .owl-nav .owl-prev {
  left: -20px;
}

.gemstones-carousel .owl-nav .owl-next {
  right: -20px;
}

.gemstones-carousel .owl-nav span {
  font-size: 24px;
  color: #000;
}

.horoscope-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 30px;
  background: #f1f1f1;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: #6b4eff;
  color: #fff;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-bottom: 25px;
}

.zodiac-item {
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 0px 6px 0px #0000001f;
}

.zodiac-item.active,
.zodiac-item:hover {
  background: #ffffff;
  color: #fff;
  border: 1px solid #3d3361;
}

.zodiac-item img {
  width: 45px;
  margin-bottom: 6px;
}

.tab-content {
  display: none;
  font-size: 16px;
  line-height: 1.6;
}

.tab-content.active {
  display: block;
}

.date-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.date-nav span {
  cursor: pointer;
  opacity: 0.6;
}

.date-nav .active {
  opacity: 1;
  color: #6b4eff;
  /* border-bottom: 2px solid #6b4eff; */
}

.prediction-content-wrapper {
  display: flex;
  gap: 25px;
}

.prediction-categories {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 180px;
}

.prediction-categories li {
  /* padding: 12px 15px; */
  margin-bottom: 8px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  /* background: #f6f6f6; */
  transition: 0.3s;
}

.prediction-categories li.active,
.prediction-categories li:hover {
  /* background: #6b4eff; */
  color: #6b4eff;
}

.prediction-text {
  flex: 1;
  /* background: #fafafa; */
  padding: 20px;
  border-radius: 14px;
}

.tab-content {
  display: none;
  line-height: 1.7;
}

.tab-content.active {
  display: block;
}

.donation-banner {
  position: relative;
  padding: 80px 40px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  overflow: hidden;
}

.donation-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.55); */
}

.donation-content {
  position: relative;
  max-width: 700px;
  color: #fff;
}

.donation-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.donation-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 22px;
}

.donate-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #ffcc00;
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.donate-btn:hover {
  background: #ffd633;
}

.sale-banner-placeholder:after {
  content: "";
  position: absolute;
  background: #0000003b;
  width: 100%;
  height: 100%;
}

/* Top Bar */
.top-bar {
  background: #1b1b1b;
  color: #ccc;
  font-size: 13px;
  padding: 6px 0;
}

.top-bar i {
  color: #d4af37;
  margin-right: 6px;
}

.top-bar a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.top-bar a:hover {
  color: #d4af37;
}

.separator {
  margin: 0 10px;
  opacity: 0.6;
}

/* Header */
.main-header {
  background: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand img {
  height: 55px;
}

/* Navigation */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #222;
  padding: 12px 16px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #d4af37;
}

/* Icons */
.nav-icons a {
  color: #222;
  font-size: 16px;
  margin: 0 8px;
  transition: 0.3s;
}

.nav-icons a:hover {
  color: #d4af37;
}

/* CTA Button */
.header-btn {
  margin-left: 15px;
  /* padding: 8px 18px; */
  border-radius: 30px;
  font-size: 14px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  border: none;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35);
}

.header-btn:hover {
  background: linear-gradient(135deg, #b8962e, #d4af37);
}

.zodiac-section {
  padding: 70px 0;
  background: #faf8f4;
}

/* Card */
.zodiac-card {
  display: block;
  text-align: center;
  background: #fff;
  padding: 30px 15px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

/* Icon */
.zodiac-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5e6b8, #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zodiac-icon img {
  width: 38px;
  height: auto;
}

/* Text */
.zodiac-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.zodiac-card p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* Hover Effect */
.zodiac-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.zodiac-card:hover h5 {
  color: #d4af37;
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Bootstrap Customization */
:root {
  --bs-primary: #ffaa00;
  --bs-primary-rgb: 255, 170, 0;
  --bs-secondary: #2d334a;
  --bs-link-color: #ffaa00;
  --bs-link-hover-color: #ff8800;
}

.container {
  max-width: 1200px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Override Bootstrap navbar for custom styling */
.navbar {
  padding: 15px 0 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky !important;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 15px !important;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 15px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef1220, #ff8800);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
  color: #f8605a !important;
  font-weight: 600;
}

/* Adjust grid gaps to work with Bootstrap */
.row.g-4 > * {
  margin-bottom: 1.5rem;
}

/* Make custom cards work with Bootstrap columns */
.cards-grid,
.astrologers-grid,
.gemstones-grid,
.courses-grid {
  display: block;
}

/* --- TOP BAR --- */
.top-bar {
  background: linear-gradient(352deg, #ffa95b 0%, #f7555a 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-info span {
  margin-right: 10px;
  opacity: 0.95;
}

.right-icons a {
  margin-left: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.right-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* --- HEADER / NAVIGATION --- */
header {
  background-color: #fff;
  padding: 0px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px; /* Adjusts the logo height to fit the navbar */
  width: auto; /* Maintains aspect ratio */
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Styling the text to match the Logo.png font */
.logo-text-white {
  font-family: "Great Vibes", cursive; /* Matches the logo font */
  font-size: 2.2rem; /* Slightly larger for script font readability */
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 10px;
}

nav a {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  /* height: 2px; */
  /* background: linear-gradient(90deg, #ffaa00, #ff8800); */
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: #ffaa00;
  font-weight: 600;
}

/* --- HERO SECTION --- */
.hero-section {
  /* Replace with your file name: top banner girl.jpg */
  background-image: url("images/top-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh; /* Adjust height based on your image aspect ratio */
  position: relative;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  color: #fff;
  padding-top: 50px; /* Push content down slightly if needed */
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 700;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-content .highlight {
  color: #ffaa00; /* Orange/Gold color */
  font-weight: 800;
  display: inline-block;
  text-shadow: 2px 4px 12px rgba(255, 170, 0, 0.4);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 170, 0, 0.5);
  background: linear-gradient(135deg, #ff8800 0%, #ffaa00 100%);
}

/* Slider Dots */
.slider-dots {
  margin-top: 80px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
  width: 12px;
  height: 12px;
}

/* --- INFO CARDS SECTION --- */
.info-cards-section {
  /* Replace with your file name: 2nd bg.jpg */
  /* background-image: url('images/2nd\ bg.png'); */
  background-size: cover;
  background-position: center;
  padding: 60px 0 80px 0;
  background: #333355;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Glassmorphism Card Style */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 35px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.card-icon {
  margin-bottom: 24px;
  display: inline-block;
}

.card-icon img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card:hover .card-icon img {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-weight: 300;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.schedule {
  font-size: 0.75rem;
  color: #a0a0a0;
}

.schedule span {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 2px;
  color: #fff;
}

.card-btn {
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(123, 67, 151, 0.3);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 67, 151, 0.5);
  background: linear-gradient(135deg, #8b5aa7 0%, #ec3440 100%);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- UTILITIES FOR NEW SECTIONS --- */
.section-padding {
  padding: 50px 0;
}

.light-bg {
  background-color: #fcf3e4;
}

.highlight-text {
  color: #ff5722; /* Orange-red color */
}

.text-orange {
  color: #ffaa00;
}

.text-yellow {
  color: #ffc107;
}

.sub-heading {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

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

.view-all-btn {
  border: 1px solid #ccc;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: 0.3s;
  background: #fff;
}

.view-all-btn:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* --- ASTROLOGERS SECTION --- */
.astrologers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.astro-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 18px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.astro-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 30px rgba(0,0,0,0.12); */
  border-color: #e0e0e0;
}

.astro-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333355;
}

.astro-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.astro-info p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 3px;
}

.astro-actions {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.astro-actions button {
  border: none;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.btn-call {
  background-color: #25d366; /* WhatsApp/Call Green */
}

.btn-chat {
  background-color: #2d334a; /* Dark Blue */
}

.rating {
  font-size: 0.8rem;
  color: #ffaa00;
  font-weight: 600;
}

/* --- GEMSTONES SECTION --- */
.gemstones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gem-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #e0e0e0;
}

.badge-off {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff5722;
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 10px;
}

.gem-img-box img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

.gem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gem-desc {
  font-size: 0.8rem;
  color: #888;
  height: 40px; /* Fixed height for alignment */
  overflow: hidden;
  margin-bottom: 15px;
}

.price {
  font-size: 1.1rem;
  color: #ff5722;
  font-weight: 600;
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.9rem;
  margin-right: 5px;
}

.gem-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon-btn {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  color: #555;
}

.buy-btn {
  background: none;
  border: 2px solid #333;
  padding: 0 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  height: 40px;
}

.buy-btn:hover {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- SALE BANNER --- */
.sale-banner-wrapper {
  margin: 30px 0;
}

.sale-banner-placeholder {
  /* Creating a placeholder gradient since image was missing */
  background-image: url("images/20%\ super\ sale\ banner.png ");
  height: 180px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sale-banner-placeholder h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #ffeb3b;
  font-weight: 800;
  font-style: italic;
}

.sale-banner-placeholder button {
  background: red;
  color: white;
  border: none;
  padding: 8px 20px;
  font-weight: bold;
  cursor: pointer;
}

/* --- COURSES SECTION --- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.course-card {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.course-body {
  padding: 15px;
  background: #fff;
}

.stars {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.course-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.instructor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #555;
}

.inst-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.course-price {
  display: flex;
  flex-direction: column;
}

.course-price span {
  font-weight: 700;
  color: #333;
}

.course-price small {
  font-size: 0.7rem;
  color: #888;
}

.enroll-btn {
  background-color: #3d3361;
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.icon-btn-outline {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer;
}

/* --- STATS BAR --- */
.stats-bar {
  background-color: #fff8e1; /* Light beige/yellowish */
  padding: 30px 0;
  border-top: 1px solid #eee;
  /* margin-bottom: 50px; */
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item i {
  font-size: 2rem;
  color: #ffaa00; /* Use logo orange or similar */
}

.stat-item span {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.3;
}

/* --- KUNDALI BANNER --- */
.kundali-banner {
  /* Background Image Path */
  background-image: url("images/check\ your\ kundali\ banner.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
}

/* Dark overlay for readability */
.kundali-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0,0,0,0.6); */
}

.kundali-content {
  position: relative; /* Brings text above overlay */
  z-index: 1;
}

.kundali-content h2 {
  color: #fff;
  font-size: 2.2rem;
  max-width: 800px;
}

.check-now-btn {
  background-color: #ff5722;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
  transition: transform 0.3s;
}

.check-now-btn:hover {
  transform: translateY(-3px);
  background-color: #ff7043;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .kundali-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .kundali-content h2 {
    font-size: 1.5rem;
  }
}

/* --- HOROSCOPE SECTION --- */
.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-center h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header-center p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.horoscope-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  border: none;
  background: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 15px;
  color: #333;
}

.tab-btn.active {
  background-color: #ff5722;
  color: #fff;
  border-radius: 5px;
}

/* Zodiac Grid */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns */
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.zodiac-item {
  cursor: pointer;
  transition: transform 0.3s;
}

.zodiac-item:hover {
  transform: translateY(-5px);
}

.zodiac-item img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.zodiac-item span {
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}

.zodiac-item.active span {
  color: #ff5722;
  font-weight: 700;
}

/* Prediction Box */
.prediction-box {
  margin-top: 20px;
}

.prediction-date {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.date-nav {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888;
}

.date-nav span {
  margin-right: 15px;
  cursor: pointer;
}

.date-nav span.active {
  color: #ff5722;
  font-weight: 600;
  /* text-decoration: underline; */
}

.prediction-content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.prediction-categories {
  list-style: none;
  min-width: 150px;
  border-right: 2px solid #ddd;
  padding-right: 20px;
}

.prediction-categories li {
  padding: 8px 0;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  font-size: 0.95rem;
}

.prediction-categories li.active {
  color: #333;
  /* Simulate the black bar on the left usually seen in design or bolding */
  font-weight: 800;
}

.prediction-text {
  flex: 1;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- DONATION SECTION --- */
.donation-section {
  padding: 50px 0;
}

.donation-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  position: relative;
  overflow: hidden;
}

/* Overlay darker gradient on left side to make text pop against background */
.donation-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(to right, rgba(20, 10, 50, 0.8), transparent);
}

.donation-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

.donation-content h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 500;
}

.donate-btn {
  background-color: #7b61ff; /* Purple color from image */
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.donate-btn:hover {
  background-color: #6248e6;
}

/* --- ABOUT ME SECTION --- */
.about-me-section {
  padding-bottom: 80px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.mt-2 {
  margin-top: 15px;
}

.read-more-btn {
  display: inline-block;
  background-color: #9c89e8; /* Light purple */
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 10px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #7b61ff;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.rotating-wheel {
  width: 100%;
  max-width: 450px;
  animation: rotate 60s linear infinite; /* Slow rotation effect */
}

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

/* --- RESPONSIVE SECTION 3 --- */
@media (max-width: 992px) {
  .zodiac-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-container {
    flex-direction: column-reverse; /* Text on bottom for mobile */
    text-align: center;
  }

  .about-image {
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .zodiac-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prediction-content-wrapper {
    flex-direction: column;
  }

  .prediction-categories {
    display: flex;
    overflow-x: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    gap: 20px;
    padding-bottom: 10px;
  }

  .donation-banner {
    padding: 30px;
    text-align: center;
    justify-content: center;
  }

  .donation-banner::before {
    width: 100%;
    background: rgba(20, 10, 50, 0.6);
  }

  .donation-content h2 {
    font-size: 1.5rem;
  }
}

/* --- GALLERY SECTION --- */
.gallery-section {
  padding-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-card {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.video-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SUBSCRIBE BANNER --- */
.subscribe-section {
  padding: 40px 0;
}

.subscribe-box {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.subscribe-content {
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
}

.subscribe-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.subscribe-form {
  display: flex;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 5px;
  position: relative;
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form button {
  background-color: #7b61ff; /* Purple */
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background-color: #6248e6;
}

/* --- FEATURES BAR --- */
.features-bar {
  padding: 50px 0;
  background-color: #fff;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.feat-icon {
  width: 70px;
  height: 70px;
  background-color: #fff8e1; /* Light yellow/gold bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.8rem;
  border: 1px solid #ffe082;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3d3361;
}

/* --- FOOTER --- */
.main-footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* --- FOOTER LOGO UPDATE --- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Filter to turn the dark blue logo icon into white for the footer */
.footer-logo-icon {
  height: 40px;
  width: auto;
  /* filter: brightness(0) invert(1);  */
}

.brand-col h4 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Google Play Badge Style */
.play-store-btn {
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 1px solid #555;
  padding: 5px 15px;
  border-radius: 8px;
  gap: 10px;
  margin-bottom: 25px;
  cursor: pointer;
  width: 170px;
}

.play-store-btn i {
  font-size: 1.5rem;
  color: #fff; /* Colorful logo usually, simply white here for icon */
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text small {
  font-size: 0.6rem;
  text-transform: uppercase;
}

.store-text span {
  font-size: 1rem;
  font-weight: 600;
}

.social-links h4 {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #ff5722;
}

/* Footer Links & Contact */
.footer-heading {
  color: #ffaa00; /* Gold color */
  margin-bottom: 25px;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffaa00;
}

/* --- NEW PAGES STYLING --- */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2d334a 0%, #1e2530 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.15); */
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.features-list {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.feature-item i {
  color: #4caf50;
  font-size: 1.3rem;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.expertise-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.expertise-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.expertise-card p {
  color: #666;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffaa00;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
}

/* Consultation Page */
.consultation-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.consult-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.consult-card.featured {
  border-color: #ffaa00;
  transform: scale(1.05);
}

.badge-featured {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.consult-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.consult-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #fff;
}

.consult-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.consult-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.price-tag {
  font-size: 1.2rem;
  color: #ffaa00;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.step-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-item p {
  color: #666;
  line-height: 1.6;
}

/* Courses Page */
.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffaa00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.course-thumb {
  position: relative;
}

.course-info {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #666;
  flex-wrap: wrap;
}

.course-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.course-footer .price {
  font-size: 1.4rem;
  color: #333;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
}

.benefit-item i {
  font-size: 3rem;
  color: #ffaa00;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Products Page */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.product-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #666;
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.per-carat {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

/* Blog Page */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.blog-post {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.post-image {
  position: relative;
}

.post-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffaa00;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.post-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffaa00;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.page-link {
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #ffaa00;
  padding-bottom: 10px;
}

.search-box {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
}

.search-box button {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 0 25px;
  cursor: pointer;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #ffaa00;
}

.category-list span {
  color: #999;
  font-size: 0.9rem;
}

.popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-post img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.popular-content h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.post-date {
  font-size: 0.8rem;
  color: #888;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: all 0.3s ease;
}

.tags-cloud a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: #666;
  line-height: 1.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffaa00;
}

.submit-btn {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.map-section {
  margin-top: 60px;
}

.map-placeholder iframe {
  border-radius: 15px;
}

/* Donation Page */
.donation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.donation-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.donation-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.donation-list {
  list-style: none;
  margin-bottom: 30px;
}

.donation-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.donation-list i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 3px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
}

.stat-item h4 {
  font-size: 2rem;
  color: #ffaa00;
  margin-bottom: 8px;
}

.stat-item p {
  color: #666;
  font-size: 0.9rem;
}

.donation-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.donation-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.donation-amounts {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.amount-btn {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn.active,
.amount-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.donation-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #888;
}

.donors-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.donor-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.donor-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.donor-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.donor-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.donor-date {
  font-size: 0.8rem;
  color: #999;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffaa00;
}

.footer-col p {
  color: #d0d0d0;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #d0d0d0;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffaa00;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #d0d0d0;
}

/* Text Center Utility */
.text-center {
  text-align: center;
}

.text-center h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Responsive for new pages */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid,
  .donation-content,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .consultation-types {
    grid-template-columns: 1fr;
  }

  .consult-card.featured {
    transform: scale(1);
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .products-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
  }
}

/* --- COURSE DETAILS PAGE --- */

.course-hero {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  padding: 40px 0 60px;
  color: #fff;
}

.course-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.course-breadcrumb a {
  color: #fff;
  transition: color 0.3s;
}

.course-breadcrumb a:hover {
  color: #ffaa00;
}

.course-hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.course-category-badge {
  display: inline-block;
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 170, 0, 0.3);
}

.course-hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.course-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 30px;
}

.course-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.meta-item i {
  color: #ffaa00;
}

.course-instructor-mini {
  display: flex;
  align-items: center;
  gap: 20px;
}

.course-instructor-mini img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.course-instructor-mini .created-by {
  font-size: 0.85rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 5px;
}

.course-instructor-mini h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.course-instructor-mini p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.course-preview-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.course-preview-card img {
  width: 100%;
  display: block;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-preview-card:hover .preview-overlay {
  opacity: 1;
}

.play-preview-btn {
  background: rgba(255, 170, 0, 0.95);
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.play-preview-btn:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

.course-price-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

.original-price {
  font-size: 1.3rem;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background: #4caf50;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-notice {
  color: #ff5722;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.enroll-now-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.enroll-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.add-wishlist-btn {
  width: 100%;
  background: #fff;
  color: #333;
  border: 2px solid #e0e0e0;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-wishlist-btn:hover {
  border-color: #ffaa00;
  color: #ffaa00;
}

.course-includes h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.course-includes ul {
  list-style: none;
}

.course-includes ul li {
  padding: 10px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-includes ul li:last-child {
  border-bottom: none;
}

.course-includes ul li i {
  color: #ffaa00;
  width: 20px;
}

/* Course Details Section */
.course-details-section {
  padding: 60px 0;
}

.course-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 50px;
}

.content-block {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #333;
}

.section-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Learning Outcomes */
.learning-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.outcome-item i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.outcome-item span {
  color: #555;
  line-height: 1.6;
}

/* Curriculum Accordion */
.curriculum-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.curriculum-section {
  border-bottom: 1px solid #e0e0e0;
}

.curriculum-section:last-child {
  border-bottom: none;
}

.section-header-acc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #f9f9f9;
  transition: background 0.3s ease;
}

.section-header-acc:hover {
  background: #f0f0f0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title i {
  color: #666;
  font-size: 0.9rem;
}

.section-title h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.section-info {
  color: #666;
  font-size: 0.9rem;
}

.section-content {
  padding: 0 25px 15px 55px;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.lesson-item:last-child {
  border-bottom: none;
}

.lesson-item i {
  color: #ffaa00;
  font-size: 1.1rem;
}

.lesson-title {
  flex: 1;
  color: #555;
}

.lesson-duration {
  color: #888;
  font-size: 0.85rem;
}

/* Requirements */
.requirements-list {
  list-style: none;
}

.requirements-list li {
  padding: 12px 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.requirements-list li i {
  color: #4caf50;
  margin-top: 4px;
}

/* Course Description */
.course-description {
  color: #555;
  line-height: 1.8;
}

.course-description h3 {
  font-size: 1.3rem;
  color: #333;
  margin: 25px 0 15px;
}

.course-description ul {
  margin: 15px 0;
  padding-left: 25px;
}

.course-description ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Instructor Detail */
.instructor-detail {
  display: flex;
  gap: 30px;
}

.instructor-detail img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
  flex-shrink: 0;
}

.instructor-info h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 5px;
}

.instructor-title {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.instructor-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.95rem;
}

.instructor-stats .stat i {
  color: #ffaa00;
}

.instructor-bio {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Reviews */
.reviews-summary {
  margin-bottom: 40px;
}

.rating-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
}

.average-rating {
  text-align: center;
}

.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stars-large {
  color: #ffaa00;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.average-rating p {
  color: #666;
  font-size: 0.95rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.rating-bar > span:first-child {
  width: 60px;
  color: #666;
}

.bar {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #ffaa00, #ff8800);
}

.rating-bar > span:last-child {
  width: 40px;
  text-align: right;
  color: #666;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-item {
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-meta .stars {
  color: #ffaa00;
  font-size: 0.9rem;
}

.review-date {
  color: #888;
  font-size: 0.85rem;
}

.review-text {
  color: #555;
  line-height: 1.7;
}

/* Sidebar */
.course-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ffaa00;
}

.features-list-sidebar {
  list-style: none;
}

.features-list-sidebar li {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.features-list-sidebar li:last-child {
  border-bottom: none;
}

.features-list-sidebar i {
  color: #ffaa00;
  font-size: 1.3rem;
  width: 25px;
}

.features-list-sidebar strong {
  display: block;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.features-list-sidebar span {
  color: #666;
  font-size: 0.9rem;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.linkedin {
  background: #0077b5;
}

.section-title-center {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

/* Responsive Course Details */
@media (max-width: 1024px) {
  .course-hero-content,
  .course-layout {
    grid-template-columns: 1fr;
  }

  .course-hero-left h1 {
    font-size: 2.2rem;
  }

  .learning-outcomes {
    grid-template-columns: 1fr;
  }

  .instructor-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .instructor-stats {
    justify-content: center;
  }

  .rating-overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .course-meta-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .section-content {
    padding-left: 25px;
  }
}

.contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #e0e0e0;
  font-size: 0.95rem;
  align-items: flex-start;
}

.contact-list i {
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Copyright Bar */
.copyright-bar {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: span 2;
    text-align: center;
  }
  .footer-logo,
  .social-icons {
    justify-content: center;
  }
  .play-store-btn {
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-col {
    grid-column: span 1;
  }

  .contact-list li {
    justify-content: center;
  }

  .subscribe-form {
    flex-direction: column;
    border: none;
    gap: 10px;
  }

  .subscribe-form input {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-align: center;
  }

  .subscribe-form button {
    width: 100%;
  }
}

.astro-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.astro-card:hover {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
}
.gem-card {
  transition: all 0.4s ease;
}
.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.zodiac-item {
  transition: all 0.3s ease;
}
.zodiac-item:hover {
  transform: scale(1.1);
}
.rotating-wheel {
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.subscribe-form button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slideShow 15s infinite;
  opacity: 0;
}

.slider img:nth-child(1) {
  animation-delay: 0s;
}
.slider img:nth-child(2) {
  animation-delay: 5s;
}
.slider img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.5); */
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeUp 1.2s ease;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 30px;
  background: #ff9800;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #f41f28;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-item {
  position: relative;
  /* height: 90vh; */
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(0,0,0,0.4); */
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Bootstrap Customization */
:root {
  --bs-primary: #ffaa00;
  --bs-primary-rgb: 255, 170, 0;
  --bs-secondary: #2d334a;
  --bs-link-color: #ffaa00;
  --bs-link-hover-color: #ff8800;
}

.container {
  max-width: 1200px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Override Bootstrap navbar for custom styling */
.navbar {
  padding: 15px 0 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky !important;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 8px !important;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 15px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef1220, #ff8800);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
  color: #f8605a !important;
  font-weight: 600;
}

/* Adjust grid gaps to work with Bootstrap */
.row.g-4 > * {
  margin-bottom: 1.5rem;
}

/* Make custom cards work with Bootstrap columns */
.cards-grid,
.astrologers-grid,
.gemstones-grid,
.courses-grid {
  display: block;
}

/* --- TOP BAR --- */
.top-bar {
  background: linear-gradient(352deg, #ffa95b 0%, #f7555a 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-info span {
  margin-right: 10px;
  opacity: 0.95;
}

.right-icons a {
  margin-left: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.right-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* --- HEADER / NAVIGATION --- */
header {
  background-color: #fff;
  padding: 0px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px; /* Adjusts the logo height to fit the navbar */
  width: auto; /* Maintains aspect ratio */
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Styling the text to match the Logo.png font */
.logo-text-white {
  font-family: "Great Vibes", cursive; /* Matches the logo font */
  font-size: 2.2rem; /* Slightly larger for script font readability */
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 10px;
}

nav a {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  /* height: 2px; */
  /* background: linear-gradient(90deg, #ffaa00, #ff8800); */
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: #ffaa00;
  font-weight: 600;
}

/* --- HERO SECTION --- */
.hero-section {
  /* Replace with your file name: top banner girl.jpg */
  background-image: url("images/top-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh; /* Adjust height based on your image aspect ratio */
  position: relative;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  color: #fff;
  padding-top: 50px; /* Push content down slightly if needed */
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 700;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-content .highlight {
  color: #ffaa00; /* Orange/Gold color */
  font-weight: 800;
  display: inline-block;
  text-shadow: 2px 4px 12px rgba(255, 170, 0, 0.4);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 170, 0, 0.5);
  background: linear-gradient(135deg, #ff8800 0%, #ffaa00 100%);
}

/* Slider Dots */
.slider-dots {
  margin-top: 80px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
  width: 12px;
  height: 12px;
}

/* --- INFO CARDS SECTION --- */
.info-cards-section {
  /* Replace with your file name: 2nd bg.jpg */
  /* background-image: url('images/2nd\ bg.png'); */
  background-size: cover;
  background-position: center;
  padding: 60px 0 80px 0;
  background: #333355;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Glassmorphism Card Style */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 35px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.card-icon {
  margin-bottom: 24px;
  display: inline-block;
}

.card-icon img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card:hover .card-icon img {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-weight: 300;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.schedule {
  font-size: 0.75rem;
  color: #a0a0a0;
}

.schedule span {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 2px;
  color: #fff;
}

.card-btn {
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(123, 67, 151, 0.3);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 67, 151, 0.5);
  background: linear-gradient(135deg, #8b5aa7 0%, #ec3440 100%);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- UTILITIES FOR NEW SECTIONS --- */
.section-padding {
  padding: 50px 0;
}

.light-bg {
  background-color: #fcf3e4;
}

.highlight-text {
  color: #ff5722; /* Orange-red color */
}

.text-orange {
  color: #ffaa00;
}

.text-yellow {
  color: #ffc107;
}

.sub-heading {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
  padding-bottom: 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.view-all-btn {
  border: 1px solid #ccc;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: 0.3s;
  background: #fff;
}

.view-all-btn:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* --- ASTROLOGERS SECTION --- */
.astrologers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.astro-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 18px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.astro-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 30px rgba(0,0,0,0.12); */
  border-color: #e0e0e0;
}

.astro-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333355;
}

.astro-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.astro-info p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 3px;
}

.astro-actions {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.astro-actions button {
  border: none;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.btn-call {
  background-color: #25d366; /* WhatsApp/Call Green */
}

.btn-chat {
  background-color: #f98b35; /* Dark Blue */
}

.rating {
  font-size: 0.8rem;
  color: #000000;
  font-weight: 600;
}

/* --- GEMSTONES SECTION --- */
.gemstones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gem-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #e0e0e0;
}

.badge-off {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff5722;
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 10px;
}

.gem-img-box img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

.gem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gem-desc {
  font-size: 0.8rem;
  color: #888;
  height: 40px; /* Fixed height for alignment */
  overflow: hidden;
  margin-bottom: 15px;
}

.price {
  font-size: 1.1rem;
  color: #ff5722;
  font-weight: 600;
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.9rem;
  margin-right: 5px;
}

.gem-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon-btn {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  color: #555;
}

.buy-btn {
  background: none;
  border: 2px solid #333;
  padding: 0 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  height: 40px;
}

.buy-btn:hover {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- SALE BANNER --- */
.sale-banner-wrapper {
  margin: 0px 0;
}

.sale-banner-placeholder {
  /* Creating a placeholder gradient since image was missing */
  background-image: url("../images/super-sale-banner.png ");
  height: 270px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}

.sale-banner-placeholder h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #ffeb3b;
  font-weight: 800;
  font-style: italic;
}

.sale-banner-placeholder button {
  background: red;
  color: white;
  border: none;
  padding: 8px 20px;
  font-weight: bold;
  cursor: pointer;
}

/* --- COURSES SECTION --- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
  gap: 25px;
}

.course-card {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.course-body {
  padding: 15px;
  background: #fff;
}

.stars {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.course-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.instructor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #555;
}

.inst-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.course-price {
  display: flex;
  flex-direction: column;
}

.course-price span {
  font-weight: 700;
  color: #333;
}

.course-price small {
  font-size: 0.7rem;
  color: #888;
}

.enroll-btn {
  /* background-color: #fffbff; */
  color: #fff;
  border: none;
  width: 50%;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  background: linear-gradient(135deg, #fe9935, #d92c32);
}

.icon-btn-outline {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer;
}

/* --- STATS BAR --- */
.stats-bar {
  background-color: #fff8e1; /* Light beige/yellowish */
  padding: 30px 0;
  border-top: 1px solid #eee;
  /* margin-bottom: 50px; */
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item i {
  font-size: 2rem;
  color: #ffaa00; /* Use logo orange or similar */
}

.stat-item span {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.3;
  text-align: left;
}

/* --- KUNDALI BANNER --- */
.kundali-banner {
  /* Background Image Path */
  background-image: url("../images/check-your-kundali-banner.png");
  background-size: contain;
  background-position: center;
  /* padding: 120px 0; */
  position: relative;
  min-height: 380px;
}

/* Dark overlay for readability */
.kundali-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgb(0 0 0 / 26%); */
}

.kundali-content {
  position: relative; /* Brings text above overlay */
  z-index: 1;
}

.kundali-content h2 {
  color: #fff;
  font-size: 2.2rem;
  max-width: 800px;
}

.check-now-btn {
  background-color: #ff5722;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
  transition: transform 0.3s;
}

.check-now-btn:hover {
  transform: translateY(-3px);
  background-color: #ff7043;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .kundali-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .kundali-content h2 {
    font-size: 1.5rem;
  }
}

/* --- HOROSCOPE SECTION --- */
.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-center h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header-center p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.horoscope-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  border: none;
  background: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 15px;
  color: #333;
}

.tab-btn.active {
  background-color: #ff5722;
  color: #fff;
  border-radius: 5px;
}

/* Zodiac Grid */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns */
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.zodiac-item {
  cursor: pointer;
  transition: transform 0.3s;
}

.zodiac-item:hover {
  transform: translateY(-5px);
}

.zodiac-item img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.zodiac-item span {
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}

.zodiac-item.active span {
  color: #ff5722;
  font-weight: 700;
}

/* Prediction Box */
.prediction-box {
  margin-top: 20px;
}

.prediction-date {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.date-nav {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888;
}

.date-nav span {
  margin-right: 15px;
  cursor: pointer;
}

.date-nav span.active {
  color: #ff5722;
  font-weight: 600;
  /* text-decoration: underline; */
}

.prediction-content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.prediction-categories {
  list-style: none;
  min-width: 150px;
  border-right: 2px solid #ddd;
  padding-right: 20px;
}

.prediction-categories li {
  padding: 8px 0;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  font-size: 0.95rem;
}

.prediction-categories li.active {
  color: #333;
  /* Simulate the black bar on the left usually seen in design or bolding */
  font-weight: 800;
}

.prediction-text {
  flex: 1;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- DONATION SECTION --- */
.donation-section {
  padding: 50px 0;
}

.donation-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  position: relative;
  overflow: hidden;
}

/* Overlay darker gradient on left side to make text pop against background */
.donation-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(to right, rgba(20, 10, 50, 0.8), transparent);
}

.donation-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

.donation-content h2 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 500;
}

.donate-btn {
  background-color: #7b61ff; /* Purple color from image */
  color: #fff;
  padding: 12px 0;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0px;
  transition: background 0.3s;
  text-align: center;
  height: 50px;
}

.donate-btn:hover {
  background-color: #6248e6;
}

/* --- ABOUT ME SECTION --- */
.about-me-section {
  padding-bottom: 80px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.mt-2 {
  margin-top: 15px;
}

.read-more-btn {
  display: inline-block;
  background-color: #9c89e8; /* Light purple */
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 10px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #7b61ff;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.rotating-wheel {
  width: 100%;
  max-width: 450px;
  animation: rotate 60s linear infinite; /* Slow rotation effect */
}

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

/* --- RESPONSIVE SECTION 3 --- */
@media (max-width: 992px) {
  .zodiac-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-container {
    flex-direction: column-reverse; /* Text on bottom for mobile */
    text-align: center;
  }

  .about-image {
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .zodiac-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prediction-content-wrapper {
    flex-direction: column;
  }

  .prediction-categories {
    display: flex;
    overflow-x: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    gap: 20px;
    padding-bottom: 10px;
  }

  .donation-banner {
    padding: 30px;
    text-align: center;
    justify-content: center;
  }

  .donation-banner::before {
    width: 100%;
    background: rgba(20, 10, 50, 0.6);
  }

  .donation-content h2 {
    font-size: 1.5rem;
  }
}

/* --- GALLERY SECTION --- */
.gallery-section {
  padding-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-card {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.video-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SUBSCRIBE BANNER --- */
.subscribe-section {
  padding: 40px 0;
}

.subscribe-box {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.subscribe-content {
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
}

.subscribe-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.subscribe-form {
  display: flex;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 5px;
  position: relative;
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form button {
  background-color: #f88735; /* Purple */
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background-color: #6248e6;
}

/* --- FEATURES BAR --- */
.features-bar {
  padding: 50px 0;
  background-color: #fff;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.feat-icon {
  width: 70px;
  height: 70px;
  background-color: #fff8e1; /* Light yellow/gold bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.8rem;
  border: 1px solid #ffe082;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3d3361;
}

/* --- FOOTER --- */
.main-footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* --- FOOTER LOGO UPDATE --- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Filter to turn the dark blue logo icon into white for the footer */
.footer-logo-icon {
  height: 40px;
  width: auto;
  /* filter: brightness(0) invert(1);  */
}

.brand-col h4 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Google Play Badge Style */
.play-store-btn {
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 1px solid #555;
  padding: 5px 15px;
  border-radius: 8px;
  gap: 10px;
  margin-bottom: 25px;
  cursor: pointer;
  width: 170px;
}

.play-store-btn i {
  font-size: 1.5rem;
  color: #fff; /* Colorful logo usually, simply white here for icon */
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text small {
  font-size: 0.6rem;
  text-transform: uppercase;
}

.store-text span {
  font-size: 1rem;
  font-weight: 600;
}

.social-links h4 {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #ff5722;
}

/* Footer Links & Contact */
.footer-heading {
  color: #ffaa00; /* Gold color */
  margin-bottom: 25px;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffaa00;
}

/* --- NEW PAGES STYLING --- */

/* Page Hero */
.page-hero {
  /* background: linear-gradient(135deg, #2d334a 0%, #1e2530 100%); */
  /* padding: 80px 0 60px; */
  text-align: center;
  color: #fff;
  background-image: url("../images/innerpage_baner.png");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 350px;
}

.page-hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: left;
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.15); */
}

.about-content h2 {
  font-size: 26px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  font-size: 16px;
  line-height: normal;
  color: #000000;
  margin-bottom: 20px;
}

.features-list {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.feature-item i {
  color: #4caf50;
  font-size: 1.3rem;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.expertise-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.expertise-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.expertise-card p {
  color: #666;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffaa00;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
}

/* Consultation Page */
.consultation-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.consult-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.consult-card.featured {
  border-color: #ffaa00;
  transform: scale(1.05);
}

.badge-featured {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.consult-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.consult-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f68134 0%, #df3e33 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #fff;
}

.consult-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.consult-card p {
  color: #000000;
  margin-bottom: 20px;
  line-height: normal;
  font-size: 15px;
}

.price-tag {
  font-size: 16px;
  color: #ffaa00;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.step-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-item p {
  color: #666;
  line-height: 1.6;
}

/* Courses Page */
.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffaa00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.course-thumb {
  position: relative;
}

.course-info {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #666;
  flex-wrap: wrap;
}

.course-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.course-footer .price {
  font-size: 1.4rem;
  color: #df3d32;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
}

.benefit-item i {
  font-size: 3rem;
  color: #ffaa00;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Products Page */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.product-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #666;
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.per-carat {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

/* Blog Page */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.blog-post {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.post-image {
  position: relative;
}

.post-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffaa00;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.post-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffaa00;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.page-link {
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #ffaa00;
  padding-bottom: 10px;
}

.search-box {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
}

.search-box button {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 0 25px;
  cursor: pointer;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #ffaa00;
}

.category-list span {
  color: #999;
  font-size: 0.9rem;
}

.popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-post img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.popular-content h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.post-date {
  font-size: 0.8rem;
  color: #888;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: all 0.3s ease;
}

.tags-cloud a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: #666;
  line-height: 1.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffaa00;
}

.submit-btn {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.map-section {
  margin-top: 60px;
}

.map-placeholder iframe {
  border-radius: 15px;
}

/* Donation Page */
.donation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 50px;
}

.donation-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.donation-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.donation-list {
  list-style: none;
  margin-bottom: 30px;
}

.donation-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.donation-list i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 3px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #3d3361;
}

.stat-item h4 {
  font-size: 2rem;
  color: #ffaa00;
  margin-bottom: 8px;
}

.stat-item p {
  color: #666;
  font-size: 0.9rem;
}

.donation-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.donation-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.donation-amounts {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.amount-btn {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn.active,
.amount-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.donation-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #888;
}

.donors-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.donor-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.donor-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.donor-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.donor-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.donor-date {
  font-size: 0.8rem;
  color: #999;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-col p {
  color: #d0d0d0;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

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

.footer-col ul li a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffaa00;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #d0d0d0;
}

/* Text Center Utility */
.text-center {
  text-align: center;
}

.text-center h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

/* Responsive for new pages */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid,
  .donation-content,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .consultation-types {
    grid-template-columns: 1fr;
  }

  .consult-card.featured {
    transform: scale(1);
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .products-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
  }
}

/* --- COURSE DETAILS PAGE --- */

.course-hero {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  padding: 40px 0 60px;
  color: #fff;
}

.course-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.course-breadcrumb a {
  color: #fff;
  transition: color 0.3s;
}

.course-breadcrumb a:hover {
  color: #ffaa00;
}

.course-hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.course-category-badge {
  display: inline-block;
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 170, 0, 0.3);
}

.course-hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.course-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 30px;
}

.course-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.meta-item i {
  color: #ffaa00;
}

.course-instructor-mini {
  display: flex;
  align-items: center;
  gap: 20px;
}

.course-instructor-mini img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.course-instructor-mini .created-by {
  font-size: 0.85rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 5px;
}

.course-instructor-mini h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.course-instructor-mini p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.course-preview-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.course-preview-card img {
  width: 100%;
  display: block;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-preview-card:hover .preview-overlay {
  opacity: 1;
}

.play-preview-btn {
  background: rgba(255, 170, 0, 0.95);
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.play-preview-btn:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

.course-price-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

.original-price {
  font-size: 1.3rem;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background: #4caf50;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-notice {
  color: #ff5722;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.enroll-now-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.enroll-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.add-wishlist-btn {
  width: 100%;
  background: #fff;
  color: #333;
  border: 2px solid #e0e0e0;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-wishlist-btn:hover {
  border-color: #ffaa00;
  color: #ffaa00;
}

.course-includes h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.course-includes ul {
  list-style: none;
}

.course-includes ul li {
  padding: 10px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-includes ul li:last-child {
  border-bottom: none;
}

.course-includes ul li i {
  color: #ffaa00;
  width: 20px;
}

/* Course Details Section */
.course-details-section {
  padding: 60px 0;
}

.course-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 50px;
}

.content-block {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #333;
}

.section-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Learning Outcomes */
.learning-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.outcome-item i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.outcome-item span {
  color: #555;
  line-height: 1.6;
}

/* Curriculum Accordion */
.curriculum-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.curriculum-section {
  border-bottom: 1px solid #e0e0e0;
}

.curriculum-section:last-child {
  border-bottom: none;
}

.section-header-acc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #f9f9f9;
  transition: background 0.3s ease;
}

.section-header-acc:hover {
  background: #f0f0f0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title i {
  color: #666;
  font-size: 0.9rem;
}

.section-title h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.section-info {
  color: #666;
  font-size: 0.9rem;
}

.section-content {
  padding: 0 25px 15px 55px;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.lesson-item:last-child {
  border-bottom: none;
}

.lesson-item i {
  color: #ffaa00;
  font-size: 1.1rem;
}

.lesson-title {
  flex: 1;
  color: #555;
}

.lesson-duration {
  color: #888;
  font-size: 0.85rem;
}

/* Requirements */
.requirements-list {
  list-style: none;
}

.requirements-list li {
  padding: 12px 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.requirements-list li i {
  color: #4caf50;
  margin-top: 4px;
}

/* Course Description */
.course-description {
  color: #555;
  line-height: 1.8;
}

.course-description h3 {
  font-size: 1.3rem;
  color: #333;
  margin: 25px 0 15px;
}

.course-description ul {
  margin: 15px 0;
  padding-left: 25px;
}

.course-description ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Instructor Detail */
.instructor-detail {
  display: flex;
  gap: 30px;
}

.instructor-detail img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
  flex-shrink: 0;
}

.instructor-info h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 5px;
}

.instructor-title {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.instructor-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.95rem;
}

.instructor-stats .stat i {
  color: #ffaa00;
}

.instructor-bio {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Reviews */
.reviews-summary {
  margin-bottom: 40px;
}

.rating-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
}

.average-rating {
  text-align: center;
}

.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stars-large {
  color: #ffaa00;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.average-rating p {
  color: #666;
  font-size: 0.95rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.rating-bar > span:first-child {
  width: 60px;
  color: #666;
}

.bar {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #ffaa00, #ff8800);
}

.rating-bar > span:last-child {
  width: 40px;
  text-align: right;
  color: #666;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-item {
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-meta .stars {
  color: #ffaa00;
  font-size: 0.9rem;
}

.review-date {
  color: #888;
  font-size: 0.85rem;
}

.review-text {
  color: #555;
  line-height: 1.7;
}

/* Sidebar */
.course-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ffaa00;
}

.features-list-sidebar {
  list-style: none;
}

.features-list-sidebar li {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.features-list-sidebar li:last-child {
  border-bottom: none;
}

.features-list-sidebar i {
  color: #ffaa00;
  font-size: 1.3rem;
  width: 25px;
}

.features-list-sidebar strong {
  display: block;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.features-list-sidebar span {
  color: #666;
  font-size: 0.9rem;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.linkedin {
  background: #0077b5;
}

.section-title-center {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

/* Responsive Course Details */
@media (max-width: 1024px) {
  .course-hero-content,
  .course-layout {
    grid-template-columns: 1fr;
  }

  .course-hero-left h1 {
    font-size: 2.2rem;
  }

  .learning-outcomes {
    grid-template-columns: 1fr;
  }

  .instructor-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .instructor-stats {
    justify-content: center;
  }

  .rating-overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .course-meta-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .section-content {
    padding-left: 25px;
  }
}

.contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #e0e0e0;
  font-size: 0.95rem;
  align-items: flex-start;
}

.contact-list i {
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Copyright Bar */
.copyright-bar {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: span 2;
    text-align: center;
  }
  .footer-logo,
  .social-icons {
    justify-content: center;
  }
  .play-store-btn {
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-col {
    grid-column: span 1;
  }

  .contact-list li {
    justify-content: center;
  }

  .subscribe-form {
    flex-direction: column;
    border: none;
    gap: 10px;
  }

  .subscribe-form input {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-align: center;
  }

  .subscribe-form button {
    width: 100%;
  }
}

.astro-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.astro-card:hover {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
}
.gem-card {
  transition: all 0.4s ease;
}
.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.zodiac-item {
  transition: all 0.3s ease;
}
.zodiac-item:hover {
  transform: scale(1.1);
}
.rotating-wheel {
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.subscribe-form button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slideShow 15s infinite;
  opacity: 0;
}

.slider img:nth-child(1) {
  animation-delay: 0s;
}
.slider img:nth-child(2) {
  animation-delay: 5s;
}
.slider img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.5); */
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeUp 1.2s ease;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 30px;
  background: #ff9800;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #f41f28;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-item {
  position: relative;
  /* height: 90vh; */
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  /* background: rgba(0,0,0,0.4); */
  color: #fff;
  text-align: left;
  padding-left: 5%;
  padding-right: 60%;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-align: left;
  text-shadow: 2px 3px #00000052;
}

.banner-content p {
  font-size: 1.2rem;
  text-align: left;
}

.owl-stage-outer {
  margin-top: 20px;
  padding-top: 20px;
}

.rating i.fas.fa-star {
  color: #ff8800;
}

.courses-carousel .course-card {
  margin: 5px;
}

.courses-carousel .owl-nav button {
  position: absolute;
  top: 38%;
  width: 42px;
  height: 42px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.courses-carousel .owl-nav .owl-prev {
  left: -20px;
}

.courses-carousel .owl-nav .owl-next {
  right: -20px;
}

.courses-carousel .owl-nav span {
  font-size: 26px;
  color: #000;
}
.gemstones-carousel .item {
  padding: 5px;
}

.gemstones-carousel .owl-nav button {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.gemstones-carousel .owl-nav .owl-prev {
  left: -20px;
}

.gemstones-carousel .owl-nav .owl-next {
  right: -20px;
}

.gemstones-carousel .owl-nav span {
  font-size: 24px;
  color: #000;
}

.horoscope-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 30px;
  background: #f1f1f1;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: #f78235;
  color: #fff;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-bottom: 25px;
}

.zodiac-item {
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 0px 6px 0px #0000001f;
}

.zodiac-item.active,
.zodiac-item:hover {
  background: #ffffff;
  color: #fff;
  border: 1px solid #3d3361;
}

.zodiac-item img {
  width: 45px;
  margin-bottom: 6px;
}

.tab-content {
  display: none;
  font-size: 16px;
  line-height: 1.6;
}

.tab-content.active {
  display: block;
}

.date-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.date-nav span {
  cursor: pointer;
  opacity: 0.6;
}

.date-nav .active {
  opacity: 1;
  color: #6b4eff;
  /* border-bottom: 2px solid #6b4eff; */
}

.prediction-content-wrapper {
  display: flex;
  gap: 25px;
}

.prediction-categories {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 180px;
}

.prediction-categories li {
  /* padding: 12px 15px; */
  margin-bottom: 8px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  /* background: #f6f6f6; */
  transition: 0.3s;
}

.prediction-categories li.active,
.prediction-categories li:hover {
  /* background: #6b4eff; */
  color: #f78235;
}

.prediction-text {
  flex: 1;
  /* background: #fafafa; */
  padding: 20px;
  border-radius: 14px;
}

.tab-content {
  display: none;
  line-height: 1.7;
}

.tab-content.active {
  display: block;
}

.donation-banner {
  position: relative;
  padding: 80px 40px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  overflow: hidden;
}

.donation-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.55); */
}

.donation-content {
  position: relative;
  max-width: 700px;
  color: #fff;
}

.donation-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.donation-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 22px;
}

.donate-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #ffcc00;
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.donate-btn:hover {
  background: #ffd633;
}

.sale-banner-placeholder:after {
  content: "";
  position: absolute;
  background: #0000003b;
  width: 100%;
  height: 100%;
}

/* Top Bar */
.top-bar {
  background: #ff9a35;
  color: #ccc;
  font-size: 13px;
  padding: 6px 0;
}

.top-bar i {
  color: #d4af37;
  margin-right: 6px;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.top-bar a:hover {
  color: #f10b1f;
}

.separator {
  margin: 0 10px;
  opacity: 0.6;
}

/* Header */
.main-header {
  background: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand img {
  height: 55px;
}

/* Navigation */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #222;
  padding: 12px 16px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #d4af37;
}

/* Icons */
.nav-icons a {
  color: #222;
  font-size: 16px;
  margin: 0 8px;
  transition: 0.3s;
}

.nav-icons a:hover {
  color: #d4af37;
}

/* CTA Button */
.header-btn {
  margin-left: 15px;
  /* padding: 8px 18px; */
  border-radius: 30px;
  font-size: 14px;
  background: linear-gradient(135deg, #fe9935, #d92c32);
  border: none;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35);
}

.header-btn:hover {
  background: linear-gradient(135deg, #b8962e, #d4af37);
}

.zodiac-section {
  padding: 70px 0;
  background: #faf8f4;
}

/* Card */
.zodiac-card {
  display: block;
  text-align: center;
  background: #fff;
  padding: 30px 15px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

/* Icon */
.zodiac-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ddc8, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zodiac-icon img {
  width: 38px;
  height: auto;
}

/* Text */
.zodiac-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.zodiac-card p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* Hover Effect */
.zodiac-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.zodiac-card:hover h5 {
  color: #d4af37;
}

.top-left {
  color: #fff;
}

.top-right {
  color: #fff;
}

.cart-wrapper {
  position: relative;
  display: inline-block;
}

.cart-icon a {
  font-size: 22px;
  color: #333;
  cursor: pointer;
}

/* Mini Cart Box */
.mini-cart {
  position: absolute;
  top: 35px;
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
}

.mini-cart.active {
  display: block;
}

.mini-cart-header {
  padding: 12px 15px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

.cart-item {
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px solid #f2f2f2;
}

.cart-footer {
  padding: 15px;
  text-align: center;
}

.cart-footer a {
  display: inline-block;
  padding: 10px 15px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

/* Support multiple mini-cart action links */
.mini-cart .cart-footer {
  display: flex;
  gap: 10px;
  text-align: left;
}

.mini-cart .cart-footer a {
  flex: 1 1 0;
  padding: 10px 12px;
}

/* Search Icon */
.search-icon {
  cursor: pointer;
  font-size: 18px;
  color: #333;
}

/* Search Box */
.search-box {
  position: absolute;
  top: 65px;
  right: 300px;
  width: 260px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

/* Smooth animation */
.search-box.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.step-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8b500, #ff9800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.step-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.step-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Bootstrap Customization */
:root {
  --bs-primary: #ffaa00;
  --bs-primary-rgb: 255, 170, 0;
  --bs-secondary: #2d334a;
  --bs-link-color: #ffaa00;
  --bs-link-hover-color: #ff8800;
}

.container {
  max-width: 1200px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Override Bootstrap navbar for custom styling */
.navbar {
  padding: 15px 0 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky !important;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 15px !important;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 15px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef1220, #ff8800);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
  color: #f8605a !important;
  font-weight: 600;
}

/* Adjust grid gaps to work with Bootstrap */
.row.g-4 > * {
  margin-bottom: 1.5rem;
}

/* Make custom cards work with Bootstrap columns */
.cards-grid,
.astrologers-grid,
.gemstones-grid,
.courses-grid {
  display: block;
}

/* --- TOP BAR --- */
.top-bar {
  background: linear-gradient(352deg, #ffa95b 0%, #f7555a 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-info span {
  margin-right: 10px;
  opacity: 0.95;
}

.right-icons a {
  margin-left: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.right-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* --- HEADER / NAVIGATION --- */
header {
  background-color: #fff;
  padding: 0px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px; /* Adjusts the logo height to fit the navbar */
  width: auto; /* Maintains aspect ratio */
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Styling the text to match the Logo.png font */
.logo-text-white {
  font-family: "Great Vibes", cursive; /* Matches the logo font */
  font-size: 2.2rem; /* Slightly larger for script font readability */
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 10px;
}

nav a {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  /* height: 2px; */
  /* background: linear-gradient(90deg, #ffaa00, #ff8800); */
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: #ffaa00;
  font-weight: 600;
}

/* --- HERO SECTION --- */
.hero-section {
  /* Replace with your file name: top banner girl.jpg */
  background-image: url("images/top-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh; /* Adjust height based on your image aspect ratio */
  position: relative;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  color: #fff;
  padding-top: 50px; /* Push content down slightly if needed */
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 700;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-content .highlight {
  color: #ffaa00; /* Orange/Gold color */
  font-weight: 800;
  display: inline-block;
  text-shadow: 2px 4px 12px rgba(255, 170, 0, 0.4);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 170, 0, 0.5);
  background: linear-gradient(135deg, #ff8800 0%, #ffaa00 100%);
}

/* Slider Dots */
.slider-dots {
  margin-top: 80px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
  width: 12px;
  height: 12px;
}

/* --- INFO CARDS SECTION --- */
.info-cards-section {
  /* Replace with your file name: 2nd bg.jpg */
  /* background-image: url('images/2nd\ bg.png'); */
  background-size: cover;
  background-position: center;
  padding: 60px 0 80px 0;
  background: #333355;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Glassmorphism Card Style */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 35px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.card-icon {
  margin-bottom: 24px;
  display: inline-block;
}

.card-icon img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card:hover .card-icon img {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-weight: 300;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.schedule {
  font-size: 0.75rem;
  color: #a0a0a0;
}

.schedule span {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 2px;
  color: #fff;
}

.card-btn {
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(123, 67, 151, 0.3);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 67, 151, 0.5);
  background: linear-gradient(135deg, #8b5aa7 0%, #ec3440 100%);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- UTILITIES FOR NEW SECTIONS --- */
.section-padding {
  padding: 50px 0;
}

.light-bg {
  background-color: #fcf3e4;
}

.highlight-text {
  color: #ff5722; /* Orange-red color */
}

.text-orange {
  color: #ffaa00;
}

.text-yellow {
  color: #ffc107;
}

.sub-heading {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

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

.view-all-btn {
  border: 1px solid #ccc;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: 0.3s;
  background: #fff;
}

.view-all-btn:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* --- ASTROLOGERS SECTION --- */
.astrologers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.astro-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 18px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.astro-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 30px rgba(0,0,0,0.12); */
  border-color: #e0e0e0;
}

.astro-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333355;
}

.astro-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.astro-info p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 3px;
}

.astro-actions {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.astro-actions button {
  border: none;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.btn-call {
  background-color: #25d366; /* WhatsApp/Call Green */
}

.btn-chat {
  background-color: #2d334a; /* Dark Blue */
}

.rating {
  font-size: 0.8rem;
  color: #ffaa00;
  font-weight: 600;
}

/* --- GEMSTONES SECTION --- */
.gemstones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gem-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #e0e0e0;
}

.badge-off {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff5722;
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 10px;
}

.gem-img-box img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

.gem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gem-desc {
  font-size: 0.8rem;
  color: #888;
  height: 40px; /* Fixed height for alignment */
  overflow: hidden;
  margin-bottom: 15px;
}

.price {
  font-size: 1.1rem;
  color: #ff5722;
  font-weight: 600;
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.9rem;
  margin-right: 5px;
}

.gem-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon-btn {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  color: #555;
}

.buy-btn {
  background: none;
  border: 2px solid #333;
  padding: 0 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  height: 40px;
}

.buy-btn:hover {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- SALE BANNER --- */
.sale-banner-wrapper {
  margin: 30px 0;
}

.sale-banner-placeholder {
  /* Creating a placeholder gradient since image was missing */
  background-image: url("images/20%\ super\ sale\ banner.png ");
  height: 180px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sale-banner-placeholder h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #ffeb3b;
  font-weight: 800;
  font-style: italic;
}

.sale-banner-placeholder button {
  background: red;
  color: white;
  border: none;
  padding: 8px 20px;
  font-weight: bold;
  cursor: pointer;
}

/* --- COURSES SECTION --- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.course-card {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.course-body {
  padding: 15px;
  background: #fff;
}

.stars {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.course-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.instructor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #555;
}

.inst-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.course-price {
  display: flex;
  flex-direction: column;
}

.course-price span {
  font-weight: 700;
  color: #333;
}

.course-price small {
  font-size: 0.7rem;
  color: #888;
}

.enroll-btn {
  background-color: #3d3361;
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.icon-btn-outline {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer;
}

/* --- STATS BAR --- */
.stats-bar {
  background-color: #fff8e1; /* Light beige/yellowish */
  padding: 30px 0;
  border-top: 1px solid #eee;
  /* margin-bottom: 50px; */
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item i {
  font-size: 2rem;
  color: #ffaa00; /* Use logo orange or similar */
}

.stat-item span {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.3;
}

/* --- KUNDALI BANNER --- */
.kundali-banner {
  /* Background Image Path */
  background-image: url("images/check\ your\ kundali\ banner.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
}

/* Dark overlay for readability */
.kundali-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0,0,0,0.6); */
}

.kundali-content {
  position: relative; /* Brings text above overlay */
  z-index: 1;
}

.kundali-content h2 {
  color: #fff;
  font-size: 2.2rem;
  max-width: 800px;
}

.check-now-btn {
  background-color: #ff5722;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
  transition: transform 0.3s;
}

.check-now-btn:hover {
  transform: translateY(-3px);
  background-color: #ff7043;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .kundali-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .kundali-content h2 {
    font-size: 1.5rem;
  }
}

/* --- HOROSCOPE SECTION --- */
.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-center h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header-center p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.horoscope-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  border: none;
  background: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 15px;
  color: #333;
}

.tab-btn.active {
  background-color: #ff5722;
  color: #fff;
  border-radius: 5px;
}

/* Zodiac Grid */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns */
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.zodiac-item {
  cursor: pointer;
  transition: transform 0.3s;
}

.zodiac-item:hover {
  transform: translateY(-5px);
}

.zodiac-item img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.zodiac-item span {
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}

.zodiac-item.active span {
  color: #ff5722;
  font-weight: 700;
}

/* Prediction Box */
.prediction-box {
  margin-top: 20px;
}

.prediction-date {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.date-nav {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888;
}

.date-nav span {
  margin-right: 15px;
  cursor: pointer;
}

.date-nav span.active {
  color: #ff5722;
  font-weight: 600;
  /* text-decoration: underline; */
}

.prediction-content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.prediction-categories {
  list-style: none;
  min-width: 150px;
  border-right: 2px solid #ddd;
  padding-right: 20px;
}

.prediction-categories li {
  padding: 8px 0;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  font-size: 0.95rem;
}

.prediction-categories li.active {
  color: #333;
  /* Simulate the black bar on the left usually seen in design or bolding */
  font-weight: 800;
}

.prediction-text {
  flex: 1;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- DONATION SECTION --- */
.donation-section {
  padding: 50px 0;
}

.donation-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  position: relative;
  overflow: hidden;
}

/* Overlay darker gradient on left side to make text pop against background */
.donation-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(to right, rgba(20, 10, 50, 0.8), transparent);
}

.donation-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

.donation-content h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 500;
}

.donate-btn {
  background-color: #7b61ff; /* Purple color from image */
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.donate-btn:hover {
  background-color: #6248e6;
}

/* --- ABOUT ME SECTION --- */
.about-me-section {
  padding-bottom: 80px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.mt-2 {
  margin-top: 15px;
}

.read-more-btn {
  display: inline-block;
  background-color: #9c89e8; /* Light purple */
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 10px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #7b61ff;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.rotating-wheel {
  width: 100%;
  max-width: 450px;
  animation: rotate 60s linear infinite; /* Slow rotation effect */
}

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

/* --- RESPONSIVE SECTION 3 --- */
@media (max-width: 992px) {
  .zodiac-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-container {
    flex-direction: column-reverse; /* Text on bottom for mobile */
    text-align: center;
  }

  .about-image {
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .zodiac-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prediction-content-wrapper {
    flex-direction: column;
  }

  .prediction-categories {
    display: flex;
    overflow-x: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    gap: 20px;
    padding-bottom: 10px;
  }

  .donation-banner {
    padding: 30px;
    text-align: center;
    justify-content: center;
  }

  .donation-banner::before {
    width: 100%;
    background: rgba(20, 10, 50, 0.6);
  }

  .donation-content h2 {
    font-size: 1.5rem;
  }
}

/* --- GALLERY SECTION --- */
.gallery-section {
  padding-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-card {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.video-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SUBSCRIBE BANNER --- */
.subscribe-section {
  padding: 40px 0;
}

.subscribe-box {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.subscribe-content {
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
}

.subscribe-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.subscribe-form {
  display: flex;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 5px;
  position: relative;
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form button {
  background-color: #7b61ff; /* Purple */
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background-color: #6248e6;
}

/* --- FEATURES BAR --- */
.features-bar {
  padding: 50px 0;
  background-color: #fff;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.feat-icon {
  width: 70px;
  height: 70px;
  background-color: #fff8e1; /* Light yellow/gold bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.8rem;
  border: 1px solid #ffe082;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3d3361;
}

/* --- FOOTER --- */
.main-footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* --- FOOTER LOGO UPDATE --- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Filter to turn the dark blue logo icon into white for the footer */
.footer-logo-icon {
  height: 40px;
  width: auto;
  /* filter: brightness(0) invert(1);  */
}

.brand-col h4 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Google Play Badge Style */
.play-store-btn {
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 1px solid #555;
  padding: 5px 15px;
  border-radius: 8px;
  gap: 10px;
  margin-bottom: 25px;
  cursor: pointer;
  width: 170px;
}

.play-store-btn i {
  font-size: 1.5rem;
  color: #fff; /* Colorful logo usually, simply white here for icon */
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text small {
  font-size: 0.6rem;
  text-transform: uppercase;
}

.store-text span {
  font-size: 1rem;
  font-weight: 600;
}

.social-links h4 {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #ff5722;
}

/* Footer Links & Contact */
.footer-heading {
  color: #ffaa00; /* Gold color */
  margin-bottom: 25px;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffaa00;
}

/* --- NEW PAGES STYLING --- */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2d334a 0%, #1e2530 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.15); */
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.features-list {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.feature-item i {
  color: #4caf50;
  font-size: 1.3rem;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.expertise-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.expertise-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.expertise-card p {
  color: #666;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffaa00;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
}

/* Consultation Page */
.consultation-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.consult-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.consult-card.featured {
  border-color: #ffaa00;
  transform: scale(1.05);
}

.badge-featured {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.consult-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.consult-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #fff;
}

.consult-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.consult-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.price-tag {
  font-size: 1.2rem;
  color: #ffaa00;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.step-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-item p {
  color: #666;
  line-height: 1.6;
}

/* Courses Page */
.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffaa00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.course-thumb {
  position: relative;
}

.course-info {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #666;
  flex-wrap: wrap;
}

.course-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.course-footer .price {
  font-size: 1.4rem;
  color: #333;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
}

.benefit-item i {
  font-size: 3rem;
  color: #ffaa00;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Products Page */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.product-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #666;
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.per-carat {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

/* Blog Page */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.blog-post {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.post-image {
  position: relative;
}

.post-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffaa00;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.post-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffaa00;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.page-link {
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #ffaa00;
  padding-bottom: 10px;
}

.search-box {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
}

.search-box button {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 0 25px;
  cursor: pointer;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #ffaa00;
}

.category-list span {
  color: #999;
  font-size: 0.9rem;
}

.popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-post img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.popular-content h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.post-date {
  font-size: 0.8rem;
  color: #888;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: all 0.3s ease;
}

.tags-cloud a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: #666;
  line-height: 1.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffaa00;
}

.submit-btn {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.map-section {
  margin-top: 60px;
}

.map-placeholder iframe {
  border-radius: 15px;
}

/* Donation Page */
.donation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.donation-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.donation-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.donation-list {
  list-style: none;
  margin-bottom: 30px;
}

.donation-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.donation-list i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 3px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
}

.stat-item h4 {
  font-size: 2rem;
  color: #ffaa00;
  margin-bottom: 8px;
}

.stat-item p {
  color: #666;
  font-size: 0.9rem;
}

.donation-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.donation-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.donation-amounts {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.amount-btn {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn.active,
.amount-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.donation-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #888;
}

.donors-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.donor-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.donor-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.donor-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.donor-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.donor-date {
  font-size: 0.8rem;
  color: #999;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffaa00;
}

.footer-col p {
  color: #d0d0d0;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #d0d0d0;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffaa00;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #d0d0d0;
}

/* Text Center Utility */
.text-center {
  text-align: center;
}

.text-center h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Responsive for new pages */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid,
  .donation-content,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .consultation-types {
    grid-template-columns: 1fr;
  }

  .consult-card.featured {
    transform: scale(1);
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .products-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
  }
}

/* --- COURSE DETAILS PAGE --- */

.course-hero {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  padding: 40px 0 60px;
  color: #fff;
}

.course-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.course-breadcrumb a {
  color: #fff;
  transition: color 0.3s;
}

.course-breadcrumb a:hover {
  color: #ffaa00;
}

.course-hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.course-category-badge {
  display: inline-block;
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 170, 0, 0.3);
}

.course-hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.course-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 30px;
}

.course-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.meta-item i {
  color: #ffaa00;
}

.course-instructor-mini {
  display: flex;
  align-items: center;
  gap: 20px;
}

.course-instructor-mini img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.course-instructor-mini .created-by {
  font-size: 0.85rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 5px;
}

.course-instructor-mini h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.course-instructor-mini p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.course-preview-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.course-preview-card img {
  width: 100%;
  display: block;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-preview-card:hover .preview-overlay {
  opacity: 1;
}

.play-preview-btn {
  background: rgba(255, 170, 0, 0.95);
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.play-preview-btn:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

.course-price-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

.original-price {
  font-size: 1.3rem;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background: #4caf50;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-notice {
  color: #ff5722;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.enroll-now-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.enroll-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.add-wishlist-btn {
  width: 100%;
  background: #fff;
  color: #333;
  border: 2px solid #e0e0e0;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-wishlist-btn:hover {
  border-color: #ffaa00;
  color: #ffaa00;
}

.course-includes h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.course-includes ul {
  list-style: none;
}

.course-includes ul li {
  padding: 10px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-includes ul li:last-child {
  border-bottom: none;
}

.course-includes ul li i {
  color: #ffaa00;
  width: 20px;
}

/* Course Details Section */
.course-details-section {
  padding: 60px 0;
}

.course-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 50px;
}

.content-block {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #333;
}

.section-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Learning Outcomes */
.learning-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.outcome-item i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.outcome-item span {
  color: #555;
  line-height: 1.6;
}

/* Curriculum Accordion */
.curriculum-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.curriculum-section {
  border-bottom: 1px solid #e0e0e0;
}

.curriculum-section:last-child {
  border-bottom: none;
}

.section-header-acc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #f9f9f9;
  transition: background 0.3s ease;
}

.section-header-acc:hover {
  background: #f0f0f0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title i {
  color: #666;
  font-size: 0.9rem;
}

.section-title h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.section-info {
  color: #666;
  font-size: 0.9rem;
}

.section-content {
  padding: 0 25px 15px 55px;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.lesson-item:last-child {
  border-bottom: none;
}

.lesson-item i {
  color: #ffaa00;
  font-size: 1.1rem;
}

.lesson-title {
  flex: 1;
  color: #555;
}

.lesson-duration {
  color: #888;
  font-size: 0.85rem;
}

/* Requirements */
.requirements-list {
  list-style: none;
}

.requirements-list li {
  padding: 12px 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.requirements-list li i {
  color: #4caf50;
  margin-top: 4px;
}

/* Course Description */
.course-description {
  color: #555;
  line-height: 1.8;
}

.course-description h3 {
  font-size: 1.3rem;
  color: #333;
  margin: 25px 0 15px;
}

.course-description ul {
  margin: 15px 0;
  padding-left: 25px;
}

.course-description ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Instructor Detail */
.instructor-detail {
  display: flex;
  gap: 30px;
}

.instructor-detail img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
  flex-shrink: 0;
}

.instructor-info h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 5px;
}

.instructor-title {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.instructor-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.95rem;
}

.instructor-stats .stat i {
  color: #ffaa00;
}

.instructor-bio {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Reviews */
.reviews-summary {
  margin-bottom: 40px;
}

.rating-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
}

.average-rating {
  text-align: center;
}

.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stars-large {
  color: #ffaa00;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.average-rating p {
  color: #666;
  font-size: 0.95rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.rating-bar > span:first-child {
  width: 60px;
  color: #666;
}

.bar {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #ffaa00, #ff8800);
}

.rating-bar > span:last-child {
  width: 40px;
  text-align: right;
  color: #666;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-item {
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-meta .stars {
  color: #ffaa00;
  font-size: 0.9rem;
}

.review-date {
  color: #888;
  font-size: 0.85rem;
}

.review-text {
  color: #555;
  line-height: 1.7;
}

/* Sidebar */
.course-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ffaa00;
}

.features-list-sidebar {
  list-style: none;
}

.features-list-sidebar li {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.features-list-sidebar li:last-child {
  border-bottom: none;
}

.features-list-sidebar i {
  color: #ffaa00;
  font-size: 1.3rem;
  width: 25px;
}

.features-list-sidebar strong {
  display: block;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.features-list-sidebar span {
  color: #666;
  font-size: 0.9rem;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.linkedin {
  background: #0077b5;
}

.section-title-center {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

/* Responsive Course Details */
@media (max-width: 1024px) {
  .course-hero-content,
  .course-layout {
    grid-template-columns: 1fr;
  }

  .course-hero-left h1 {
    font-size: 2.2rem;
  }

  .learning-outcomes {
    grid-template-columns: 1fr;
  }

  .instructor-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .instructor-stats {
    justify-content: center;
  }

  .rating-overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .course-meta-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .section-content {
    padding-left: 25px;
  }
}

.contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #e0e0e0;
  font-size: 0.95rem;
  align-items: flex-start;
}

.contact-list i {
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Copyright Bar */
.copyright-bar {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: span 2;
    text-align: center;
  }
  .footer-logo,
  .social-icons {
    justify-content: center;
  }
  .play-store-btn {
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-col {
    grid-column: span 1;
  }

  .contact-list li {
    justify-content: center;
  }

  .subscribe-form {
    flex-direction: column;
    border: none;
    gap: 10px;
  }

  .subscribe-form input {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-align: center;
  }

  .subscribe-form button {
    width: 100%;
  }
}

.astro-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.astro-card:hover {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
}
.gem-card {
  transition: all 0.4s ease;
}
.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.zodiac-item {
  transition: all 0.3s ease;
}
.zodiac-item:hover {
  transform: scale(1.1);
}
.rotating-wheel {
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.subscribe-form button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slideShow 15s infinite;
  opacity: 0;
}

.slider img:nth-child(1) {
  animation-delay: 0s;
}
.slider img:nth-child(2) {
  animation-delay: 5s;
}
.slider img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.5); */
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeUp 1.2s ease;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 30px;
  background: #ff9800;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #f41f28;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-item {
  position: relative;
  /* height: 90vh; */
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(0,0,0,0.4); */
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Bootstrap Customization */
:root {
  --bs-primary: #ffaa00;
  --bs-primary-rgb: 255, 170, 0;
  --bs-secondary: #2d334a;
  --bs-link-color: #ffaa00;
  --bs-link-hover-color: #ff8800;
}

.container {
  max-width: 1200px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Override Bootstrap navbar for custom styling */
.navbar {
  padding: 15px 0 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky !important;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 15px !important;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 15px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef1220, #ff8800);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
  color: #f8605a !important;
  font-weight: 600;
}

/* Adjust grid gaps to work with Bootstrap */
.row.g-4 > * {
  margin-bottom: 1.5rem;
}

/* Make custom cards work with Bootstrap columns */
.cards-grid,
.astrologers-grid,
.gemstones-grid,
.courses-grid {
  display: block;
}

/* --- TOP BAR --- */
.top-bar {
  background: linear-gradient(352deg, #ffa95b 0%, #f7555a 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-info span {
  margin-right: 10px;
  opacity: 0.95;
}

.right-icons a {
  margin-left: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.right-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* --- HEADER / NAVIGATION --- */
header {
  background-color: #fff;
  padding: 0px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px; /* Adjusts the logo height to fit the navbar */
  width: auto; /* Maintains aspect ratio */
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Styling the text to match the Logo.png font */
.logo-text-white {
  font-family: "Great Vibes", cursive; /* Matches the logo font */
  font-size: 2.2rem; /* Slightly larger for script font readability */
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 10px;
}

nav a {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  /* height: 2px; */
  /* background: linear-gradient(90deg, #ffaa00, #ff8800); */
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: #ffaa00;
  font-weight: 600;
}

/* --- HERO SECTION --- */
.hero-section {
  /* Replace with your file name: top banner girl.jpg */
  background-image: url("images/top-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh; /* Adjust height based on your image aspect ratio */
  position: relative;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  color: #fff;
  padding-top: 50px; /* Push content down slightly if needed */
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 700;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-content .highlight {
  color: #ffaa00; /* Orange/Gold color */
  font-weight: 800;
  display: inline-block;
  text-shadow: 2px 4px 12px rgba(255, 170, 0, 0.4);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 170, 0, 0.5);
  background: linear-gradient(135deg, #ff8800 0%, #ffaa00 100%);
}

/* Slider Dots */
.slider-dots {
  margin-top: 80px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
  width: 12px;
  height: 12px;
}

/* --- INFO CARDS SECTION --- */
.info-cards-section {
  /* Replace with your file name: 2nd bg.jpg */
  /* background-image: url('images/2nd\ bg.png'); */
  background-size: cover;
  background-position: center;
  padding: 60px 0 80px 0;
  background: #333355;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Glassmorphism Card Style */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 35px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.card-icon {
  margin-bottom: 24px;
  display: inline-block;
}

.card-icon img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card:hover .card-icon img {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-weight: 300;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.schedule {
  font-size: 0.75rem;
  color: #a0a0a0;
}

.schedule span {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 2px;
  color: #fff;
}

.card-btn {
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(123, 67, 151, 0.3);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 67, 151, 0.5);
  background: linear-gradient(135deg, #8b5aa7 0%, #ec3440 100%);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- UTILITIES FOR NEW SECTIONS --- */
.section-padding {
  padding: 50px 0;
}

.light-bg {
  background-color: #fcf3e4;
}

.highlight-text {
  color: #ff5722; /* Orange-red color */
}

.text-orange {
  color: #ffaa00;
}

.text-yellow {
  color: #ffc107;
}

.sub-heading {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

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

.view-all-btn {
  border: 1px solid #ccc;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: 0.3s;
  background: #fff;
}

.view-all-btn:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* --- ASTROLOGERS SECTION --- */
.astrologers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.astro-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 18px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.astro-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 30px rgba(0,0,0,0.12); */
  border-color: #e0e0e0;
}

.astro-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333355;
}

.astro-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.astro-info p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 3px;
}

.astro-actions {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.astro-actions button {
  border: none;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.btn-call {
  background-color: #25d366; /* WhatsApp/Call Green */
}

.btn-chat {
  background-color: #2d334a; /* Dark Blue */
}

.rating {
  font-size: 0.8rem;
  color: #000000;
  font-weight: 600;
}

/* --- GEMSTONES SECTION --- */
.gemstones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gem-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #e0e0e0;
}

.badge-off {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff5722;
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 10px;
}

.gem-img-box img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

.gem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gem-desc {
  font-size: 0.8rem;
  color: #888;
  height: 40px; /* Fixed height for alignment */
  overflow: hidden;
  margin-bottom: 15px;
}

.price {
  font-size: 1.1rem;
  color: #ff5722;
  font-weight: 600;
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.9rem;
  margin-right: 5px;
}

.gem-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon-btn {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  color: #555;
}

.buy-btn {
  background: none;
  border: 2px solid #333;
  padding: 0 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  height: 40px;
}

.buy-btn:hover {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- SALE BANNER --- */
.sale-banner-wrapper {
  margin: 0px 0;
}

.sale-banner-placeholder {
  /* Creating a placeholder gradient since image was missing */
  background-image: url("images/20%\ super\ sale\ banner.png ");
  height: 270px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}

.sale-banner-placeholder h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #ffeb3b;
  font-weight: 800;
  font-style: italic;
}

.sale-banner-placeholder button {
  background: red;
  color: white;
  border: none;
  padding: 8px 20px;
  font-weight: bold;
  cursor: pointer;
}

/* --- COURSES SECTION --- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.course-card {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.course-body {
  padding: 15px;
  background: #fff;
}

.stars {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.course-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.instructor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #555;
}

.inst-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.course-price {
  display: flex;
  flex-direction: column;
}

.course-price span {
  font-weight: 700;
  color: #333;
}

.course-price small {
  font-size: 0.7rem;
  color: #888;
}

.enroll-btn {
  background-color: #3d3361;
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.icon-btn-outline {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer;
}

/* --- STATS BAR --- */
.stats-bar {
  background-color: #fff8e1; /* Light beige/yellowish */
  padding: 30px 0;
  border-top: 1px solid #eee;
  /* margin-bottom: 50px; */
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item i {
  font-size: 2rem;
  color: #ffaa00; /* Use logo orange or similar */
}

.stat-item span {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.3;
  text-align: left;
}

/* --- KUNDALI BANNER --- */
.kundali-banner {
  /* Background Image Path */
  background-image: url("images/check_your_kundali_banner.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  position: relative;
}

/* Dark overlay for readability */
.kundali-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgb(0 0 0 / 26%); */
}

.kundali-content {
  position: relative; /* Brings text above overlay */
  z-index: 1;
}

.kundali-content h2 {
  color: #fff;
  font-size: 2.2rem;
  max-width: 800px;
}

.check-now-btn {
  background-color: #ff5722;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
  transition: transform 0.3s;
}

.check-now-btn:hover {
  transform: translateY(-3px);
  background-color: #ff7043;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .kundali-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .kundali-content h2 {
    font-size: 1.5rem;
  }
}

/* --- HOROSCOPE SECTION --- */
.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-center h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header-center p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.horoscope-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  border: none;
  background: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 15px;
  color: #333;
}

.tab-btn.active {
  background-color: #ff5722;
  color: #fff;
  border-radius: 5px;
}

/* Zodiac Grid */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns */
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.zodiac-item {
  cursor: pointer;
  transition: transform 0.3s;
}

.zodiac-item:hover {
  transform: translateY(-5px);
}

.zodiac-item img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.zodiac-item span {
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}

.zodiac-item.active span {
  color: #ff5722;
  font-weight: 700;
}

/* Prediction Box */
.prediction-box {
  margin-top: 20px;
}

.prediction-date {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.date-nav {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888;
}

.date-nav span {
  margin-right: 15px;
  cursor: pointer;
}

.date-nav span.active {
  color: #ff5722;
  font-weight: 600;
  /* text-decoration: underline; */
}

.prediction-content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.prediction-categories {
  list-style: none;
  min-width: 150px;
  border-right: 2px solid #ddd;
  padding-right: 20px;
}

.prediction-categories li {
  padding: 8px 0;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  font-size: 0.95rem;
}

.prediction-categories li.active {
  color: #333;
  /* Simulate the black bar on the left usually seen in design or bolding */
  font-weight: 800;
}

.prediction-text {
  flex: 1;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- DONATION SECTION --- */
.donation-section {
  padding: 50px 0;
}

.donation-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  position: relative;
  overflow: hidden;
}

/* Overlay darker gradient on left side to make text pop against background */
.donation-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(to right, rgba(20, 10, 50, 0.8), transparent);
}

.donation-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

.donation-content h2 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 500;
}

.donate-btn {
  background-color: #7b61ff; /* Purple color from image */
  color: #fff;
  padding: 12px 0;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: background 0.3s;
  text-align: center;
  height: 50px;
}

.donate-btn:hover {
  background-color: #6248e6;
}

/* --- ABOUT ME SECTION --- */
.about-me-section {
  padding-bottom: 80px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.mt-2 {
  margin-top: 15px;
}

.read-more-btn {
  display: inline-block;
  background-color: #9c89e8; /* Light purple */
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 10px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #7b61ff;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.rotating-wheel {
  width: 100%;
  max-width: 450px;
  animation: rotate 60s linear infinite; /* Slow rotation effect */
}

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

/* --- RESPONSIVE SECTION 3 --- */
@media (max-width: 992px) {
  .zodiac-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-container {
    flex-direction: column-reverse; /* Text on bottom for mobile */
    text-align: center;
  }

  .about-image {
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .zodiac-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prediction-content-wrapper {
    flex-direction: column;
  }

  .prediction-categories {
    display: flex;
    overflow-x: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    gap: 20px;
    padding-bottom: 10px;
  }

  .donation-banner {
    padding: 30px;
    text-align: center;
    justify-content: center;
  }

  .donation-banner::before {
    width: 100%;
    background: rgba(20, 10, 50, 0.6);
  }

  .donation-content h2 {
    font-size: 1.5rem;
  }
}

/* --- GALLERY SECTION --- */
.gallery-section {
  padding-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-card {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.video-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SUBSCRIBE BANNER --- */
.subscribe-section {
  padding: 40px 0;
}

.subscribe-box {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.subscribe-content {
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
}

.subscribe-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.subscribe-form {
  display: flex;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 5px;
  position: relative;
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form button {
  background-color: #7b61ff; /* Purple */
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background-color: #6248e6;
}

/* --- FEATURES BAR --- */
.features-bar {
  padding: 50px 0;
  background-color: #fff;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.feat-icon {
  width: 70px;
  height: 70px;
  background-color: #fff8e1; /* Light yellow/gold bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.8rem;
  border: 1px solid #ffe082;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3d3361;
}

/* --- FOOTER --- */
.main-footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* --- FOOTER LOGO UPDATE --- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Filter to turn the dark blue logo icon into white for the footer */
.footer-logo-icon {
  height: 40px;
  width: auto;
  /* filter: brightness(0) invert(1);  */
}

.brand-col h4 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Google Play Badge Style */
.play-store-btn {
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 1px solid #555;
  padding: 5px 15px;
  border-radius: 8px;
  gap: 10px;
  margin-bottom: 25px;
  cursor: pointer;
  width: 170px;
}

.play-store-btn i {
  font-size: 1.5rem;
  color: #fff; /* Colorful logo usually, simply white here for icon */
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text small {
  font-size: 0.6rem;
  text-transform: uppercase;
}

.store-text span {
  font-size: 1rem;
  font-weight: 600;
}

.social-links h4 {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #ff5722;
}

/* Footer Links & Contact */
.footer-heading {
  color: #ffaa00; /* Gold color */
  margin-bottom: 25px;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffaa00;
}

/* --- NEW PAGES STYLING --- */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2d334a 0%, #1e2530 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.15); */
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.features-list {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.feature-item i {
  color: #4caf50;
  font-size: 1.3rem;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.expertise-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.expertise-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.expertise-card p {
  color: #666;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffaa00;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
}

/* Consultation Page */
.consultation-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.consult-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.consult-card.featured {
  border-color: #ffaa00;
  transform: scale(1.05);
}

.badge-featured {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.consult-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.consult-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #fff;
}

.consult-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.consult-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.price-tag {
  font-size: 1.2rem;
  color: #ffaa00;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.step-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-item p {
  color: #666;
  line-height: 1.6;
}

/* Courses Page */
.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffaa00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.course-thumb {
  position: relative;
}

.course-info {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #666;
  flex-wrap: wrap;
}

.course-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.course-footer .price {
  font-size: 1.4rem;
  color: #333;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
}

.benefit-item i {
  font-size: 3rem;
  color: #ffaa00;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Products Page */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.product-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #666;
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.per-carat {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

/* Blog Page */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.blog-post {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.post-image {
  position: relative;
}

.post-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffaa00;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.post-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffaa00;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.page-link {
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #ffaa00;
  padding-bottom: 10px;
}

.search-box {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
}

.search-box button {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 0 25px;
  cursor: pointer;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #ffaa00;
}

.category-list span {
  color: #999;
  font-size: 0.9rem;
}

.popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-post img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.popular-content h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.post-date {
  font-size: 0.8rem;
  color: #888;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: all 0.3s ease;
}

.tags-cloud a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: #666;
  line-height: 1.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffaa00;
}

.submit-btn {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.map-section {
  margin-top: 60px;
}

.map-placeholder iframe {
  border-radius: 15px;
}

/* Donation Page */
.donation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 50px;
}

.donation-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.donation-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.donation-list {
  list-style: none;
  margin-bottom: 30px;
}

.donation-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.donation-list i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 3px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #3d3361;
}

.stat-item h4 {
  font-size: 2rem;
  color: #ffaa00;
  margin-bottom: 8px;
}

.stat-item p {
  color: #666;
  font-size: 0.9rem;
}

.donation-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.donation-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.donation-amounts {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.amount-btn {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn.active,
.amount-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.donation-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #888;
}

.donors-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.donor-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.donor-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.donor-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.donor-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.donor-date {
  font-size: 0.8rem;
  color: #999;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffaa00;
}

.footer-col p {
  color: #d0d0d0;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #d0d0d0;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffaa00;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #d0d0d0;
}

/* Text Center Utility */
.text-center {
  text-align: center;
}

.text-center h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Responsive for new pages */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid,
  .donation-content,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .consultation-types {
    grid-template-columns: 1fr;
  }

  .consult-card.featured {
    transform: scale(1);
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .products-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
  }
}

/* --- COURSE DETAILS PAGE --- */

.course-hero {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  padding: 40px 0 60px;
  color: #fff;
}

.course-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.course-breadcrumb a {
  color: #fff;
  transition: color 0.3s;
}

.course-breadcrumb a:hover {
  color: #ffaa00;
}

.course-hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.course-category-badge {
  display: inline-block;
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 170, 0, 0.3);
}

.course-hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.course-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 30px;
}

.course-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.meta-item i {
  color: #ffaa00;
}

.course-instructor-mini {
  display: flex;
  align-items: center;
  gap: 20px;
}

.course-instructor-mini img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.course-instructor-mini .created-by {
  font-size: 0.85rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 5px;
}

.course-instructor-mini h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.course-instructor-mini p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.course-preview-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.course-preview-card img {
  width: 100%;
  display: block;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-preview-card:hover .preview-overlay {
  opacity: 1;
}

.play-preview-btn {
  background: rgba(255, 170, 0, 0.95);
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.play-preview-btn:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

.course-price-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

.original-price {
  font-size: 1.3rem;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background: #4caf50;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-notice {
  color: #ff5722;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.enroll-now-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.enroll-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.add-wishlist-btn {
  width: 100%;
  background: #fff;
  color: #333;
  border: 2px solid #e0e0e0;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-wishlist-btn:hover {
  border-color: #ffaa00;
  color: #ffaa00;
}

.course-includes h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.course-includes ul {
  list-style: none;
}

.course-includes ul li {
  padding: 10px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-includes ul li:last-child {
  border-bottom: none;
}

.course-includes ul li i {
  color: #ffaa00;
  width: 20px;
}

/* Course Details Section */
.course-details-section {
  padding: 60px 0;
}

.course-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 50px;
}

.content-block {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #333;
}

.section-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Learning Outcomes */
.learning-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.outcome-item i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.outcome-item span {
  color: #555;
  line-height: 1.6;
}

/* Curriculum Accordion */
.curriculum-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.curriculum-section {
  border-bottom: 1px solid #e0e0e0;
}

.curriculum-section:last-child {
  border-bottom: none;
}

.section-header-acc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #f9f9f9;
  transition: background 0.3s ease;
}

.section-header-acc:hover {
  background: #f0f0f0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title i {
  color: #666;
  font-size: 0.9rem;
}

.section-title h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.section-info {
  color: #666;
  font-size: 0.9rem;
}

.section-content {
  padding: 0 25px 15px 55px;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.lesson-item:last-child {
  border-bottom: none;
}

.lesson-item i {
  color: #ffaa00;
  font-size: 1.1rem;
}

.lesson-title {
  flex: 1;
  color: #555;
}

.lesson-duration {
  color: #888;
  font-size: 0.85rem;
}

/* Requirements */
.requirements-list {
  list-style: none;
}

.requirements-list li {
  padding: 12px 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.requirements-list li i {
  color: #4caf50;
  margin-top: 4px;
}

/* Course Description */
.course-description {
  color: #555;
  line-height: 1.8;
}

.course-description h3 {
  font-size: 1.3rem;
  color: #333;
  margin: 25px 0 15px;
}

.course-description ul {
  margin: 15px 0;
  padding-left: 25px;
}

.course-description ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Instructor Detail */
.instructor-detail {
  display: flex;
  gap: 30px;
}

.instructor-detail img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
  flex-shrink: 0;
}

.instructor-info h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 5px;
}

.instructor-title {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.instructor-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.95rem;
}

.instructor-stats .stat i {
  color: #ffaa00;
}

.instructor-bio {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Reviews */
.reviews-summary {
  margin-bottom: 40px;
}

.rating-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
}

.average-rating {
  text-align: center;
}

.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stars-large {
  color: #ffaa00;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.average-rating p {
  color: #666;
  font-size: 0.95rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.rating-bar > span:first-child {
  width: 60px;
  color: #666;
}

.bar {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #ffaa00, #ff8800);
}

.rating-bar > span:last-child {
  width: 40px;
  text-align: right;
  color: #666;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-item {
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-meta .stars {
  color: #ffaa00;
  font-size: 0.9rem;
}

.review-date {
  color: #888;
  font-size: 0.85rem;
}

.review-text {
  color: #555;
  line-height: 1.7;
}

/* Sidebar */
.course-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ffaa00;
}

.features-list-sidebar {
  list-style: none;
}

.features-list-sidebar li {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.features-list-sidebar li:last-child {
  border-bottom: none;
}

.features-list-sidebar i {
  color: #ffaa00;
  font-size: 1.3rem;
  width: 25px;
}

.features-list-sidebar strong {
  display: block;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.features-list-sidebar span {
  color: #666;
  font-size: 0.9rem;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.linkedin {
  background: #0077b5;
}

.section-title-center {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

/* Responsive Course Details */
@media (max-width: 1024px) {
  .course-hero-content,
  .course-layout {
    grid-template-columns: 1fr;
  }

  .course-hero-left h1 {
    font-size: 2.2rem;
  }

  .learning-outcomes {
    grid-template-columns: 1fr;
  }

  .instructor-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .instructor-stats {
    justify-content: center;
  }

  .rating-overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .course-meta-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .section-content {
    padding-left: 25px;
  }
}

.contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #e0e0e0;
  font-size: 0.95rem;
  align-items: flex-start;
}

.contact-list i {
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Copyright Bar */
.copyright-bar {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: span 2;
    text-align: center;
  }
  .footer-logo,
  .social-icons {
    justify-content: center;
  }
  .play-store-btn {
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-col {
    grid-column: span 1;
  }

  .contact-list li {
    justify-content: center;
  }

  .subscribe-form {
    flex-direction: column;
    border: none;
    gap: 10px;
  }

  .subscribe-form input {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-align: center;
  }

  .subscribe-form button {
    width: 100%;
  }
}

.astro-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.astro-card:hover {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
}
.gem-card {
  transition: all 0.4s ease;
}
.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.zodiac-item {
  transition: all 0.3s ease;
}
.zodiac-item:hover {
  transform: scale(1.1);
}
.rotating-wheel {
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.subscribe-form button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slideShow 15s infinite;
  opacity: 0;
}

.slider img:nth-child(1) {
  animation-delay: 0s;
}
.slider img:nth-child(2) {
  animation-delay: 5s;
}
.slider img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.5); */
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeUp 1.2s ease;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 30px;
  background: #ff9800;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #f41f28;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-item {
  position: relative;
  /* height: 90vh; */
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  /* background: rgba(0,0,0,0.4); */
  color: #fff;
  text-align: left;
  padding-left: 5%;
  padding-right: 50%;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-align: left;
  text-shadow: 2px 3px #00000052;
}

.banner-content p {
  font-size: 1.2rem;
  text-align: left;
}

.owl-stage-outer {
  margin-top: 20px;
  padding-top: 20px;
}

.rating i.fas.fa-star {
  color: #ff8800;
}

.courses-carousel .course-card {
  margin: 5px;
}

.courses-carousel .owl-nav button {
  position: absolute;
  top: 38%;
  width: 42px;
  height: 42px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.courses-carousel .owl-nav .owl-prev {
  left: -20px;
}

.courses-carousel .owl-nav .owl-next {
  right: -20px;
}

.courses-carousel .owl-nav span {
  font-size: 26px;
  color: #000;
}
.gemstones-carousel .item {
  padding: 5px;
}

.gemstones-carousel .owl-nav button {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.gemstones-carousel .owl-nav .owl-prev {
  left: -20px;
}

.gemstones-carousel .owl-nav .owl-next {
  right: -20px;
}

.gemstones-carousel .owl-nav span {
  font-size: 24px;
  color: #000;
}

.horoscope-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 30px;
  background: #f1f1f1;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: #6b4eff;
  color: #fff;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-bottom: 25px;
}

.zodiac-item {
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 0px 6px 0px #0000001f;
}

.zodiac-item.active,
.zodiac-item:hover {
  background: #ffffff;
  color: #fff;
  border: 1px solid #3d3361;
}

.zodiac-item img {
  width: 45px;
  margin-bottom: 6px;
}

.tab-content {
  display: none;
  font-size: 16px;
  line-height: 1.6;
}

.tab-content.active {
  display: block;
}

.date-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.date-nav span {
  cursor: pointer;
  opacity: 0.6;
}

.date-nav .active {
  opacity: 1;
  color: #6b4eff;
  /* border-bottom: 2px solid #6b4eff; */
}

.prediction-content-wrapper {
  display: flex;
  gap: 25px;
}

.prediction-categories {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 180px;
}

.prediction-categories li {
  /* padding: 12px 15px; */
  margin-bottom: 8px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  /* background: #f6f6f6; */
  transition: 0.3s;
}

.prediction-categories li.active,
.prediction-categories li:hover {
  /* background: #6b4eff; */
  color: #6b4eff;
}

.prediction-text {
  flex: 1;
  /* background: #fafafa; */
  padding: 20px;
  border-radius: 14px;
}

.tab-content {
  display: none;
  line-height: 1.7;
}

.tab-content.active {
  display: block;
}

.donation-banner {
  position: relative;
  padding: 80px 40px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  overflow: hidden;
}

.donation-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.55); */
}

.donation-content {
  position: relative;
  max-width: 700px;
  color: #fff;
}

.donation-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.donation-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 22px;
}

.donate-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #ffcc00;
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.donate-btn:hover {
  background: #ffd633;
}

.sale-banner-placeholder:after {
  content: "";
  position: absolute;
  background: #0000003b;
  width: 100%;
  height: 100%;
}

/* Top Bar */
.top-bar {
  background: #1b1b1b;
  color: #ccc;
  font-size: 13px;
  padding: 6px 0;
}

.top-bar i {
  color: #d4af37;
  margin-right: 6px;
}

.top-bar a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.top-bar a:hover {
  color: #d4af37;
}

.separator {
  margin: 0 10px;
  opacity: 0.6;
}

/* Header */
.main-header {
  background: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand img {
  height: 55px;
}

/* Navigation */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #222;
  padding: 12px 16px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #d4af37;
}

/* Icons */
.nav-icons a {
  color: #222;
  font-size: 16px;
  margin: 0 8px;
  transition: 0.3s;
}

.nav-icons a:hover {
  color: #d4af37;
}

/* CTA Button */
.header-btn {
  margin-left: 15px;
  /* padding: 8px 18px; */
  border-radius: 30px;
  font-size: 14px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  border: none;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35);
}

.header-btn:hover {
  background: linear-gradient(135deg, #b8962e, #d4af37);
}

.zodiac-section {
  padding: 70px 0;
  background: #faf8f4;
}

/* Card */
.zodiac-card {
  display: block;
  text-align: center;
  background: #fff;
  padding: 30px 15px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

/* Icon */
.zodiac-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5e6b8, #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zodiac-icon img {
  width: 38px;
  height: auto;
}

/* Text */
.zodiac-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.zodiac-card p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* Hover Effect */
.zodiac-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.zodiac-card:hover h5 {
  color: #d4af37;
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Bootstrap Customization */
:root {
  --bs-primary: #ffaa00;
  --bs-primary-rgb: 255, 170, 0;
  --bs-secondary: #2d334a;
  --bs-link-color: #ffaa00;
  --bs-link-hover-color: #ff8800;
}

.container {
  max-width: 1200px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Override Bootstrap navbar for custom styling */
.navbar {
  padding: 15px 0 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky !important;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 15px !important;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 15px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef1220, #ff8800);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
  color: #f8605a !important;
  font-weight: 600;
}

/* Adjust grid gaps to work with Bootstrap */
.row.g-4 > * {
  margin-bottom: 1.5rem;
}

/* Make custom cards work with Bootstrap columns */
.cards-grid,
.astrologers-grid,
.gemstones-grid,
.courses-grid {
  display: block;
}

/* --- TOP BAR --- */
.top-bar {
  background: linear-gradient(352deg, #ffa95b 0%, #f7555a 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-info span {
  margin-right: 10px;
  opacity: 0.95;
}

.right-icons a {
  margin-left: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.right-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* --- HEADER / NAVIGATION --- */
header {
  background-color: #fff;
  padding: 0px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px; /* Adjusts the logo height to fit the navbar */
  width: auto; /* Maintains aspect ratio */
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Styling the text to match the Logo.png font */
.logo-text-white {
  font-family: "Great Vibes", cursive; /* Matches the logo font */
  font-size: 2.2rem; /* Slightly larger for script font readability */
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 10px;
}

nav a {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  /* height: 2px; */
  /* background: linear-gradient(90deg, #ffaa00, #ff8800); */
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: #ffaa00;
  font-weight: 600;
}

/* --- HERO SECTION --- */
.hero-section {
  /* Replace with your file name: top banner girl.jpg */
  background-image: url("images/top-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh; /* Adjust height based on your image aspect ratio */
  position: relative;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  color: #fff;
  padding-top: 50px; /* Push content down slightly if needed */
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 700;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-content .highlight {
  color: #ffaa00; /* Orange/Gold color */
  font-weight: 800;
  display: inline-block;
  text-shadow: 2px 4px 12px rgba(255, 170, 0, 0.4);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 170, 0, 0.5);
  background: linear-gradient(135deg, #ff8800 0%, #ffaa00 100%);
}

/* Slider Dots */
.slider-dots {
  margin-top: 80px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
  width: 12px;
  height: 12px;
}

/* --- INFO CARDS SECTION --- */
.info-cards-section {
  /* Replace with your file name: 2nd bg.jpg */
  /* background-image: url('images/2nd\ bg.png'); */
  background-size: cover;
  background-position: center;
  padding: 60px 0 80px 0;
  background: #333355;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Glassmorphism Card Style */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 35px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.card-icon {
  margin-bottom: 24px;
  display: inline-block;
}

.card-icon img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card:hover .card-icon img {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-weight: 300;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.schedule {
  font-size: 0.75rem;
  color: #a0a0a0;
}

.schedule span {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 2px;
  color: #fff;
}

.card-btn {
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(123, 67, 151, 0.3);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 67, 151, 0.5);
  background: linear-gradient(135deg, #8b5aa7 0%, #ec3440 100%);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- UTILITIES FOR NEW SECTIONS --- */
.section-padding {
  padding: 50px 0;
}

.light-bg {
  background-color: #fcf3e4;
}

.highlight-text {
  color: #ff5722; /* Orange-red color */
}

.text-orange {
  color: #ffaa00;
}

.text-yellow {
  color: #ffc107;
}

.sub-heading {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

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

.view-all-btn {
  border: 1px solid #ccc;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: 0.3s;
  background: #fff;
}

.view-all-btn:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* --- ASTROLOGERS SECTION --- */
.astrologers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.astro-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 18px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.astro-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 30px rgba(0,0,0,0.12); */
  border-color: #e0e0e0;
}

.astro-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333355;
}

.astro-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.astro-info p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 3px;
}

.astro-actions {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.astro-actions button {
  border: none;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.btn-call {
  background-color: #25d366; /* WhatsApp/Call Green */
}

.btn-chat {
  background-color: #2d334a; /* Dark Blue */
}

.rating {
  font-size: 0.8rem;
  color: #ffaa00;
  font-weight: 600;
}

/* --- GEMSTONES SECTION --- */
.gemstones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gem-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #e0e0e0;
}

.badge-off {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff5722;
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 10px;
}

.gem-img-box img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

.gem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gem-desc {
  font-size: 0.8rem;
  color: #888;
  height: 40px; /* Fixed height for alignment */
  overflow: hidden;
  margin-bottom: 15px;
}

.price {
  font-size: 1.1rem;
  color: #ff5722;
  font-weight: 600;
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.9rem;
  margin-right: 5px;
}

.gem-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon-btn {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  color: #555;
}

.buy-btn {
  background: none;
  border: 2px solid #333;
  padding: 0 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  height: 40px;
}

.buy-btn:hover {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- SALE BANNER --- */
.sale-banner-wrapper {
  margin: 30px 0;
}

.sale-banner-placeholder {
  /* Creating a placeholder gradient since image was missing */
  background-image: url("images/20%\ super\ sale\ banner.png ");
  height: 180px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sale-banner-placeholder h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #ffeb3b;
  font-weight: 800;
  font-style: italic;
}

.sale-banner-placeholder button {
  background: red;
  color: white;
  border: none;
  padding: 8px 20px;
  font-weight: bold;
  cursor: pointer;
}

/* --- COURSES SECTION --- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.course-card {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.course-body {
  padding: 15px;
  background: #fff;
}

.stars {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.course-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.instructor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #555;
}

.inst-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.course-price {
  display: flex;
  flex-direction: column;
}

.course-price span {
  font-weight: 700;
  color: #333;
}

.course-price small {
  font-size: 0.7rem;
  color: #888;
}

.enroll-btn {
  background-color: #3d3361;
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.icon-btn-outline {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer;
}

/* --- STATS BAR --- */
.stats-bar {
  background-color: #fff8e1; /* Light beige/yellowish */
  padding: 30px 0;
  border-top: 1px solid #eee;
  /* margin-bottom: 50px; */
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item i {
  font-size: 2rem;
  color: #ffaa00; /* Use logo orange or similar */
}

.stat-item span {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.3;
}

/* --- KUNDALI BANNER --- */
.kundali-banner {
  /* Background Image Path */
  background-image: url("images/check\ your\ kundali\ banner.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
}

/* Dark overlay for readability */
.kundali-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0,0,0,0.6); */
}

.kundali-content {
  position: relative; /* Brings text above overlay */
  z-index: 1;
}

.kundali-content h2 {
  color: #fff;
  font-size: 2.2rem;
  max-width: 800px;
}

.check-now-btn {
  background-color: #ff5722;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
  transition: transform 0.3s;
}

.check-now-btn:hover {
  transform: translateY(-3px);
  background-color: #ff7043;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .kundali-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .kundali-content h2 {
    font-size: 1.5rem;
  }
}

/* --- HOROSCOPE SECTION --- */
.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-center h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header-center p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.horoscope-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  border: none;
  background: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 15px;
  color: #333;
}

.tab-btn.active {
  background-color: #ff5722;
  color: #fff;
  border-radius: 5px;
}

/* Zodiac Grid */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns */
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.zodiac-item {
  cursor: pointer;
  transition: transform 0.3s;
}

.zodiac-item:hover {
  transform: translateY(-5px);
}

.zodiac-item img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.zodiac-item span {
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}

.zodiac-item.active span {
  color: #ff5722;
  font-weight: 700;
}

/* Prediction Box */
.prediction-box {
  margin-top: 20px;
}

.prediction-date {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.date-nav {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888;
}

.date-nav span {
  margin-right: 15px;
  cursor: pointer;
}

.date-nav span.active {
  color: #ff5722;
  font-weight: 600;
  /* text-decoration: underline; */
}

.prediction-content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.prediction-categories {
  list-style: none;
  min-width: 150px;
  border-right: 2px solid #ddd;
  padding-right: 20px;
}

.prediction-categories li {
  padding: 8px 0;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  font-size: 0.95rem;
}

.prediction-categories li.active {
  color: #333;
  /* Simulate the black bar on the left usually seen in design or bolding */
  font-weight: 800;
}

.prediction-text {
  flex: 1;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- DONATION SECTION --- */
.donation-section {
  padding: 50px 0;
}

.donation-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  position: relative;
  overflow: hidden;
}

/* Overlay darker gradient on left side to make text pop against background */
.donation-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(to right, rgba(20, 10, 50, 0.8), transparent);
}

.donation-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

.donation-content h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 500;
}

.donate-btn {
  background-color: #7b61ff; /* Purple color from image */
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.donate-btn:hover {
  background-color: #6248e6;
}

/* --- ABOUT ME SECTION --- */
.about-me-section {
  padding-bottom: 80px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.mt-2 {
  margin-top: 15px;
}

.read-more-btn {
  display: inline-block;
  background-color: #9c89e8; /* Light purple */
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 10px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #7b61ff;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.rotating-wheel {
  width: 100%;
  max-width: 450px;
  animation: rotate 60s linear infinite; /* Slow rotation effect */
}

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

/* --- RESPONSIVE SECTION 3 --- */
@media (max-width: 992px) {
  .zodiac-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-container {
    flex-direction: column-reverse; /* Text on bottom for mobile */
    text-align: center;
  }

  .about-image {
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .zodiac-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prediction-content-wrapper {
    flex-direction: column;
  }

  .prediction-categories {
    display: flex;
    overflow-x: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    gap: 20px;
    padding-bottom: 10px;
  }

  .donation-banner {
    padding: 30px;
    text-align: center;
    justify-content: center;
  }

  .donation-banner::before {
    width: 100%;
    background: rgba(20, 10, 50, 0.6);
  }

  .donation-content h2 {
    font-size: 1.5rem;
  }
}

/* --- GALLERY SECTION --- */
.gallery-section {
  padding-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-card {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.video-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SUBSCRIBE BANNER --- */
.subscribe-section {
  padding: 40px 0;
}

.subscribe-box {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.subscribe-content {
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
}

.subscribe-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.subscribe-form {
  display: flex;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 5px;
  position: relative;
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form button {
  background-color: #7b61ff; /* Purple */
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background-color: #6248e6;
}

/* --- FEATURES BAR --- */
.features-bar {
  padding: 50px 0;
  background-color: #fff;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.feat-icon {
  width: 70px;
  height: 70px;
  background-color: #fff8e1; /* Light yellow/gold bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.8rem;
  border: 1px solid #ffe082;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3d3361;
}

/* --- FOOTER --- */
.main-footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* --- FOOTER LOGO UPDATE --- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Filter to turn the dark blue logo icon into white for the footer */
.footer-logo-icon {
  height: 40px;
  width: auto;
  /* filter: brightness(0) invert(1);  */
}

.brand-col h4 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Google Play Badge Style */
.play-store-btn {
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 1px solid #555;
  padding: 5px 15px;
  border-radius: 8px;
  gap: 10px;
  margin-bottom: 25px;
  cursor: pointer;
  width: 170px;
}

.play-store-btn i {
  font-size: 1.5rem;
  color: #fff; /* Colorful logo usually, simply white here for icon */
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text small {
  font-size: 0.6rem;
  text-transform: uppercase;
}

.store-text span {
  font-size: 1rem;
  font-weight: 600;
}

.social-links h4 {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #ff5722;
}

/* Footer Links & Contact */
.footer-heading {
  color: #ffaa00; /* Gold color */
  margin-bottom: 25px;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffaa00;
}

/* --- NEW PAGES STYLING --- */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2d334a 0%, #1e2530 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.15); */
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.features-list {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.feature-item i {
  color: #4caf50;
  font-size: 1.3rem;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.expertise-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.expertise-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.expertise-card p {
  color: #666;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffaa00;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
}

/* Consultation Page */
.consultation-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.consult-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.consult-card.featured {
  border-color: #ffaa00;
  transform: scale(1.05);
}

.badge-featured {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.consult-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.consult-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #fff;
}

.consult-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.consult-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.price-tag {
  font-size: 1.2rem;
  color: #ffaa00;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.step-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-item p {
  color: #666;
  line-height: 1.6;
}

/* Courses Page */
.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffaa00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.course-thumb {
  position: relative;
}

.course-info {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #666;
  flex-wrap: wrap;
}

.course-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.course-footer .price {
  font-size: 1.4rem;
  color: #333;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
}

.benefit-item i {
  font-size: 3rem;
  color: #ffaa00;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Products Page */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.product-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #666;
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.per-carat {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

/* Blog Page */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.blog-post {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.post-image {
  position: relative;
}

.post-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffaa00;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.post-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffaa00;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.page-link {
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #ffaa00;
  padding-bottom: 10px;
}

.search-box {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
}

.search-box button {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 0 25px;
  cursor: pointer;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #ffaa00;
}

.category-list span {
  color: #999;
  font-size: 0.9rem;
}

.popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-post img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.popular-content h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.post-date {
  font-size: 0.8rem;
  color: #888;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: all 0.3s ease;
}

.tags-cloud a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: #666;
  line-height: 1.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffaa00;
}

.submit-btn {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.map-section {
  margin-top: 60px;
}

.map-placeholder iframe {
  border-radius: 15px;
}

/* Donation Page */
.donation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.donation-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.donation-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.donation-list {
  list-style: none;
  margin-bottom: 30px;
}

.donation-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.donation-list i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 3px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
}

.stat-item h4 {
  font-size: 2rem;
  color: #ffaa00;
  margin-bottom: 8px;
}

.stat-item p {
  color: #666;
  font-size: 0.9rem;
}

.donation-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.donation-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.donation-amounts {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.amount-btn {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn.active,
.amount-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.donation-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #888;
}

.donors-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.donor-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.donor-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.donor-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.donor-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.donor-date {
  font-size: 0.8rem;
  color: #999;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffaa00;
}

.footer-col p {
  color: #d0d0d0;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #d0d0d0;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffaa00;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #d0d0d0;
}

/* Text Center Utility */
.text-center {
  text-align: center;
}

.text-center h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Responsive for new pages */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid,
  .donation-content,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .consultation-types {
    grid-template-columns: 1fr;
  }

  .consult-card.featured {
    transform: scale(1);
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .products-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
  }
}

/* --- COURSE DETAILS PAGE --- */

.course-hero {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  padding: 40px 0 60px;
  color: #fff;
}

.course-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.course-breadcrumb a {
  color: #fff;
  transition: color 0.3s;
}

.course-breadcrumb a:hover {
  color: #ffaa00;
}

.course-hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.course-category-badge {
  display: inline-block;
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 170, 0, 0.3);
}

.course-hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.course-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 30px;
}

.course-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.meta-item i {
  color: #ffaa00;
}

.course-instructor-mini {
  display: flex;
  align-items: center;
  gap: 20px;
}

.course-instructor-mini img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.course-instructor-mini .created-by {
  font-size: 0.85rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 5px;
}

.course-instructor-mini h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.course-instructor-mini p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.course-preview-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.course-preview-card img {
  width: 100%;
  display: block;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-preview-card:hover .preview-overlay {
  opacity: 1;
}

.play-preview-btn {
  background: rgba(255, 170, 0, 0.95);
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.play-preview-btn:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

.course-price-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

.original-price {
  font-size: 1.3rem;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background: #4caf50;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-notice {
  color: #ff5722;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.enroll-now-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.enroll-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.add-wishlist-btn {
  width: 100%;
  background: #fff;
  color: #333;
  border: 2px solid #e0e0e0;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-wishlist-btn:hover {
  border-color: #ffaa00;
  color: #ffaa00;
}

.course-includes h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.course-includes ul {
  list-style: none;
}

.course-includes ul li {
  padding: 10px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-includes ul li:last-child {
  border-bottom: none;
}

.course-includes ul li i {
  color: #ffaa00;
  width: 20px;
}

/* Course Details Section */
.course-details-section {
  padding: 60px 0;
}

.course-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 50px;
}

.content-block {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #333;
}

.section-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Learning Outcomes */
.learning-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.outcome-item i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.outcome-item span {
  color: #555;
  line-height: 1.6;
}

/* Curriculum Accordion */
.curriculum-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.curriculum-section {
  border-bottom: 1px solid #e0e0e0;
}

.curriculum-section:last-child {
  border-bottom: none;
}

.section-header-acc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #f9f9f9;
  transition: background 0.3s ease;
}

.section-header-acc:hover {
  background: #f0f0f0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title i {
  color: #666;
  font-size: 0.9rem;
}

.section-title h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.section-info {
  color: #666;
  font-size: 0.9rem;
}

.section-content {
  padding: 0 25px 15px 55px;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.lesson-item:last-child {
  border-bottom: none;
}

.lesson-item i {
  color: #ffaa00;
  font-size: 1.1rem;
}

.lesson-title {
  flex: 1;
  color: #555;
}

.lesson-duration {
  color: #888;
  font-size: 0.85rem;
}

/* Requirements */
.requirements-list {
  list-style: none;
}

.requirements-list li {
  padding: 12px 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.requirements-list li i {
  color: #4caf50;
  margin-top: 4px;
}

/* Course Description */
.course-description {
  color: #555;
  line-height: 1.8;
}

.course-description h3 {
  font-size: 1.3rem;
  color: #333;
  margin: 25px 0 15px;
}

.course-description ul {
  margin: 15px 0;
  padding-left: 25px;
}

.course-description ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Instructor Detail */
.instructor-detail {
  display: flex;
  gap: 30px;
}

.instructor-detail img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
  flex-shrink: 0;
}

.instructor-info h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 5px;
}

.instructor-title {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.instructor-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.95rem;
}

.instructor-stats .stat i {
  color: #ffaa00;
}

.instructor-bio {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Reviews */
.reviews-summary {
  margin-bottom: 40px;
}

.rating-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
}

.average-rating {
  text-align: center;
}

.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stars-large {
  color: #ffaa00;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.average-rating p {
  color: #666;
  font-size: 0.95rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.rating-bar > span:first-child {
  width: 60px;
  color: #666;
}

.bar {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #ffaa00, #ff8800);
}

.rating-bar > span:last-child {
  width: 40px;
  text-align: right;
  color: #666;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-item {
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-meta .stars {
  color: #ffaa00;
  font-size: 0.9rem;
}

.review-date {
  color: #888;
  font-size: 0.85rem;
}

.review-text {
  color: #555;
  line-height: 1.7;
}

/* Sidebar */
.course-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ffaa00;
}

.features-list-sidebar {
  list-style: none;
}

.features-list-sidebar li {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.features-list-sidebar li:last-child {
  border-bottom: none;
}

.features-list-sidebar i {
  color: #ffaa00;
  font-size: 1.3rem;
  width: 25px;
}

.features-list-sidebar strong {
  display: block;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.features-list-sidebar span {
  color: #666;
  font-size: 0.9rem;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.linkedin {
  background: #0077b5;
}

.section-title-center {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

/* Responsive Course Details */
@media (max-width: 1024px) {
  .course-hero-content,
  .course-layout {
    grid-template-columns: 1fr;
  }

  .course-hero-left h1 {
    font-size: 2.2rem;
  }

  .learning-outcomes {
    grid-template-columns: 1fr;
  }

  .instructor-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .instructor-stats {
    justify-content: center;
  }

  .rating-overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .course-meta-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .section-content {
    padding-left: 25px;
  }
}

.contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #e0e0e0;
  font-size: 0.95rem;
  align-items: flex-start;
}

.contact-list i {
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Copyright Bar */
.copyright-bar {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: span 2;
    text-align: center;
  }
  .footer-logo,
  .social-icons {
    justify-content: center;
  }
  .play-store-btn {
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-col {
    grid-column: span 1;
  }

  .contact-list li {
    justify-content: center;
  }

  .subscribe-form {
    flex-direction: column;
    border: none;
    gap: 10px;
  }

  .subscribe-form input {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-align: center;
  }

  .subscribe-form button {
    width: 100%;
  }
}

.astro-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.astro-card:hover {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
}
.gem-card {
  transition: all 0.4s ease;
}
.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.zodiac-item {
  transition: all 0.3s ease;
}
.zodiac-item:hover {
  transform: scale(1.1);
}
.rotating-wheel {
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.subscribe-form button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slideShow 15s infinite;
  opacity: 0;
}

.slider img:nth-child(1) {
  animation-delay: 0s;
}
.slider img:nth-child(2) {
  animation-delay: 5s;
}
.slider img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.5); */
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeUp 1.2s ease;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 30px;
  background: #ff9800;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #f41f28;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-item {
  position: relative;
  /* height: 90vh; */
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(0,0,0,0.4); */
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Bootstrap Customization */
:root {
  --bs-primary: #ffaa00;
  --bs-primary-rgb: 255, 170, 0;
  --bs-secondary: #2d334a;
  --bs-link-color: #ffaa00;
  --bs-link-hover-color: #ff8800;
}

.container {
  max-width: 1200px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Override Bootstrap navbar for custom styling */
.navbar {
  padding: 15px 0 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky !important;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 8px !important;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 15px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef1220, #ff8800);
  transition: width 0.3s ease;
  display: none;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
  color: #f8605a !important;
  font-weight: 600;
}

/* Adjust grid gaps to work with Bootstrap */
.row.g-4 > * {
  margin-bottom: 1.5rem;
}

/* Make custom cards work with Bootstrap columns */
.cards-grid,
.astrologers-grid,
.gemstones-grid,
.courses-grid {
  display: block;
}

/* --- TOP BAR --- */
.top-bar {
  background: linear-gradient(352deg, #ffa95b 0%, #f7555a 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-info span {
  margin-right: 10px;
  opacity: 0.95;
}

.right-icons a {
  margin-left: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.right-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* --- HEADER / NAVIGATION --- */
header {
  background-color: #fff;
  padding: 0px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px; /* Adjusts the logo height to fit the navbar */
  width: auto; /* Maintains aspect ratio */
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Styling the text to match the Logo.png font */
.logo-text-white {
  font-family: "Great Vibes", cursive; /* Matches the logo font */
  font-size: 2.2rem; /* Slightly larger for script font readability */
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 10px;
}

nav a {
  color: #333;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  letter-spacing: normal;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  /* height: 2px; */
  /* background: linear-gradient(90deg, #ffaa00, #ff8800); */
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: #ffaa00;
  font-weight: 600;
}

/* --- HERO SECTION --- */
.hero-section {
  /* Replace with your file name: top banner girl.jpg */
  background-image: url("images/top-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh; /* Adjust height based on your image aspect ratio */
  position: relative;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  color: #fff;
  padding-top: 50px; /* Push content down slightly if needed */
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 700;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-content .highlight {
  color: #ffaa00; /* Orange/Gold color */
  font-weight: 800;
  display: inline-block;
  text-shadow: 2px 4px 12px rgba(255, 170, 0, 0.4);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 170, 0, 0.5);
  background: linear-gradient(135deg, #ff8800 0%, #ffaa00 100%);
}

/* Slider Dots */
.slider-dots {
  margin-top: 80px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
  width: 12px;
  height: 12px;
}

/* --- INFO CARDS SECTION --- */
.info-cards-section {
  /* Replace with your file name: 2nd bg.jpg */
  /* background-image: url('images/2nd\ bg.png'); */
  background-size: cover;
  background-position: center;
  padding: 60px 0 80px 0;
  background: #333355;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Glassmorphism Card Style */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 35px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.card-icon {
  margin-bottom: 24px;
  display: inline-block;
}

.card-icon img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card:hover .card-icon img {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-weight: 300;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.schedule {
  font-size: 0.75rem;
  color: #a0a0a0;
}

.schedule span {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 2px;
  color: #fff;
}

.card-btn {
  background: linear-gradient(135deg, #7b4397 0%, #dc2430 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(123, 67, 151, 0.3);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 67, 151, 0.5);
  background: linear-gradient(135deg, #8b5aa7 0%, #ec3440 100%);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- UTILITIES FOR NEW SECTIONS --- */
.section-padding {
  padding: 50px 0;
}

.light-bg {
  background-color: #fcf3e4;
}

.highlight-text {
  color: #ff5722; /* Orange-red color */
}

.text-orange {
  color: #ffaa00;
}

.text-yellow {
  color: #ffc107;
}

.sub-heading {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
  padding-bottom: 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.view-all-btn {
  border: 1px solid #ccc;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: 0.3s;
  background: #fff;
}

.view-all-btn:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* --- ASTROLOGERS SECTION --- */
.astrologers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.astro-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 18px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.astro-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 30px rgba(0,0,0,0.12); */
  border-color: #e0e0e0;
}

.astro-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333355;
}

.astro-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.astro-info p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 3px;
}

.astro-actions {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.astro-actions button {
  border: none;
  padding: 6px 15px;
  border-radius: 5px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.btn-call {
  background-color: #026c2a; /* WhatsApp/Call Green */
}

.btn-chat {
  background-color: #ff9a35; /* Dark Blue */
}

.rating {
  font-size: 0.8rem;
  color: #000000;
  font-weight: 600;
}

/* --- GEMSTONES SECTION --- */
.gemstones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gem-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #e0e0e0;
}

.badge-off {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff5722;
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 10px;
}

.gem-img-box img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

.gem-card h3 {
  font-size: 17px;
  margin-bottom: 5px;
}

.gem-desc {
  font-size: 0.8rem;
  color: #888;
  height: 40px; /* Fixed height for alignment */
  overflow: hidden;
  margin-bottom: 15px;
}

.price {
  font-size: 13px;
  color: #ff5722;
  font-weight: 600;
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.9rem;
  margin-right: 5px;
}

.gem-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon-btn {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  color: #555;
}

.buy-btn {
  background: none;
  border: 2px solid #333;
  padding: 0 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  height: 40px;
}

.buy-btn:hover {
  background: linear-gradient(135deg, #f08d00 0%, #f78200 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- SALE BANNER --- */
.sale-banner-wrapper {
  margin: 0px 0;
}

.sale-banner-placeholder {
  /* Creating a placeholder gradient since image was missing */
  background-image: url("../images/super-sale-banner.png ");
  height: 270px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}

.sale-banner-placeholder h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #ffeb3b;
  font-weight: 800;
  font-style: italic;
}

.sale-banner-placeholder button {
  background: red;
  color: white;
  border: none;
  padding: 8px 20px;
  font-weight: bold;
  cursor: pointer;
}

/* --- COURSES SECTION --- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
  gap: 25px;
}

.course-card {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.course-body {
  padding: 15px;
  background: #fff;
}

.stars {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.course-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.instructor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #555;
}

.inst-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.course-price {
  display: flex;
  flex-direction: column;
}

.course-price span {
  font-weight: 700;
  color: #333;
}

.course-price small {
  font-size: 0.7rem;
  color: #888;
}

.enroll-btn {
  /* background-color: #fffbff; */
  color: #fff;
  border: none;
  width: 50%;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  background: linear-gradient(135deg, #fe9935, #d92c32);
}

.icon-btn-outline {
  background: none;
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer;
}

/* --- STATS BAR --- */
.stats-bar {
  background-color: #fff8e1; /* Light beige/yellowish */
  padding: 30px 0;
  border-top: 1px solid #eee;
  /* margin-bottom: 50px; */
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item i {
  font-size: 2rem;
  color: #ffaa00; /* Use logo orange or similar */
}

.stat-item span {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.3;
  text-align: left;
}

/* --- KUNDALI BANNER --- */
.kundali-banner {
  /* Background Image Path */
  background-image: url("../images/check-your-kundali-banner.png");
  background-size: contain;
  background-position: center;
  /* padding: 120px 0; */
  position: relative;
  min-height: 270px;
  background-repeat: no-repeat;
}

/* Dark overlay for readability */
.kundali-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgb(0 0 0 / 26%); */
}

.kundali-content {
  position: relative; /* Brings text above overlay */
  z-index: 1;
}

.kundali-content h2 {
  color: #fff;
  font-size: 2.2rem;
  max-width: 800px;
}

.check-now-btn {
  background-color: #ff5722;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
  transition: transform 0.3s;
}

.check-now-btn:hover {
  transform: translateY(-3px);
  background-color: #ff7043;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .kundali-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .kundali-content h2 {
    font-size: 1.5rem;
  }
}

/* --- HOROSCOPE SECTION --- */
.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-center h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header-center p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.horoscope-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  border: none;
  background: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 15px;
  color: #333;
}

.tab-btn.active {
  background-color: #ff5722;
  color: #fff;
  border-radius: 5px;
}

/* Zodiac Grid */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns */
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.zodiac-item {
  cursor: pointer;
  transition: transform 0.3s;
}

.zodiac-item:hover {
  transform: translateY(-5px);
}

.zodiac-item img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.zodiac-item span {
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}

.zodiac-item.active span {
  color: #ff5722;
  font-weight: 700;
}

/* Prediction Box */
.prediction-box {
  margin-top: 20px;
}

.prediction-date {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.date-nav {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888;
}

.date-nav span {
  margin-right: 15px;
  cursor: pointer;
}

.date-nav span.active {
  color: #ff5722;
  font-weight: 600;
  /* text-decoration: underline; */
}

.prediction-content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.prediction-categories {
  list-style: none;
  min-width: 150px;
  border-right: 2px solid #ddd;
  padding-right: 20px;
}

.prediction-categories li {
  padding: 8px 0;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  font-size: 0.95rem;
}

.prediction-categories li.active {
  color: #333;
  /* Simulate the black bar on the left usually seen in design or bolding */
  font-weight: 800;
}

.prediction-text {
  flex: 1;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- DONATION SECTION --- */
.donation-section {
  padding: 50px 0;
}

.donation-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  position: relative;
  overflow: hidden;
}

/* Overlay darker gradient on left side to make text pop against background */
.donation-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(to right, rgba(20, 10, 50, 0.8), transparent);
}

.donation-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

.donation-content h2 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 500;
}

.donate-btn {
  background-color: #7b61ff; /* Purple color from image */
  color: #fff;
  padding: 12px 0;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0px;
  transition: background 0.3s;
  text-align: center;
  height: 50px;
}

.donate-btn:hover {
  background-color: #6248e6;
}

/* --- ABOUT ME SECTION --- */
.about-me-section {
  padding-bottom: 80px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.mt-2 {
  margin-top: 15px;
}

.read-more-btn {
  display: inline-block;
  background-color: #9c89e8; /* Light purple */
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 10px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #7b61ff;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.rotating-wheel {
  width: 100%;
  max-width: 450px;
  animation: rotate 60s linear infinite; /* Slow rotation effect */
}

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

/* --- RESPONSIVE SECTION 3 --- */
@media (max-width: 992px) {
  .zodiac-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-container {
    flex-direction: column-reverse; /* Text on bottom for mobile */
    text-align: center;
  }

  .about-image {
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .zodiac-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prediction-content-wrapper {
    flex-direction: column;
  }

  .prediction-categories {
    display: flex;
    overflow-x: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    gap: 20px;
    padding-bottom: 10px;
  }

  .donation-banner {
    padding: 30px;
    text-align: center;
    justify-content: center;
  }

  .donation-banner::before {
    width: 100%;
    background: rgba(20, 10, 50, 0.6);
  }

  .donation-content h2 {
    font-size: 1.5rem;
  }
}

/* --- GALLERY SECTION --- */
.gallery-section {
  padding-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-card {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.video-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SUBSCRIBE BANNER --- */
.subscribe-section {
  padding: 40px 0;
}

.subscribe-box {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.subscribe-content {
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
}

.subscribe-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.subscribe-form {
  display: flex;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 5px;
  position: relative;
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form button {
  background-color: #f88735; /* Purple */
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background-color: #6248e6;
}

/* --- FEATURES BAR --- */
.features-bar {
  padding: 50px 0;
  background-color: #fff;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.feat-icon {
  width: 70px;
  height: 70px;
  background-color: #fff8e1; /* Light yellow/gold bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.8rem;
  border: 1px solid #ffe082;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3d3361;
}

/* --- FOOTER --- */
.main-footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* --- FOOTER LOGO UPDATE --- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Filter to turn the dark blue logo icon into white for the footer */
.footer-logo-icon {
  height: 40px;
  width: auto;
  /* filter: brightness(0) invert(1);  */
}

.brand-col h4 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Google Play Badge Style */
.play-store-btn {
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 1px solid #555;
  padding: 5px 15px;
  border-radius: 8px;
  gap: 10px;
  margin-bottom: 25px;
  cursor: pointer;
  width: 170px;
}

.play-store-btn i {
  font-size: 1.5rem;
  color: #fff; /* Colorful logo usually, simply white here for icon */
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text small {
  font-size: 0.6rem;
  text-transform: uppercase;
}

.store-text span {
  font-size: 1rem;
  font-weight: 600;
}

.social-links h4 {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  width: 100%;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #ff5722;
}

/* Footer Links & Contact */
.footer-heading {
  color: #ffaa00; /* Gold color */
  margin-bottom: 25px;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffaa00;
}

/* --- NEW PAGES STYLING --- */

/* Page Hero */
.page-hero {
  /* background: linear-gradient(135deg, #2d334a 0%, #1e2530 100%); */
  /* padding: 80px 0 60px; */
  text-align: center;
  color: #fff;
  background-image: url("../images/innerpage_baner.png");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 350px;
}

.page-hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: left;
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.15); */
}

.about-content h2 {
  font-size: 26px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  font-size: 16px;
  line-height: normal;
  color: #000000;
  margin-bottom: 20px;
}

.features-list {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.feature-item i {
  color: #4caf50;
  font-size: 1.3rem;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.expertise-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.expertise-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.expertise-card p {
  color: #666;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffaa00;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
}

/* Consultation Page */
.consultation-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.consult-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.consult-card.featured {
  border-color: #ffaa00;
  transform: scale(1.05);
}

.badge-featured {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.consult-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.consult-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f68134 0%, #df3e33 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #fff;
}

.consult-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.consult-card p {
  color: #000000;
  margin-bottom: 20px;
  line-height: normal;
  font-size: 15px;
}

.price-tag {
  font-size: 16px;
  color: #ffaa00;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.step-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-item p {
  color: #666;
  line-height: 1.6;
}

/* Courses Page */
.course-badge {
  position: relative;
  top: 15px;
  right: -9px;
  background: #ffaa00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.course-thumb {
  position: relative;
}

.course-info {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #666;
  flex-wrap: wrap;
}

.course-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.course-footer .price {
  font-size: 1.4rem;
  color: #df3d32;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
}

.benefit-item i {
  font-size: 3rem;
  color: #ffaa00;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Products Page */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.product-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #666;
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.per-carat {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

/* Blog Page */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.blog-post {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.post-image {
  position: relative;
}

.post-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffaa00;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.post-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffaa00;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.page-link {
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #ffaa00;
  padding-bottom: 10px;
}

.search-box {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
}

.search-box button {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 0 25px;
  cursor: pointer;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #ffaa00;
}

.category-list span {
  color: #999;
  font-size: 0.9rem;
}

.popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-post img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.popular-content h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.post-date {
  font-size: 0.8rem;
  color: #888;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: all 0.3s ease;
}

.tags-cloud a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: #666;
  line-height: 1.8;
}

.social-links {
  display: block;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffaa00;
}

.submit-btn {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.map-section {
  margin-top: 60px;
}

.map-placeholder iframe {
  border-radius: 15px;
}

/* Donation Page */
.donation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 50px;
}

.donation-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.donation-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

.donation-list {
  list-style: none;
  margin-bottom: 30px;
}

.donation-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.donation-list i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 3px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #3d3361;
}

.stat-item h4 {
  font-size: 2rem;
  color: #ffaa00;
  margin-bottom: 8px;
}

.stat-item p {
  color: #666;
  font-size: 0.9rem;
}

.donation-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.donation-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.donation-amounts {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.amount-btn {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn.active,
.amount-btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border-color: #ffaa00;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.donation-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #888;
}

.donors-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  gap: 9px;
  margin-top: 50px;
}

.donor-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.donor-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.donor-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.donor-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.donor-date {
  font-size: 0.8rem;
  color: #999;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-col p {
  color: #d0d0d0;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

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

.footer-col ul li a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffaa00;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #d0d0d0;
}

/* Text Center Utility */
.text-center {
  text-align: center;
}

.text-center h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

/* Responsive for new pages */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid,
  .donation-content,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .consultation-types {
    grid-template-columns: 1fr;
  }

  .consult-card.featured {
    transform: scale(1);
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .products-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
  }
}

/* --- COURSE DETAILS PAGE --- */

.course-hero {
  background: linear-gradient(135deg, #1e2530 0%, #2d334a 100%);
  padding: 40px 0 60px;
  color: #fff;
}

.course-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.course-breadcrumb a {
  color: #fff;
  transition: color 0.3s;
}

.course-breadcrumb a:hover {
  color: #ffaa00;
}

.course-hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.course-category-badge {
  display: inline-block;
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 170, 0, 0.3);
}

.course-hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.course-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 0px;
}

.course-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.meta-item i {
  color: #ffaa00;
}

.course-instructor-mini {
  display: flex;
  align-items: center;
  gap: 20px;
}

.course-instructor-mini img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.course-instructor-mini .created-by {
  font-size: 0.85rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 5px;
}

.course-instructor-mini h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.course-instructor-mini p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.course-preview-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.course-preview-card img {
  width: 100%;
  display: block;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-preview-card:hover .preview-overlay {
  opacity: 1;
}

.play-preview-btn {
  background: rgba(255, 170, 0, 0.95);
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.play-preview-btn:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

.course-price-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

.original-price {
  font-size: 1.3rem;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background: #4caf50;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-notice {
  color: #ff5722;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.enroll-now-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.enroll-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.add-wishlist-btn {
  width: 100%;
  background: #fff;
  color: #333;
  border: 2px solid #e0e0e0;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-wishlist-btn:hover {
  border-color: #ffaa00;
  color: #ffaa00;
}

.course-includes h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.course-includes ul {
  list-style: none;
}

.course-includes ul li {
  padding: 10px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-includes ul li:last-child {
  border-bottom: none;
}

.course-includes ul li i {
  color: #ffaa00;
  width: 20px;
}

/* Course Details Section */
.course-details-section {
  padding: 60px 0;
}

.course-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 50px;
}

.content-block {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.content-block h2 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #333;
}

.section-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Learning Outcomes */
.learning-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.outcome-item i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.outcome-item span {
  color: #555;
  line-height: 1.6;
}

/* Curriculum Accordion */
.curriculum-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.curriculum-section {
  border-bottom: 1px solid #e0e0e0;
}

.curriculum-section:last-child {
  border-bottom: none;
}

.section-header-acc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #f9f9f9;
  transition: background 0.3s ease;
}

.section-header-acc:hover {
  background: #f0f0f0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title i {
  color: #666;
  font-size: 0.9rem;
}

.section-title h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.section-info {
  color: #666;
  font-size: 0.9rem;
}

.section-content {
  padding: 0 25px 15px 55px;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.lesson-item:last-child {
  border-bottom: none;
}

.lesson-item i {
  color: #ffaa00;
  font-size: 1.1rem;
}

.lesson-title {
  flex: 1;
  color: #555;
}

.lesson-duration {
  color: #888;
  font-size: 0.85rem;
}

/* Requirements */
.requirements-list {
  list-style: none;
}

.requirements-list li {
  padding: 12px 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.requirements-list li i {
  color: #4caf50;
  margin-top: 4px;
}

/* Course Description */
.course-description {
  color: #555;
  line-height: 1.8;
}

.course-description h3 {
  font-size: 1.3rem;
  color: #333;
  margin: 25px 0 15px;
}

.course-description ul {
  margin: 15px 0;
  padding-left: 25px;
}

.course-description ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Instructor Detail */
.instructor-detail {
  display: flex;
  gap: 30px;
}

.instructor-detail img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
  flex-shrink: 0;
}

.instructor-info h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 5px;
}

.instructor-title {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.instructor-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.95rem;
}

.instructor-stats .stat i {
  color: #ffaa00;
}

.instructor-bio {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Reviews */
.reviews-summary {
  margin-bottom: 40px;
}

.rating-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
}

.average-rating {
  text-align: center;
}

.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stars-large {
  color: #ffaa00;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.average-rating p {
  color: #666;
  font-size: 0.95rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.rating-bar > span:first-child {
  width: 60px;
  color: #666;
}

.bar {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #ffaa00, #ff8800);
}

.rating-bar > span:last-child {
  width: 40px;
  text-align: right;
  color: #666;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-item {
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-meta .stars {
  color: #ffaa00;
  font-size: 0.9rem;
}

.review-date {
  color: #888;
  font-size: 0.85rem;
}

.review-text {
  color: #555;
  line-height: 1.7;
}

/* Sidebar */
.course-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.sidebar-card h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ffaa00;
}

.features-list-sidebar {
  list-style: none;
}

.features-list-sidebar li {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.features-list-sidebar li:last-child {
  border-bottom: none;
}

.features-list-sidebar i {
  color: #ffaa00;
  font-size: 1.3rem;
  width: 25px;
}

.features-list-sidebar strong {
  display: block;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.features-list-sidebar span {
  color: #666;
  font-size: 0.9rem;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.linkedin {
  background: #0077b5;
}

.section-title-center {
  text-align: center;
  font-size: 26px;
  margin-bottom: 50px;
  color: #333;
}

/* Responsive Course Details */
@media (max-width: 1024px) {
  .course-hero-content,
  .course-layout {
    grid-template-columns: 1fr;
  }

  .course-hero-left h1 {
    font-size: 2.2rem;
  }

  .learning-outcomes {
    grid-template-columns: 1fr;
  }

  .instructor-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .instructor-stats {
    justify-content: center;
  }

  .rating-overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .course-meta-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .section-content {
    padding-left: 25px;
  }
}

.contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #e0e0e0;
  font-size: 0.95rem;
  align-items: flex-start;
}

.contact-list i {
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Copyright Bar */
.copyright-bar {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: span 2;
    text-align: center;
  }
  .footer-logo,
  .social-icons {
    justify-content: center;
  }
  .play-store-btn {
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-col {
    grid-column: span 1;
  }

  .contact-list li {
    justify-content: center;
  }

  .subscribe-form {
    flex-direction: column;
    border: none;
    gap: 10px;
  }

  .subscribe-form input {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-align: center;
  }

  .subscribe-form button {
    width: 100%;
  }
}

.astro-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.astro-card:hover {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
}
.gem-card {
  transition: all 0.4s ease;
}
.gem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.zodiac-item {
  transition: all 0.3s ease;
}
.zodiac-item:hover {
  transform: scale(1.1);
}
.rotating-wheel {
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.subscribe-form button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slideShow 15s infinite;
  opacity: 0;
}

.slider img:nth-child(1) {
  animation-delay: 0s;
}
.slider img:nth-child(2) {
  animation-delay: 5s;
}
.slider img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.5); */
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeUp 1.2s ease;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 30px;
  background: #ff9800;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #f41f28;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-item {
  position: relative;
  /* height: 90vh; */
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  /* background: rgba(0,0,0,0.4); */
  color: #fff;
  text-align: left;
  padding-left: 5%;
  padding-right: 60%;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-align: left;
  text-shadow: 2px 3px #00000052;
}

.banner-content p {
  font-size: 1.2rem;
  text-align: left;
}

.owl-stage-outer {
  margin-top: 20px;
  padding-top: 20px;
}

.rating i.fas.fa-star {
  color: #ff8800;
}

.courses-carousel .course-card {
  margin: 5px;
}

.courses-carousel .owl-nav button {
  position: absolute;
  top: 38%;
  width: 42px;
  height: 42px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.courses-carousel .owl-nav .owl-prev {
  left: -20px;
}

.courses-carousel .owl-nav .owl-next {
  right: -20px;
}

.courses-carousel .owl-nav span {
  font-size: 26px;
  color: #000;
}
.gemstones-carousel .item {
  padding: 5px;
}

.gemstones-carousel .owl-nav button {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.gemstones-carousel .owl-nav .owl-prev {
  left: -20px;
}

.gemstones-carousel .owl-nav .owl-next {
  right: -20px;
}

.gemstones-carousel .owl-nav span {
  font-size: 24px;
  color: #000;
}

.horoscope-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 30px;
  background: #f1f1f1;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: #f78235;
  color: #fff;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-bottom: 25px;
}

.zodiac-item {
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 0px 6px 0px #0000001f;
}

.zodiac-item.active,
.zodiac-item:hover {
  background: #ffffff;
  color: #fff;
  border: 1px solid #3d3361;
}

.zodiac-item img {
  width: 45px;
  margin-bottom: 6px;
}

.tab-content {
  display: none;
  font-size: 16px;
  line-height: 1.6;
}

.tab-content.active {
  display: block;
}

.date-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.date-nav span {
  cursor: pointer;
  opacity: 0.6;
}

.date-nav .active {
  opacity: 1;
  color: #6b4eff;
  /* border-bottom: 2px solid #6b4eff; */
}

.prediction-content-wrapper {
  display: flex;
  gap: 25px;
}

.prediction-categories {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 180px;
}

.prediction-categories li {
  /* padding: 12px 15px; */
  margin-bottom: 8px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  /* background: #f6f6f6; */
  transition: 0.3s;
}

.prediction-categories li.active,
.prediction-categories li:hover {
  /* background: #6b4eff; */
  color: #f78235;
}

.prediction-text {
  flex: 1;
  /* background: #fafafa; */
  padding: 20px;
  border-radius: 14px;
}

.tab-content {
  display: none;
  line-height: 1.7;
}

.tab-content.active {
  display: block;
}

.donation-banner {
  position: relative;
  padding: 80px 40px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  overflow: hidden;
}

.donation-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.55); */
}

.donation-content {
  position: relative;
  max-width: 700px;
  color: #fff;
}

.donation-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.donation-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 22px;
}

.donate-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #ffcc00;
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.donate-btn:hover {
  background: #ffd633;
}

.sale-banner-placeholder:after {
  content: "";
  position: absolute;
  background: #0000003b;
  width: 100%;
  height: 100%;
}

/* Top Bar */
.top-bar {
  background: #ff9a35;
  color: #ccc;
  font-size: 13px;
  padding: 6px 0;
}

.top-bar i {
  color: #d4af37;
  margin-right: 6px;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.top-bar a:hover {
  color: #f10b1f;
}

.separator {
  margin: 0 10px;
  opacity: 0.6;
}

/* Header */
.main-header {
  background: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0 10px;
}

.navbar-brand img {
  height: 55px;
}

/* Navigation */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #222;
  padding: 12px 16px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #d4af37;
}

/* Icons */
.nav-icons a {
  color: #222;
  font-size: 16px;
  margin: 0 8px;
  transition: 0.3s;
}

.nav-icons a:hover {
  color: #d4af37;
}

/* CTA Button */
.header-btn {
  margin-left: 15px;
  /* padding: 8px 18px; */
  border-radius: 30px;
  font-size: 14px;
  background: linear-gradient(135deg, #fe9935, #d92c32);
  border: none;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35);
}

.header-btn:hover {
  background: linear-gradient(135deg, #b8962e, #d4af37);
}

.zodiac-section {
  padding: 70px 0;
  background: #faf8f4;
}

/* Card */
.zodiac-card {
  display: block;
  text-align: center;
  background: #fff;
  padding: 30px 15px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

/* Icon */
.zodiac-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ddc8, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zodiac-icon img {
  width: 38px;
  height: auto;
}

/* Text */
.zodiac-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.zodiac-card p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* Hover Effect */
.zodiac-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.zodiac-card:hover h5 {
  color: #d4af37;
}

.top-left {
  color: #fff;
}

.top-right {
  color: #fff;
}

.cart-wrapper {
  position: relative;
  display: inline-block;
}

.cart-icon a {
  font-size: 22px;
  color: #333;
  cursor: pointer;
}

/* Mini Cart Box */
.mini-cart {
  position: absolute;
  top: 35px;
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
}

.mini-cart.active {
  display: block;
}

.mini-cart-header {
  padding: 12px 15px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

.cart-item {
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px solid #f2f2f2;
}

.cart-footer {
  padding: 15px;
  text-align: center;
}

.cart-footer a {
  display: inline-block;
  padding: 10px 15px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 13px;
}

/* Search Icon */
.search-icon {
  cursor: pointer;
  font-size: 18px;
  color: #333;
}

/* Search Box */
.search-box {
  position: absolute;
  top: 65px;
  right: 300px;
  width: 260px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

/* Smooth animation */
.search-box.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.step-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8b500, #ff9800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.step-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.step-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.owl-carousel button.enroll-btn {
  width: 100%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8b500, #ff9800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
}

.benefit-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 14px;
  color: #000000;
  line-height: normal;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0 15px;
}

.pagination {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.page-item {
  display: flex;
}

.page-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.page-link:hover {
  background: linear-gradient(135deg, #f8b500, #ff9800);
  color: #ffffff;
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #f8b500, #ff9800);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(248, 181, 0, 0.4);
}

.page-item.disabled .page-link {
  pointer-events: none;
  opacity: 0.4;
}

.page-item.dots span {
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 18px;
  color: #999;
}

.course-hero {
  padding: 70px 0;
  background: linear-gradient(180deg, #fff7e6, #ffffff);
}

.course-breadcrumb {
  font-size: 14px;
  margin-bottom: 11px;
  color: #666;
}

.course-breadcrumb a {
  color: #ff9800;
  text-decoration: none;
}

.course-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}

.course-badge {
  display: inline-block;
  background: #ffe0b2;
  color: #e65100;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.course-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.course-subtitle {
  font-size: 16px;
  color: #000000;
  line-height: normal;
}

.course-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 15px 0;
}

.stat strong {
  font-weight: 700;
}

.instructor-box {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

.instructor-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.course-card {
  background: #ffffff;
  border-radius: 18px;
  /* box-shadow: 0 20px 60px rgba(0,0,0,0.12); */
  /* padding: 25px; */
  position: sticky;
  top: 20px;
}

.preview-box {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.preview-box img {
  width: 100%;
}

.preview-btn {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.pricing {
  margin: 25px 0;
}

.price .current {
  font-size: 30px;
  font-weight: 700;
  color: #e65100;
}

.price .original {
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}

.discount {
  background: #ff9800;
  color: #fff !important;
  padding: 4px 10px;
  border-radius: 6px;
  margin-left: 10px;
  font-size: 13px;
}

.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
}

.btn-secondary {
  width: 100%;
  padding: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
}

.course-features ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.course-features li {
  margin-bottom: 10px;
  font-size: 15px;
}

.guarantee {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-top: 15px;
}

.course-features {
  color: #000;
  padding: 10px;
}

.product {
  height: 60vh;
}

.category-slider-section {
  padding: 70px 0;
  background: #fafafa;
}

.section-title {
  text-align: center;
  font-size: 23px;
  margin-bottom: 40px;
}

.category-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  /* box-shadow: 0 12px 35px rgba(0,0,0,0.08); */
  transition: all 0.35s ease;
  text-decoration: none;
  color: #333;
  float: left;
  border: 1px solid #ccc;
}

.category-card img {
  width: 100%;
  margin-bottom: 15px;
}

.category-card h4 {
  font-size: 18px;
  font-weight: 600;
}

.category-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 25px 50px rgba(0,0,0,0.12); */
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #ff9800;
}

.ecom-benefits {
  padding: 70px 0;
  background: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.product-details {
  padding: 80px 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.product-gallery img {
  width: 100%;
  border-radius: 16px;
}

.thumbnail-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.thumbnail-row img {
  width: 80px;
  border-radius: 10px;
  cursor: pointer;
}

.product-badge {
  background: #ffe0b2;
  color: #e65100;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #e65100;
}

.per-carat {
  margin-left: 8px;
  color: #777;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}

.btn-primary {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: #fff;
  border: 1px solid #ddd;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
}

.product-tabs {
  background: #f9f9f9;
  padding: 60px 0;
}

.tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.tab {
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.tab.active {
  color: #ff9800;
  border-bottom: 2px solid #ff9800;
}

.product-gallery {
  max-width: 450px;
}

.main-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  cursor: zoom-in;
}

.main-image img {
  width: 100%;
  transition: transform 0.4s ease;
}

/* ZOOM EFFECT */
.zoom-container:hover img {
  transform: scale(1.8);
}

.thumb-slider {
  margin-top: 15px;
}

.thumb-slider img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
}

.thumb-slider .swiper-slide {
  width: 90px !important;
}

.thumb-slider img:hover {
  border-color: #ff9800;
}

.product-info {
  max-width: 520px;
  font-family: "Poppins", sans-serif;
}

.product-badge {
  display: inline-block;
  background: #fff3e0;
  color: #e65100;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.product-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.short-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 18px;
}

.stars {
  color: #ffb400;
  font-size: 18px;
}

.review-count {
  color: #888;
}

.price-box {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  /* margin-bottom: 20px; */
}

.price {
  font-size: 16px;
  font-weight: 700;
  color: #f78100;
}

.per-carat {
  font-size: 15px;
  color: #777;
}

.tax-note {
  font-size: 12px;
  color: #999;
  margin-left: 10px;
}

.product-options label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.product-options select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
  margin-bottom: 20px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #444;
  margin-bottom: 24px;
}

.product-meta i {
  color: #ff9800;
  margin-right: 6px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.btn-primary {
  flex: 1;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
}

.btn-outline {
  width: 54px;
  border: 2px solid #ddd;
  background: #fff;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
}

.delivery {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-tabs {
  margin-top: 60px;
  font-family: "Poppins", sans-serif;
}

.tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 25px;
}

.tab {
  background: none;
  border: none;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #666;
  position: relative;
}

.tab.active {
  color: #f57c00;
}

.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: #f57c00;
  border-radius: 3px;
}

.tabs-content {
  padding-top: 10px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-pane.active {
  display: block;
}

.tab-pane p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  padding-left: 26px;
  margin-bottom: 10px;
  position: relative;
}

.benefits-list li::before {
  content: "Ã¢Å“â€";
  position: absolute;
  left: 0;
  color: #f57c00;
  font-weight: bold;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.spec-table td:first-child {
  font-weight: 600;
  width: 30%;
}

.faq-item {
  margin-bottom: 18px;
}

.faq-item strong {
  display: block;
  margin-bottom: 6px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trending-gems {
  padding: 70px 0;
  background: #fafafa;
  font-family: "Poppins", sans-serif;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.section-title p {
  font-size: 15px;
  color: #666;
  text-align: left;
}

.gems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.gem-banner {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 390px;
  display: block;
}

.gem-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gem-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.gem-banner:hover img {
  transform: scale(1.08);
}

.banner-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
}

.banner-overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.banner-overlay span {
  font-size: 14px;
  opacity: 0.9;
}

.hgt {
  display: block;
}

.product-info .price-box {
  align-items: start;
}

.service-area {
  padding: 80px 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fafafa;
  padding: 30px 22px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.service-icon i {
  font-size: 26px;
  color: #fff;
}

.service-content h6 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.related-products {
  padding: 70px 0;
  background: #fafafa;
  font-family: "Poppins", sans-serif;
}

.section-header {
  text-align: center;
  /* margin-bottom: 35px; */
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
}

.section-header p {
  color: #666;
  font-size: 14px;
  text-align: left;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.desc {
  font-size: 14px;
  color: #777;
  margin: 6px 0;
}

.price {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.price span {
  font-size: 13px;
  color: #777;
}

.btn-cart {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  color: #f57c00;
}

/* Background */
.login-page {
  height: 100vh;
  background: url("../images/banner/banner-2.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card */
.login-card {
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* Header */
.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header h2 {
  font-size: 26px;
  font-weight: 700;
}

.login-header p {
  font-size: 14px;
  color: #666;
}

/* Inputs */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-group input:focus {
  outline: none;
  border-color: #f57c00;
}

/* Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 20px;
}

.form-options a {
  text-decoration: none;
  color: #f57c00;
}

/* Button */
.login-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* Footer */
.login-footer {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}

.login-footer a {
  color: #f57c00;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
  .login-card {
    margin: 0 16px;
  }
}

.gtrio {
  min-height: 100vh;
  background: url("../images/banner/banner-2.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.register-wrapper h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
}

.register-wrapper p {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-group input:focus {
  outline: none;
  border-color: #ff9800;
}

.register-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.register-btn:hover {
  opacity: 0.95;
}

.login-link {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}

.login-link a {
  color: #ff9800;
  font-weight: 600;
  text-decoration: none;
}

.terms {
  font-size: 12px;
  color: #777;
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 480px) {
  .register-wrapper {
    margin: 0 15px;
    padding: 28px;
  }
}

.booking-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

/* HEADER */
.booking-header {
  padding: 35px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
}

.booking-header h1 {
  margin: 0 0 6px;
  font-size: 32px;
}

.booking-header p {
  margin: 0;
  opacity: 0.95;
}

/* CONTENT */
.booking-body {
  padding: 35px;
  background: #fff;
}

/* FORM GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid .full {
  grid-column: 1/-1;
}

label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.muted {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* SLOT GRID */
.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.slot {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 13px;
  cursor: pointer;
}

.slot.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* SUMMARY */
.summary {
  background: #fff7ef;
  padding: 16px;
  border-radius: 14px;
  font-size: 14px;
}

/* BUTTONS */
.btn {
  /* background:linear-gradient(135deg,#ff9800,#f57c00); */
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 7px;
  cursor: pointer;
  background: #ff9a35;
  width: auto;
}

.btn.ghost {
  background: #f7e1ca;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn:hover {
  opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .booking-header h1 {
    font-size: 26px;
  }
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

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

.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #f57c00;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
}

.card-content {
  padding: 20px;
}

.meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
}

.card-content h3 {
  font-size: 18px;
  margin: 10px 0;
  line-height: 1.4;
}

.card-content p {
  font-size: 14px;
  color: #555;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #f57c00;
  text-decoration: none;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.pagination a {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.pagination a.active {
  background: #f57c00;
  color: #fff;
  border-color: #f57c00;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* HERO */
.blog-hero {
  background: linear-gradient(135deg, #f57c00, #ff9800);
  color: #fff;
  padding: 80px 0;
}

.blog-category {
  background: #fff;
  color: #f57c00;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
}

.blog-meta {
  margin-top: 15px;
  display: flex;
  gap: 20px;
  font-size: 14px;
}

/* LAYOUT */
.blog-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}

/* MAIN */
.featured-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
}

.lead {
  font-size: 18px;
  font-weight: 500;
}

.blog-main h2,
.blog-main h3 {
  margin: 30px 0 15px;
  font-size: 22px !important;
}

blockquote {
  background: #fff3e0;
  border-left: 5px solid #f57c00;
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
}

.post-tags a {
  display: inline-block;
  margin: 10px 10px 0 0;
  padding: 6px 14px;
  border-radius: 20px;
  background: #eee;
  text-decoration: none;
  font-size: 13px;
}

.author-box {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  margin: 40px 0;
}

.author-box img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

/* COMMENTS */
.comments .comment {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  margin: 15px 0;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.comment-form button {
  background: #f57c00;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
}

/* SIDEBAR */
.blog-sidebar .sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 0px;
}

.side-post {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.side-post img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog-wrapper {
    grid-template-columns: 1fr;
  }
}

.sidebar-box ul {
  padding-left: 0px;
}

.blog-main ul {
  padding-left: 0;
}

.blog-main ul li {
  padding-bottom: 10px;
}

.curriculum-accordion {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}

.curriculum-section {
  border-bottom: 1px solid #e5e5e5;
}

.section-header-acc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  background: #fafafa;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title i {
  transition: transform 0.3s ease;
}

.section-info {
  font-size: 14px;
  color: #777;
}

.section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
}

.curriculum-section.active .section-content {
  max-height: 1000px;
}

.curriculum-section.active .section-title i {
  transform: rotate(180deg);
}

.lesson-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid #f1f1f1;
  font-size: 15px;
}

.lesson-item i {
  color: #ff7a00;
  margin-right: 10px;
}

.lesson-title {
  flex: 1;
  margin-left: 10px;
}

.lesson-duration {
  font-size: 13px;
  color: #999;
}
.curriculum-accordion .section-title {
  margin-bottom: 0;
}

#slotSelect {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  width: 200px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

#slotSelect:hover {
  border-color: #ff7a00;
}

.selected-text {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}
.astro-image img {
  height: 100px;
  width: 100px !important;
}

.huwe .course-card {
  padding: 0px;
}

aside.course-card {
  padding: 20px;
}

.map-placeholder {
  margin-top: 30px;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  position: relative;
  width: 90%;
  max-width: 700px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.popup-content video {
  width: 100%;
  height: auto;
  display: block;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.donation-section {
  /* background: #f9fafc; */
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 700;
}

.section-header span {
  color: #ff9a35;
}

.section-header p {
  color: #666;
  margin-top: 10px;
}

.donation-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.donation-info h3,
.donation-form-box h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.donation-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.donation-list li {
  margin-bottom: 12px;
  font-size: 15px;
}

.donation-list i {
  color: #d4a017;
  margin-right: 10px;
}

.impact-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.stat-box h4 {
  color: #d4a017;
  font-size: 26px;
  text-align: left;
}

.donation-form-box {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.donation-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.donation-amounts button {
  padding: 10px 18px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}

.donation-amounts .active,
.donation-amounts button:hover {
  /* background: #d4a017; */
  color: #fff;
  border-color: #d4a017;
  background: linear-gradient(135deg, #fe9935, #d92c32);
}

.donation-form input,
.donation-form select,
.donation-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.checkbox {
  font-size: 14px;
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.donate-btn {
  width: 180px;
  /* background: linear-gradient(135deg, #d4a017, #f0c14b); */
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  background: #ff9a35;
}

.donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.4);
}

.donation-note {
  font-size: 13px;
  color: #777;
  text-align: center;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .donation-wrapper {
    grid-template-columns: 1fr;
  }
}

.donation-form input[type="checkbox"] {
  float: left;
  width: auto;
  margin-top: 3px;
  margin-right: 5px;
}

.donation-form label.checkbox {
  display: block;
  float: left;
}

.pic {
  width: 100%;
  float: left;
  padding: 20px 0px;
}

.pic img {
  width: 100%;
  /* height: 400px; */
  object-fit: contain;
  border-radius: 15px;
}

.donors-section {
  background: #f8f9fb;
  margin-top: 50px;
}

.donors-list {
  margin-top: 40px;
}

.donor-row {
  display: grid;
  grid-template-columns: 60px 1.5fr 1fr 1fr;
  align-items: center;
  background: #ffffff;
  padding: 18px 25px;
  border-radius: 12px;
  margin-bottom: 0px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.donor-row:hover {
  transform: translateY(-3px);
}

.donor-avatar {
  width: 45px;
  height: 45px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a017;
  font-size: 18px;
}

.donor-details h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.donor-details p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #777;
}

.donor-amount {
  font-weight: 600;
  color: #d4a017;
  text-align: right;
}

.donor-date {
  font-size: 13px;
  color: #999;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .donor-row {
    grid-template-columns: 50px 1fr;
    row-gap: 10px;
  }

  .donor-amount,
  .donor-date {
    text-align: left;
    font-size: 14px;
  }
}

.uhi .section-header {
  margin-bottom: 0;
}

.drew {
  position: relative;
}

.drew:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: url(../images/back-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: animName 25s linear infinite;
  top: 110px;
  left: -270px;
}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* --- NAV DROPDOWN (Dashboard) --- */
.navbar .dropdown-menu {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.12);
  padding: 10px;
}

.navbar .dropdown-item {
  border-radius: 10px;
  padding: 5px 12px;
  font-weight: normal;
  color: #2d334a;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: rgba(17, 24, 39, 0.06);
  color: #2d334a;
}

.navbar .dropdown-item i {
  width: 20px;
  text-align: center;
  color: var(--bs-primary);
}

/* --- ECOMMERCE CHECKOUT (payment) --- */
.payment-method {
  width: 100%;
  cursor: pointer;
  margin: 0;
}

.payment-method-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-method-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 96px;
}

.payment-method-body .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.06);
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #111827;
}

.payment-method-body .title {
  font-weight: 800;
  color: #2d334a;
}

.payment-method-body .sub {
  font-size: 0.85rem;
  color: #6c757d;
}

.payment-method:hover .payment-method-body {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(45, 51, 74, 0.08);
}

.payment-method-input:checked + .payment-method-body {
  border-color: rgba(255, 170, 0, 0.55);
  box-shadow: inset 3px 0 0 var(--bs-primary),
    0 10px 20px rgba(45, 51, 74, 0.08);
}

.payment-details {
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(17, 24, 39, 0.02);
  border-radius: 14px;
  padding: 14px;
}

.payment-qr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-qr-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px dashed rgba(17, 24, 39, 0.18);
  color: #111827;
  font-size: 22px;
}

.payment-qr-text {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 600;
}

.payment-trust {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.payment-trust .item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #fff;
  color: #2d334a;
  font-weight: 600;
  font-size: 0.9rem;
}

.payment-trust .item i {
  color: var(--bs-primary);
  width: 18px;
  text-align: center;
}

.payment-subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.payment-subhead .label {
  font-weight: 800;
  color: #2d334a;
}

.payment-brands {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6c757d;
  font-size: 22px;
}

.saved-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.saved-card {
  cursor: pointer;
  margin: 0;
}

.saved-card-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.saved-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.saved-card:hover .saved-card-body {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(45, 51, 74, 0.08);
}

.saved-card-body .title {
  font-weight: 800;
  color: #2d334a;
}

.saved-card-body .sub {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 600;
}

.saved-card-input:checked + .saved-card-body {
  border-color: rgba(255, 170, 0, 0.55);
  box-shadow: inset 3px 0 0 var(--bs-primary);
}

.payment-divider {
  margin: 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6c757d;
  font-weight: 700;
  font-size: 0.85rem;
}

.payment-divider::before,
.payment-divider::after {
  content: "";
  height: 1px;
  background: rgba(17, 24, 39, 0.12);
  flex: 1;
}

.payment-divider span {
  white-space: nowrap;
}

/* --- ASTROLOGER DASHBOARD (astrologer-dashboard.php) --- */
.dashboard-layout {
  background: transparent;
}

.dashboard-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dashboard-avatar {
  width: 120px;
  height: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: #111827;
  border: 3px solid #fff;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.14);
}

.dashboard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.dashboard-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

.dashboard-sub {
  font-size: 0.85rem;
  color: #6c757d;
}

@media (max-width: 991.98px) {
  .dashboard-avatar {
    width: 96px;
    height: 96px;
    aspect-ratio: 1 / 1;
  }
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #2d334a;
  transition: all 0.2s ease;
  border: 1px solid rgba(45, 51, 74, 0.08);
  background: #fff;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
  background: rgba(255, 170, 0, 0.12);
  border-color: rgba(255, 170, 0, 0.25);
  transform: translateY(-1px);
}

.dashboard-stat {
  min-height: 140px;
}

.dashboard-stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6c757d;
}

.dashboard-stat-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.dashboard-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d334a;
  margin-top: 10px;
}

.dashboard-stat-note {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #6c757d;
}

.dashboard-section {
  margin-top: 18px;
}

.dashboard-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.dashboard-table thead th {
  background: rgba(45, 51, 74, 0.04);
  color: #2d334a;
  border-bottom: 0;
  font-weight: 600;
}

.dashboard-pill {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 170, 0, 0.12);
  color: #f8605a;
}

.dashboard-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-slot {
  border: 1px solid rgba(45, 51, 74, 0.12);
  background: #fff;
  color: #2d334a;
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.dashboard-slot:hover,
.dashboard-slot.active {
  border-color: rgba(255, 170, 0, 0.6);
  background: rgba(255, 170, 0, 0.12);
}

.dashboard-metric {
  border: 1px dashed rgba(45, 51, 74, 0.18);
  border-radius: 12px;
  padding: 14px;
  background: rgba(45, 51, 74, 0.02);
}

.dashboard-metric-label {
  color: #6c757d;
  font-size: 0.9rem;
}

.dashboard-metric-value {
  font-weight: 700;
  font-size: 1.25rem;
  color: #2d334a;
  margin-top: 4px;
}

.dashboard-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(45, 51, 74, 0.08);
  background: #fff;
  margin-top: 10px;
}

.dashboard-message-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- DASHBOARD POLISH (industry-style layout) --- */
/* Clean SaaS theme defaults (scoped) */
.dashboard-layout {
  background: #f6f8fb;
}

.dashboard-pagehead {
  margin-bottom: 14px;
}

.dashboard-pagehead .title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
}

.dashboard-pagehead .subtitle {
  margin-top: 4px;
  font-size: 0.9rem;
  color: #6b7280;
}

.dashboard-layout .dashboard-card,
.dashboard-layout .sidebar-card {
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
  background: #fff;
  min-height: 170px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d334a;
}

.dashboard-subtitle {
  margin-top: 4px;
  color: #6c757d;
  font-size: 0.9rem;
}

.dashboard-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dashboard-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #111827;
  background: rgba(17, 24, 39, 0.06);
  border: 1px solid rgba(17, 24, 39, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.dashboard-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
}

.dashboard-kpi {
  padding: 16px;
}

.dashboard-kpi-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}

.dashboard-kpi-label {
  font-size: 12px;
  color: #6c757d;
  font-weight: 600;
}

.dashboard-kpi-value {
  margin-top: 8px;
  font-size: 16pz;
  font-weight: 800;
  color: #2d334a;
}

.dashboard-kpi-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.06);
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.1);
}

.dashboard-kpi-note {
  margin-top: 8px;
  font-size: 12px;
  color: #6c757d;
}

.dashboard-kpi-bar {
  margin-top: 12px;
  height: 8px;
  border-radius: 999px;
  background: #e9ecef;
  overflow: hidden;
}

.dashboard-kpi-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--bs-primary);
}

.dashboard-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-timeline-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
}

.dashboard-timeline-item .time {
  min-width: 78px;
  font-weight: 700;
  color: #2d334a;
}

.dashboard-timeline-item .content {
  flex: 1;
}

.dashboard-timeline-item .title {
  font-weight: 700;
  color: #2d334a;
}

.dashboard-timeline-item .meta {
  margin-top: 2px;
  font-size: 0.85rem;
  color: #6c757d;
}

.dashboard-muted {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #6c757d;
}

.dashboard-metric2 {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  margin-top: 12px;
}

.dashboard-metric2 .label {
  color: #6c757d;
  font-weight: 600;
  font-size: 0.9rem;
}

.dashboard-metric2 .value {
  margin-top: 6px;
  font-weight: 800;
  font-size: 1.1rem;
  color: #2d334a;
}

.dashboard-metric2 .bar {
  margin-top: 10px;
  height: 8px;
  border-radius: 999px;
  background: #e9ecef;
  overflow: hidden;
}

.dashboard-metric2 .bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--bs-primary);
}

.dashboard-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-list-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(45, 51, 74, 0.08);
}

.dashboard-list-item .left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.dashboard-list-item .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.06);
  color: #111827;
}

/* Reduce accent in nav; keep a subtle primary left rail for active */
.dashboard-layout .dashboard-nav a:hover,
.dashboard-layout .dashboard-nav a.active {
  background: rgba(17, 24, 39, 0.05);
  border-color: rgba(17, 24, 39, 0.14);
  transform: translateY(-1px);
}

.dashboard-layout .dashboard-nav a.active {
  box-shadow: inset 3px 0 0 var(--bs-primary);
}

/* Corporate avatar chip */
.dashboard-layout .dashboard-avatar {
  background: #111827;
}

.dashboard-list-item .title {
  font-weight: 700;
  color: #2d334a;
}

.dashboard-list-item .sub {
  font-size: 0.85rem;
  color: #6c757d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

.dashboard-list-item .right {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .dashboard-header-right {
    justify-content: flex-start;
  }
}

.drew2 {
  position: relative;
}

.drew2:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: url(../images/back-2.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: animName 25s linear infinite;
  top: 110px;
  right: -270px;
}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.drew3 {
  position: relative;
}

.drew3:after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  background: url(../images/back-3.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: animName 25s linear infinite;
  top: 43px;
  left: 150px;
}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.search-box {
  width: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.search-box.active {
  width: 180px;
  opacity: 1;
  padding: 6px 10px;
}

.mini-cart {
  display: none;
  position: absolute;
  right: 0;
  top: 35px;
  width: 260px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  z-index: 1000;
}

.mini-cart.active {
  display: block;
}
