body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  margin: 0 auto;
}

/* Header Styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #000, #333);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo img {
  width: 150px;
  transition: transform 0.3s ease;
}

.header .logo img:hover {
  transform: scale(1.1);
}

.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  margin: 0 15px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  transition: all 0.3s ease;
  border-radius: 5px;
  font-size: 1rem;
}

.navbar ul li a:hover {
  background: #ff6600;
  color: #fff;
  transform: scale(1.1);
}

/* Sticky Header Effect on Scroll */
.header.scrolled {
  background: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Hero Section Styling */
.hero {
  background: url("../Images/hero-bg.jpg") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Overlay for better contrast */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title span {
  color: #ff6600;
  /* Accent color */
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ddd;
}

.btn-primary {
  background: #ff6600;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.5);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ff4500;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.7);
  transform: translateY(-3px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  background-color: #1c1c1c;
  overflow: hidden;
}

/* Background Image or Pattern */
.about-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Images/about-us.jpg") no-repeat center center/cover;
  opacity: 0.2;
  /* Subtle background image */
  z-index: 1;
}

/* Wrapper */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Text Content */
.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: #fff;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.highlight {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px;
  border-radius: 15px;
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.highlight span {
  font-size: 2rem;
  color: #ff6600;
  display: block;
  margin-bottom: 10px;
}

.highlight h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 8px;
}

.highlight p {
  font-size: 0.9rem;
  color: #ddd;
}

/* Button */
.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #ff6600;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ff4500;
  transform: scale(1.05);
}

/* Image Content */
.about-image {
  position: relative;
  max-width: 500px;
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 102, 0, 0.7),
    rgba(28, 28, 28, 0.9)
  );
  border-radius: 20px;
  z-index: -1;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, #1c1c1c, #000000);
  /* Dark gradient background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.services h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.services h2 span {
  color: #ff6600;
}

.section-description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Service Items */
.service-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-item {
  background: rgba(255, 255, 255, 0.1);
  /* Glassmorphism effect */
  backdrop-filter: blur(10px);
  /* Frosted glass */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
  background: rgba(255, 255, 255, 0.15);
  /* Brighten on hover */
}

/* Service Icons */
.service-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff6600, #ff3300);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.service-icon:hover img {
  transform: scale(1.2);
}

/* Rotating Border Animation */
.service-icon::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -10px;
  left: -10px;
  animation: rotate-border 8s linear infinite;
}

@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Service Titles */
.service-item h3 {
  font-size: 1.6rem;
  color: #ff6600;
  margin-bottom: 10px;
}

/* Service Descriptions */
.service-item p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Read More Button */
.service-item .btn {
  background: #ff6600;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.service-item .btn:hover {
  background: #e65c00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-item {
    width: 90%;
  }
}

/* Packages Section Styling */
.packages {
  background-color: #1c1c1c;
  color: #f1faee;
  padding: 50px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #e63946;
}

.packages-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.package-card {
  background-color: #292929;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 30px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.package-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #f1faee;
}

.package-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: #e63946;
}

.package-card .duration {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #a8dadc;
}

.package-card .features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.package-card .features li {
  margin: 10px 0;
  font-size: 1rem;
  color: #f1faee;
}

.package-card .btn-primary {
  background: #e63946;
  color: #f1faee;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.package-card .btn-primary:hover {
  background: #dc2f3e;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.7);
  transform: translateY(-3px);
}

/* Male Package Card Color */
.male-package {
  border: 3px solid #457b9d;
}

/* Female Package Card Color */
.female-package {
  border: 3px solid #e63946;
}

/* Add Class Section */
.add-class {
  background: linear-gradient(135deg, #000000, #1e1e1e);
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.add-class::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 120%;
  height: 120%;
  background: radial-gradient(rgba(255, 102, 0, 0.2), transparent);
  transform: rotate(-45deg);
  z-index: 0;
}

.add-class h2 {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
}

.add-class h2 span {
  color: #ff6600;
  background: linear-gradient(45deg, #ff6600, #ff3300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.add-class .section-description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

/* Class Items */
.class-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  z-index: 1;
  position: relative;
}

.class-item {
  background: linear-gradient(135deg, #1e1e1e, #121212);
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transform: perspective(800px) rotateY(0deg);
  transition:
    transform 0.4s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.class-item:hover {
  transform: perspective(800px) rotateY(5deg);
  box-shadow: 0 15px 30px rgba(255, 102, 0, 0.7);
}

.class-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.class-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff6600, #ff3300);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.class-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.class-item h3 {
  font-size: 1.5rem;
  color: #ff6600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.class-item p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .class-item {
    width: 100%;
    transform: none;
  }
}

.blog-section {
  padding: 50px 20px;
  background: #f4f4f4;
}

.blog-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.blog-section .section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.btn-secondary {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #007bff;
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background: #0056b3;
}

/* Footer Styling */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer .subscribe {
  text-align: center;
  margin-bottom: 30px;
}

.footer .subscribe h2 {
  font-size: 1.8rem;
  color: #e63946;
  margin-bottom: 10px;
}

.footer .subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer .subscribe-form input {
  padding: 10px 20px;
  border: 1px solid #e63946;
  border-radius: 30px;
  width: 300px;
  background-color: #121212;
  color: #ffffff;
}

.footer .subscribe-form button {
  padding: 10px 20px;
  background-color: #e63946;
  border: none;
  color: #ffffff;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.footer .subscribe-form button:hover {
  background-color: #dc2f3e;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-logo {
  max-width: 400px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-logo .highlight {
  color: #e63946;
}

.footer-logo p {
  font-size: 0.9rem;
  color: #bdbdbd;
}

.footer-contact {
  max-width: 300px;
}

.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-contact ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-contact ul li a {
  color: #e63946;
  text-decoration: none;
}

.footer-contact ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #bdbdbd;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-bottom ul li a {
  color: #bdbdbd;
  text-decoration: none;
}

.footer-bottom ul li a:hover {
  color: #ffffff;
}

/* Blog Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: linear-gradient(135deg, #1e1e1e, #121212);
  margin: 3% auto;
  padding: 0;
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 15px 50px rgba(255, 102, 0, 0.4);
  animation: slideDown 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  color: #fff;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  z-index: 10001;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 102, 0, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.close:hover,
.close:focus {
  background: #ff4500;
  transform: rotate(90deg);
}

.modal-header {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.modal-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-body {
  padding: 30px 40px;
  color: #fff;
}

.modal-body h2 {
  font-size: 2.2rem;
  color: #ff6600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.modal-meta {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 102, 0, 0.2);
}

.modal-meta span {
  margin-right: 10px;
}

.modal-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  text-align: justify;
}

/* Make button look clickable */
.btn-secondary {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .modal-header {
    height: 200px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-body h2 {
    font-size: 1.8rem;
  }

  .modal-body p {
    font-size: 1rem;
  }
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #ff6600;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #ff4500;
}
