/********** Template CSS **********/
:root {
  --primary: #FB5B21;
  --secondary: #BDBDBF;
  --light: #F4F5F8;
  --dark: #222429;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
  font-size: inherit;
  margin-left: 0;
}

h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.btn {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  transition: .5s;
}

.btn-primary {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 0;
  border-radius: 0;
  z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
  font-family: 'Oswald', sans-serif;
  margin-right: 30px;
  padding: 40px 0;
  color: var(--light);
  font-size: 17px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(34, 36, 41, .8); */
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h4 {
    font-size: 18px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 15px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

.bg-hero {
  background: linear-gradient(rgba(34, 36, 41, .8), rgba(34, 36, 41, .8)), url(../img/hero.jpg) top center no-repeat;
  background-size: cover;
}

.programe::after {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 45px);
  top: 135px;
  left: 0;
  background: var(--dark);
  z-index: -1;
}

.team-item img {
  transition: .5s;
}

.team-item:hover img {
  transform: scale(1.2);
}

.team-item .team-overlay {
  position: absolute;
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 36, 41, .9);
  transition: .5s;
  opacity: 0;
}

.team-item:hover .team-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--primary);
  font-size: 22px;
  border-radius: 45px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .owl-item img {
  width: 90px;
  height: 90px;
}

.blog-item img {
  transition: .5s;
}

.blog-item:hover img {
  transform: scale(1.2);
}

@media (min-width: 991.98px) {
  .credit {
    background: var(--primary);
  }
}













































.nav-link.active {
  color: #f08a70 !important;
  /* or your preferred highlight color */
  font-weight: bold;
  border-bottom: 2px solid #6ea2c0;
}













/* profile */

/* ProfilePage.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.profile-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: 'Poppins', sans-serif;
}

.profile-header {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.profile-subtitle {
  color: #718096;
  font-weight: 400;
}

.profile-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #4f46e5, #06b6d4);
}

.profile-field-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.profile-field-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  color: #2d3748;
  background-color: #f8fafc;
  transition: all 0.3s ease;
  padding-right: 3rem;
}

.profile-input:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.5);
  background-color: white;
}

.profile-input[readonly] {
  background-color: #f1f5f9;
}

/* Edit Button with SVG Icon */
.edit-btn {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.edit-btn:hover {
  color: #4f46e5;
  background-color: #eef2ff;
}

.edit-btn svg {
  width: 18px;
  height: 18px;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 0.8rem;
  position: absolute;
  right: 1rem;
}

.save-btn,
.cancel-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.save-btn {
  background-color: #10b981;
  color: white;
}

.save-btn:hover {
  background-color: #059669;
}

.cancel-btn {
  background-color: #f1f5f9;
  color: #64748b;
}

.cancel-btn:hover {
  background-color: #e2e8f0;
}

/* Profile Actions */
.profile-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  gap: 1rem;
}

.logout-btn,
.subscription-btn {
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.logout-btn {
  background-color: #fef2f2;
  color: #dc2626;
}

.logout-btn:hover {
  background-color: #fee2e2;
}

.subscription-btn {
  background-color: #4f46e5;
  color: white;
  text-decoration: none;
}

.subscription-btn:hover {
  background-color: #4338ca;
}

/* Loading State */
.profile-loading {
  text-align: center;
  padding: 3rem;
  font-size: 1.2rem;
  color: #64748b;
}

/* Responsive Design */
@media (max-width: 640px) {
  .profile-card {
    padding: 1.5rem;
  }

  .profile-actions {
    flex-direction: column;
  }

  .action-buttons {
    position: static;
    margin-top: 0.5rem;
    justify-content: flex-end;
  }
}

/* Add these to your existing CSS */
.read-only-indicator {
  position: absolute;
  right: 1rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.read-only-indicator svg {
  width: 18px;
  height: 18px;
}

.profile-input[readonly]+.edit-btn {
  display: none;
  /* Hide edit button for read-only fields */
}














.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 45px;
  height: 45px;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


















.edit-btn,
.save-btn,
.cancel-btn,
.logout-btn {
  padding: 8px 16px;
  margin-right: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.edit-btn {
  background-color: #0070f3;
  color: white;
}

.save-btn {
  background-color: green;
  color: white;
}

.cancel-btn {
  background-color: gray;
  color: white;
}

.logout-btn {
  background-color: red;
  color: white;
}





























/* success pay */

/* Global Styles */
:root {
  --primary: #FF5F1F;
  /* Vibrant orange */
  --secondary: #2B3499;
  /* Deep blue */
  --accent: #FFD700;
  /* Gold */
  --light: #F5F5F5;
  --dark: #1A1A1A;
  --success: #4BB543;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* Success Page Styles */
.success-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  padding: 2rem;
}

.success-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.icon-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(255, 95, 31, 0.3);
}

.main-icon {
  color: white;
  font-size: 3.5rem;
  z-index: 2;
}

.decor-icon {
  position: absolute;
  color: var(--accent);
  font-size: 1.5rem;
  opacity: 0.8;
}

.dumbell-icon {
  top: 10px;
  left: 10px;
  animation: float 3s ease-in-out infinite;
}

.heart-icon {
  bottom: 10px;
  right: 10px;
  animation: pulse 2s ease infinite;
}

h1 {
  font-size: 2rem;
  color:#fff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.progress-bar {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  margin: 2rem 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  animation: progress 2s ease-in-out forwards;
}

.status-text {
  font-size: 0.9rem;
  color: var(--dark);
  opacity: 0.7;
  margin-bottom: 2rem;
}

.benefits-box {
  background: rgba(43, 52, 153, 0.05);
  border-left: 4px solid var(--secondary);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
  border-radius: 0 8px 8px 0;
}

.benefits-box h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.benefits-box ul {
  list-style: none;
}

.benefits-box li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.benefits-box li::before {
  content: '✓';
  color: var(--success);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.support-text {
  font-size: 0.9rem;
  color: var(--dark);
  margin: 1.5rem 0;
}

.support-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.support-text a:hover {
  text-decoration: underline;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 95, 31, 0.4);
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.5);
}

/* Animations */
@keyframes progress {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .success-content {
    padding: 2rem 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .icon-circle {
    width: 100px;
    height: 100px;
  }

  .main-icon {
    font-size: 2.5rem;
  }
}




















.success-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.small-container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.success-content {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.icon-circle-small {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-icon-small {
  font-size: 2rem;
  color: #4CAF50;
  z-index: 2;
}

.decor-icon-small {
  position: absolute;
  font-size: 1rem;
  opacity: 0.7;
}

.dumbell-icon {
  top: 0;
  left: 0;
  color: #2196F3;
}

.heart-icon {
  bottom: 0;
  right: 0;
  color: #ff0000;
}

.small-title {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #333;
}

.small-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.small-progress-bar {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  margin: 15px 0;
  overflow: hidden;
}

.small-progress-fill {
  height: 100%;
  width: 0;
  background: #4CAF50;
  border-radius: 3px;
  animation: progressFill 2s ease-in-out forwards;
}

@keyframes progressFill {
  to {
    width: 100%;
  }
}

.small-status-text {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 15px;
}

.small-benefits-box {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px;
  margin: 15px 0;
  text-align: left;
}

.small-benefits-title {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #333;
}

.small-benefits-list {
  font-size: 0.8rem;
  color: #555;
  padding-left: 20px;
  margin: 0;
}

.small-benefits-list li {
  margin-bottom: 5px;
}

.small-support-text {
  font-size: 0.8rem;
  color: #666;
  margin: 15px 0;
}

.small-support-text a {
  color: #2196F3;
  text-decoration: none;
}

.small-cta-button {
  display: inline-block;
  background: #4CAF50;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.small-cta-button:hover {
  background: #3d8b40;
}

















/* slider image */

.slider-img {
  height: 400px;
  /* adjust as needed */
  object-fit: cover;
  object-position: center;
}

.small-subtitle {
  font-size: 2.5rem;
  /* adjust size as needed */
  font-weight: 600;
}














.testimonial-item {
  padding: 30px;
  background-color: #1e1e1e;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.testimonial-item:hover {
  background-color: #292929;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 3px solid #fff;
}

.slick-slider {
  margin-top: 20px;
}

.slick-dots li button:before {
  color: #fff;
}

.slick-dots li.slick-active button:before {
  color: #0d6efd;
}





























/* product page  */

.product-page {
  padding: 2rem;
  background-color: #f5f5f5;
  min-height: 100vh;
}

.product-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

/* Show exactly 3 in mobile view (<= 768px) */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
    /* Only 1 product per row */
    gap: 1rem;
  }

  .product-card {
    font-size: 0.85rem;
  }

  .product-image {
    height: 150px;
    /* Reduce image height for mobile */
  }

  .buy-now-btn {
    font-size: 0.85rem;
    padding: 0.6rem;
  }

  .product-name {
    font-size: 1rem;
  }

  .product-desc,
  .product-price,
  .product-discount {
    font-size: 0.9rem;
  }
}


/* Larger screens will adjust automatically */
@media (min-width: 769px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

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

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-name {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.product-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
}

.final-price {
  font-weight: bold;
  color: #28a745;
}

.product-discount {
  font-size: 0.95rem;
  color: #e53935;
  margin-bottom: 1rem;
}

.buy-now-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 0.7rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.buy-now-btn:hover {
  background-color: #1ebe5b;
}




















/* 
product slider  */

.home-page {
  padding: 2rem;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.product-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.slider-card {
  flex: 0 0 auto;
  width: 220px;
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
}

.slider-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.slider-name {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.slider-price {
  font-size: 0.95rem;
}

.original {
  text-decoration: line-through;
  color: #999;
}

.final {
  color: #28a745;
  font-weight: 600;
}

.slider-discount {
  color: #e53935;
  font-size: 0.9rem;
}

















































/* treaning page  */

/* Mobile Responsive Styles */
@media (max-width: 768px) {

  /* Hero Section */
  .bg-hero {
    padding: 2rem 1rem !important;
  }

  .display-2 {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }

  /* About Section */
  .row.align-items-center {
    flex-direction: column-reverse;
  }

  .col-lg-6 {
    padding: 0 15px;
  }

  /* Cards */
  .card {
    margin-bottom: 1.5rem;
  }

  /* Testimonials */
  .testimonial-img {
    width: 80px !important;
    height: 80px !important;
  }

  /* Pricing */
  .col-md-6 {
    margin-bottom: 1.5rem;
  }

  /* Buttons */
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  /* Navigation */
  .d-flex.justify-content-center.gap-3 {
    flex-direction: column;
    gap: 1rem !important;
  }

  /* Font Sizes */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1.1rem;
  }

  .lead {
    font-size: 1rem;
  }

  /* Spacing */
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  /* Accordion */
  .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }
}

/* Additional mobile tweaks */
@media (max-width: 576px) {
  .display-2 {
    font-size: 2rem !important;
  }

  .container,
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .col-12,
  .col-md-6,
  .col-lg-6 {
    padding-left: 8px;
    padding-right: 8px;
  }
}











/* Animation styles */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Button hover effects */
.btn-hover-effect {
  transition: all 0.3s ease;
}

.btn-hover-effect:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card hover effects */
.card-hover {
  transition: all 0.3s ease;
}

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

/* Pulse animation for CTA */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Scroll reveal animations */
[data-aos] {
  transition: all 0.8s ease;
}

.aos-fade {
  opacity: 0;
  transition-property: opacity;
}

.aos-fade.aos-animate {
  opacity: 1;
}

.aos-slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition-property: transform, opacity;
}

.aos-slide-up.aos-animate {
  opacity: 1;
  transform: translateY(0);
}






























/* slider  */

/* Base Styles */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  max-height: 900px;
  overflow: hidden;
}

.slide-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  transform: scale(0.98);
}

.slide-content.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Background Image */
.slide-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease-out;
}

.slide-content.active .slide-background {
  transform: scale(1.05);
}

/* Overlay */
.slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%); */
}

/* Text Content */
.slide-text {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.slide-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.slide-actions {
  display: flex;
  gap: 20px;
  margin-top: 1.5rem;
}

.action-btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
}

.primary-btn {
  background: linear-gradient(45deg, #2563eb, #3b82f6);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #1e293b;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Navigation */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: 30px;
}

.next-arrow {
  right: 30px;
}

/* Dots Navigation */
.slide-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 3;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.nav-dot.active {
  background: white;
  transform: scale(1.3);
}

/* Animations */
@keyframes pop-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-pop-in {
  animation: pop-in 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .slide-heading {
    font-size: 2.8rem;
  }

  .slide-actions {
    flex-direction: column;
    gap: 15px;
  }

  .action-btn {
    width: 220px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 80vh;
    max-height: 700px;
  }

  .slide-heading {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .slide-tagline {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .prev-arrow {
    left: 15px;
  }

  .next-arrow {
    right: 15px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 70vh;
    max-height: 600px;
  }

  .slide-heading {
    font-size: 1.8rem;
  }

  .action-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    width: 200px;
  }

  .slide-nav {
    bottom: 20px;
  }
}










































/* About   Hero Section */
/* Hero Section */
.hero-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #dacfcf;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Notes Section */
.hero-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.note {
  background: white;
  color: #333;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.note:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.note h3 {
  font-size: 18px;
  font-weight: bold;
  color: #16a34a;
  /* Green heading */
  margin-bottom: 8px;
}

.note p {
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }
}















/* header  */

/* Base Styles */
:root {
  --mushy-primary: #8b5a2b;
  --mushy-secondary: #f5e6c8;
  --mushy-accent: #4a7c59;
  --mushy-dark: #3a2c1a;
  --mushy-light: #fff9ee;
  --mushy-text: #333;
  --mushy-text-light: #f8f8f8;
  --mushy-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --mushy-transition: all 0.3s ease-in-out;
}

/* Header Styles */
.mushy-header {
  background-color: var(--mushy-light);
  box-shadow: var(--mushy-shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem 1rem;
  transition: var(--mushy-transition);
}

.mushy-header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.mushy-header__brand {
  display: flex;
  align-items: center;
}

.mushy-header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--mushy-transition);
}

.mushy-header__logo-image {
  height: 50px;
  width: auto;
  margin-right: 0.75rem;
  transition: var(--mushy-transition);
}

.mushy-header__logo-text {
  font-family: 'Pacifico', cursive;
  color: var(--mushy-accent);
  font-size: 1.5rem;
  letter-spacing: 1px;
  transition: var(--mushy-transition);
}

/* Navigation Styles */
.mushy-header__nav {
  transition: var(--mushy-transition);
}

.mushy-header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.mushy-header__nav-item {
  margin-left: 1.5rem;
  position: relative;
}

.mushy-header__nav-link {
  color: var(--mushy-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--mushy-transition);
  display: flex;
  align-items: center;
}

.mushy-header__nav-link:hover {
  color: var(--mushy-accent);
}

.mushy-header__nav-link.is-active {
  color: var(--mushy-accent);
  font-weight: 600;
}

.mushy-header__nav-link.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--mushy-accent);
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.mushy-header__link-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Hamburger Menu */
.mushy-header__hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1001;
}

.mushy-header__hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.mushy-header__hamburger-inner {
  width: 100%;
  height: 2px;
  background-color: var(--mushy-dark);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--mushy-transition);
}

.mushy-header__hamburger-inner::before,
.mushy-header__hamburger-inner::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--mushy-dark);
  position: absolute;
  left: 0;
  transition: var(--mushy-transition);
}

.mushy-header__hamburger-inner::before {
  top: -8px;
}

.mushy-header__hamburger-inner::after {
  top: 8px;
}

.mushy-header__hamburger.is-active .mushy-header__hamburger-inner {
  background-color: transparent;
}

.mushy-header__hamburger.is-active .mushy-header__hamburger-inner::before {
  transform: translateY(8px) rotate(45deg);
}

.mushy-header__hamburger.is-active .mushy-header__hamburger-inner::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mushy-header {
    padding: 0.5rem;
  }

  .mushy-header__hamburger {
    display: block;
  }

  .mushy-header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--mushy-light);
    box-shadow: var(--mushy-shadow);
    padding: 1rem 0;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s;
  }

  .mushy-header__nav.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mushy-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
  }

  .mushy-header__nav-item {
    margin: 0.5rem 0;
    width: 100%;
  }

  .mushy-header__nav-link {
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: 4px;
    transition: var(--mushy-transition);
  }

  .mushy-header__nav-link:hover {
    background-color: rgba(138, 90, 43, 0.1);
  }

  .mushy-header__nav-link.is-active {
    background-color: rgba(138, 90, 43, 0.2);
  }

  .mushy-header__nav-link.is-active::after {
    display: none;
  }
}

/* Desktop Animations */
@media (min-width: 769px) {
  .mushy-header__logo-link:hover .mushy-header__logo-image {
    transform: rotate(-15deg) scale(1.1);
  }

  .mushy-header__logo-link:hover .mushy-header__logo-text {
    transform: translateX(5px);
    color: var(--mushy-primary);
  }

  .mushy-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--mushy-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }

  .mushy-header__nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .mushy-header__nav-item:hover .mushy-header__link-icon {
    animation: iconBounce 0.5s;
  }
}

/* Keyframe Animations */
@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrolled State */
.mushy-header.scrolled {
  padding: 0.25rem 1rem;
  background-color: rgba(255, 249, 238, 0.95);
  backdrop-filter: blur(5px);
}

.mushy-header.scrolled .mushy-header__logo-image {
  height: 40px;
}






























/* footer social links  */

/* Base Styles */
.social-links-container {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
}

.social-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transform: translateX(-100%) rotate(45deg);
  transition: all 0.5s ease;
}

.social-link:hover::before {
  transform: translateX(100%) rotate(45deg);
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.social-tooltip {
  position: absolute;
  top: 0;
  /* left: 50%; */
  transform: translateX(-50%) translateY(-100%);
  opacity: 0;
  background-color: #333;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  white-space: nowrap;
  pointer-events: none;
  transition: all 0.3s ease;
}

.social-link:hover .social-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-120%);
}

/* Platform Specific Styles */
.social-link.twitter {
  background-color: #000000;
}

.social-link.facebook {
  background-color: #1877f2;
}

.social-link.linkedin {
  background-color: #0a66c2;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.social-link {
  animation: float 4s ease-in-out infinite;
}

.social-link:nth-child(2) {
  animation-delay: 0.2s;
}

.social-link:nth-child(3) {
  animation-delay: 0.4s;
}

.social-link:nth-child(4) {
  animation-delay: 0.6s;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .social-links-container {
    gap: 1rem;
  }

  .social-link {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }

  .social-tooltip {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  @keyframes float-mobile {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-5px);
    }
  }

  .social-link {
    animation: float-mobile 4s ease-in-out infinite;
  }
}












/* 
heroes section  */

/* About Hero Section */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-image:url('/img/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-bottom: 3rem;
}

.hero-content {
  max-width: 1200px;
  z-index: 2;
}

.about-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease-out;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
}

.home-btn {
  background-color: #4a6bff;
  color: white;
}

.home-btn:hover {
  background-color: #3a56d4;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-btn {
  background-color: transparent;
  color: white;
  border-color: white;
}

.contact-btn:hover {
  background-color: white;
  color: #333;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  /* .about-hero {
    min-height: 400px;
  } */

  .about-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 350px;
  }

  .about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    min-height: 300px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 80%;
    text-align: center;
  }
}












































/* Global Styles */
.mushroom-training-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #2c5e1a;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Hero Section */
.bg-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/mushroom-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mushroom Selector */
.mushroom-selector {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.mushroom-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.mushroom-buttons button {
  padding: 12px 25px;
  background-color: #fff;
  border: 2px solid #2c5e1a;
  color: #2c5e1a;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mushroom-buttons button.active,
.mushroom-buttons button:hover {
  background-color: #2c5e1a;
  color: #fff;
}

/* Benefits Section */
.benefits-section {
  padding: 60px 0;
  background-color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.benefit-card {
  background-color: #f5f9f4;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.benefit-card h3 {
  color: #2c5e1a;
  margin-bottom: 10px;
}

/* Program Section */
.program-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.program-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.program-tabs button {
  padding: 10px 25px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.program-tabs button.active {
  background-color: #2c5e1a;
  color: #fff;
  border-color: #2c5e1a;
}

/* Tab Content */
.tab-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.overview-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.overview-text h3 {
  color: #2c5e1a;
  margin-bottom: 20px;
}

.overview-text ul {
  margin: 20px 0;
  padding-left: 20px;
}

.overview-text ul li {
  margin-bottom: 10px;
}

.enquire-btn {
  padding: 12px 30px;
  background-color: #2c5e1a;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.enquire-btn:hover {
  background-color: #1e4212;
}

/* Modules Content */
.modules-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.module-card {
  background-color: #f5f9f4;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #2c5e1a;
}

.module-card h3 {
  color: #2c5e1a;
  margin-bottom: 15px;
}

.module-card ul {
  padding-left: 20px;
}

.module-card ul li {
  margin-bottom: 8px;
}

/* Outcomes Content */
.outcomes-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

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

.outcome-number {
  background-color: #2c5e1a;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.outcome-text h3 {
  color: #2c5e1a;
  margin-bottom: 10px;
}

/* Gallery Section */
.gallery-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}









/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .mushroom-training-page {
    padding: 0 15px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .bg-hero {
    height: 50vh;
  }

  .mushroom-buttons {
    flex-direction: column;
    align-items: center;
  }

  .mushroom-buttons button {
    width: 100%;
    max-width: 300px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .overview-content {
    grid-template-columns: 1fr;
  }

  .program-tabs {
    flex-wrap: wrap;
  }

  .modules-content,
  .outcomes-content {
    grid-template-columns: 1fr;
  }

  .outcome-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.5rem;
  }

  .program-tabs button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .tab-content {
    padding: 20px 15px;
  }
}

.mushroom-training-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #2c7a3e;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Mushroom Types Section */
.mushroom-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.mushroom-type-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: white;
}

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

.mushroom-details {
  padding: 20px;
}

.mushroom-details h3 {
  color: #2c7a3e;
  margin-bottom: 15px;
}

.mushroom-details ul {
  margin-bottom: 20px;
}

.mushroom-details li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.mushroom-details li:before {
  content: "•";
  color: #2c7a3e;
  position: absolute;
  left: 0;
}

/* Simple Steps Section */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.step-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border-top: 5px solid #2c7a3e;
}

.step-number {
  background: #2c7a3e;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
}

/* Success Stories */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.story-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-content {
  padding: 20px;
  background: white;
}

.story-content h3 {
  color: #2c7a3e;
  margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
  background: #2c7a3e;
  color: white;
  padding: 50px 20px;
  border-radius: 10px;
  margin: 50px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cta-btn {
  background: white;
  color: #2c7a3e;
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.inquire-btn {
  background: #2c7a3e;
  color: white;
  width: 100%;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }
}



.floating-contact-icons {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-contact-icons a {
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: white;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.floating-contact-icons a.call-icon {
  background-color: #007bff;
}

.floating-contact-icons a:hover {
  opacity: 0.9;
}



























/* contact us mobile screen  */

/* styles/mobile.css */

/* Mobile-specific styles (applies to screens up to 767px) */
@media only screen and (max-width: 767px) {
  /* Hero section adjustments */
  .about-hero .hero-content {
    padding: 20px 15px;
  }
  
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  /* Contact form layout */
  .container-fluid {
    padding: 15px !important;
  }
  
  .row.g-0 {
    flex-direction: column;
  }
  
  .col-lg-6 {
    width: 100%;
    padding: 20px !important;
  }
  
  /* Form adjustments */
  .bg-dark {
    padding: 20px !important;
  }
  
  .form-control {
    font-size: 14px;
  }
  
  /* Why Choose Us section */
  .bg-light h3 {
    font-size: 1.5rem;
  }
  
  .list-unstyled li {
    font-size: 14px;
    margin-bottom: 15px !important;
  }
  
  /* Button adjustments */
  .btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  /* Alert messages */
  .alert {
    font-size: 14px;
    padding: 10px;
  }
}

























/* logo  */




















.loader {
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
























/* Styles for the spinner loader */
.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Adjust as needed */
  background-color: #f0f2f5; /* Optional: a light background */
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}