/* Header Styles */
.header {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 10;
}   

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-sm) 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--spacing-lg);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
     width: 72px;
     height: 72px;
     object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 60px;
  width: 65%;
  margin: 0 auto;

}

.nav-menu a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: 400;
  transition: color var(--transition-base);
}

.nav-menu a:hover {
  color: var(--menu-text-hover);
}

.nav-menu a i {
  margin-left: 4px;
  font-size: 10px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

@media (max-width: 1024px) {
  .header-container {
    padding: var(--spacing-sm) 24px;
  }
  
  .nav-menu {
    gap: 24px;
  }
  
  .nav-menu a {
    font-size: var(--font-xs);
  }
}

@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
  
  .header-container {
    justify-content: space-between;
  }
}
/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  padding: 40px 0;
  background-color: #000;
  overflow: hidden;
}

/* ✅ Background Image anchored on right */
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../images/hero-section-bg.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain; /* ✅ Large image but keeps it crisp */
  opacity: 0.85;
  z-index: 1;
}

/* ✅ Gradient Overlay above image */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(35.18% 43.86% at 33.47% 50.06%, rgba(0, 0, 0, 0) 0%, rgba(39, 1, 9, 0.3) 100%), radial-gradient(38.74% 75.01% at 73.63% 16.35%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 72.34%, #00000000 100%), linear-gradient(to right, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.1) 100%);
}

/* ✅ Text always above the overlays */
.hero-text {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.text-accent {
  color: #D18A64; /* warm copper tone */
}

.hindi-text {
  font-weight: 500;
  color: #CABA9F;
  display: inline-block;
  line-height: 1.1;
  font-size: 128px;
}
h4.mb-4.text-light {
  font-size: 28px;
  font-weight: 400;
}

.hero-section h1 {
  line-height: 1.3;
}

.hero-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
}
.hero-description{
  padding-top: 115px;
}

.start-for-free{
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  padding: 11px 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-base);
}
.hero-description p {
  margin-bottom: 50px;
}
/* ✅ Responsive */
@media (max-width: 992px) {
  .hero-description{
    margin-top: 50px;
    padding-top: 50px;
  }
  .hero-section {
    text-align: center;
    padding: 80px 20px;
  }

  .hero-bg {
    background-size: cover;
    background-position: center;
    opacity: 0.7;
  }

  

  .hero-section h1 {
    font-size: 40px;
    line-height: 2.3;
  }
  .hero-text{
    width: 100%;
  }
  .hero-section p{
    width: 100%;
  }
  .hero-section p {
    font-size: 22px;}
}

  
  
  /* Button */
 
  
  

/* Features Section */
.features-section {
  background: linear-gradient(107.08deg, #010411 67.91%, #000726 99.46%);
  color: var(--text-white);
}



.feature-card {
  padding: 40px 30px;
  border-radius: 16px;
  background: transparent;
  transition: all var(--transition-base);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.03);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.feature-icon i {
  font-size: 32px;
  color: var(--text-white);
  transition: all var(--transition-base);
}





.feature-title {
  font-size: 24px;
  font-weight: 500;
  color: #FFD989;
  margin-bottom: 24px;
}


@media (max-width: 992px) {

  .feature-card {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }
  

  
  .feature-card {
    padding: 24px 16px;
  }
  
  .feature-title {
    font-size: 20px;
  }
  
  .feature-description {
    font-size: 14px;
  }
}

/* CTA Section */
.cta-section {
  background: #020103;
  
}



.cta-title {

  color: var(--text-white);
 font-weight: 700;
 padding-bottom: 23px;
}

.cta-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
}

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

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }
  
  .cta-title {
    font-size: 25px;
  }
  
  .cta-subtitle {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
  
.kathak-section {
    background-color: #0d0603;
    color: #fff;
    overflow: hidden;
  }
  
  .section-title {
    font-size: 44px;
    font-weight: 700;
  }
  
  .section-subtitle {
    color: #ccc;
    max-width: 650px;
    margin: 0 auto;
  }
  
 .kathak-slider {
  background: #0a0a0a;
  color: #fff;
  padding: 100px 0;
}

/* Swiper Container */
.kathak-slider .swiper {
  width: 100%;
  padding-bottom: 100px;
  padding-top: 40px;
 overflow: hidden;
}

/* Wrapper alignment */
.kathak-slider .swiper-wrapper {
  align-items: center;
}

/* Slide Card */
.kathak-slider .swiper-slide {
  width: 360px; /* narrower card width */
  height: 532px; /* balanced height */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0.1) 40%,
    #000000 80%
  );
  opacity: 0.7;
  transition: all 0.7s cubic-bezier(0.45, 0, 0.25, 1);
}

/* Slide Image */
.kathak-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position:  center; /* shows full upper body */
  border-radius: 20px;
  transition: all 0.6s ease-in-out;
}

/* Overlay gradient */
.kathak-slider .swiper-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0.1) 40%,
    #000000 80%
  );
  z-index: 1;
}

/* Active (centered) Slide */
.kathak-slider .swiper-slide-active {
  transform: scale(1.1);
  border: 1px solid #ebebeb33;
  opacity: 1;
  z-index: 10;
}
.kathak-slider .swiper-slide-active .slide-title{
  font-size: 36px;
  line-height: 100%;
}

.kathak-slider .swiper-slide-active .overlay {
  background: radial-gradient(
      45% 58% at 50% 27%,
      rgba(0, 0, 0, 0) 0%,
      rgba(114, 0, 28, 0.2) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 10%,
      rgba(0, 0, 0, 0.1) 40%,
      #000000 80%
    );
}

/* Content */
.kathak-slider .slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  text-align: center;
  z-index: 2;
}

.kathak-slider .slide-title {
  font-size: 20px;
  line-height: 130%;
  font-weight: 400;
  color: #ddb45d;
  margin-bottom: 6px;
}

.kathak-slider .slide-subtitle {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

.kathak-slider .slide-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

.kathak-slider .read-more {
  display: none;
  font-size: 0.9rem;
  margin-top: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  transition: 0.3s;
}

.kathak-slider .swiper-slide-active .read-more {
  display: inline-block;
}

/* Pagination */
.kathak-slider .swiper-pagination-bullet {
  background: #f5c85a;
  opacity: 0.4;
}
.kathak-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .kathak-slider .swiper-slide {
    width: 320px;
    height: 420px;
  }
  .kathak-slider .swiper-slide-active{
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .kathak-slider .swiper-slide {
    /* width: 270px; */
    height: 500px;
  }
}

  
  .gradient-banner h2{
    font-size: 43px;
    color: var(--text-white);
    font-weight: 300;
    line-height: 130%;
  }

/* Steps to Success Section */
.step-to-success {
  background: #000;
  padding: 80px 0;
  position: relative;
}

.step-to-success-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step-to-success-title {
  color: var(--text-white);
  text-align: center;
  max-width: 1020px;
  margin: 0 auto;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
}

.step-to-success-image-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 698px;
  overflow: hidden;
}



.step-to-success-image {
  width: 100%;
  height: 698px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .step-to-success {
    padding: 60px 0;
  }
  .step-to-success-image-wrapper{
    height: auto;
  }
  .step-to-success-image{
    height: auto;
  }
  .step-to-success-title {
    font-size: 1.8rem;
    padding: 15px;
  }
  
  .step-to-success-image-wrapper {
    border-width: 1px;
  }
}

/* Mentor Section */
.mentor-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../images/guide.jpg');
  background-repeat: no-repeat;
  background-position: 160% center;
  background-size: contain;
  opacity: 0.85;
  z-index: 1;
}
.mentor-content{
  z-index: 9;
  position: relative;
}
.mentor-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(112.05% 107.78% at 89.69% 31.61%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40.1%, #000000 91.17%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

}

.mentor-section {
  color: var(--text-white);
  position: relative;
}

.mentor-section h2 {
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 2rem;
}

.mentor-section p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 16px;
}

.mentor-section img {
  max-width: 100%;
  height: 764px;
  object-fit: cover;
 
}
.mentor-image-wrapper{
  display: none;
}

@media (max-width: 992px) {
  .mentor-image-wrapper{
    display: block;
  }
  .mentor-section .row {
    text-align: left;
  }
  
  .mentor-section img {
    margin-top: 2rem;
    max-width: 100%;
    height: auto;
  }
  
  .mentor-section h2 {
    font-size: 2rem;
  }
  .mentor-bg{
    display: none;
  }
}

@media (max-width: 768px) {
  .mentor-section h2 {
    font-size: 1.75rem;
  }
  
  .mentor-section p {
    font-size: 15px;
  }
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(180deg, #000000 0%, #430310 100%);
  color: var(--text-white);
  max-width: 1470px;
  margin: 0 auto;
  border-radius: 30px;
  margin-bottom: 40px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.faq-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.faq-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.faq-buttons a:hover{
  color: var(--text-white);
}



.btn-faq-transparent {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-white);
  padding: 12px 30px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-no-border{
  background-color: transparent;
  color: var(--text-white);
  box-shadow: 0;
  border: none;
  padding: 12px 30px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Accordion Styling */
/* ===============================
   CLEAN MODERN FAQ ACCORDION (ENHANCED)
   =============================== */

   .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.2);
  }
  
  /* Accordion item wrapper */
  .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 0;
    border-radius: 0;
    transition: border-color 0.3s ease;
  }
  
  /* Add top border to first item for symmetry */
  .accordion-item:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  
  /* Accordion header button */
  .accordion-button {
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    padding: 20px 0;
    box-shadow: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
  }
  
  /* Hover effect for button text */
  .accordion-button:hover {
    color: #F6B774; /* or use var(--secondary-color) if defined */
  }
  
  /* Active (expanded) state */
  .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #fff;
    box-shadow: none;
  }
  
  /* Icon styling (+ and −) */
  .accordion-button::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    background-image: none !important;
    transition: all 0.3s ease;
    transform-origin: center;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 1;
  }
  
  /* Expanded state icon (minus) */
  .accordion-button:not(.collapsed)::after {
    content: "−";
    font-weight: 400;
    transform: rotate(180deg);
  }
  
  /* Accordion body */
  .accordion-body {
    color: #F0F0F0;
    font-size: 15px;
    line-height: 1.7;
    padding: 0 0 20px 0;
    animation: fadeIn 0.3s ease;
  }
  
  /* Optional smooth fade-in for text */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Optional hover accent on the entire item */
  .accordion-item:hover {
    border-color: #F6B774;
  }
  
@media (max-width: 992px) {
  .faq-title {
    font-size: 2rem;
  }
  
  .faq-buttons {
    justify-content: flex-start;
  }
  .faq-section{
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-title {
    font-size: 1.75rem;
  }
  
  .faq-description {
    font-size: 15px;
  }
  
  .accordion-button {
    font-size: 16px;
    padding: 15px 0;
  }
  
  .accordion-body {
    font-size: 14px;
  }
}
  
/* Footer */
.footer {
  background-color: #3E0110;
  color: var(--text-white);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  transition: color var(--transition-base);
}

.footer-nav a:hover {
  color: var(--text-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--text-white);
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-top {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  
  .footer-nav {
    gap: 20px;
  }
  
  .footer-nav a {
    font-size: 14px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    gap: 20px;
  }
}


/* Personalized Learning Section
 */
 /* ===== Section Base ===== */
 .personalized-learning-section {
  padding: 80px 0;
  color: #fff;
  background: #000;
  font-family: 'Poppins', sans-serif;
}

.personalized-learning-container {
  width: 1320px;
  margin: 0 auto;
}

.personalized-learning-title {
  max-width: 980px;
  text-align: left;
  line-height: 130%;
  margin-bottom: 60px;
}

/* ===== Flex Layout ===== */
.personalized-flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.personalized-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}

/* Top Row */
.personalized-row.top .personalized-card-1 {
  flex: 0 0 528px;
 border: 1px solid #EBEBEB; 
}
.personalized-row.top .personalized-card-2 {
  flex: 0 0 744px;
}

/* Bottom Row */
.personalized-row.bottom .personalized-card-3 {
  flex: 0 0 744px;
}
.personalized-row.bottom .personalized-card-4 {
  flex: 0 0 528px;
  border: 1px solid #EBEBEB40
}

/* ===== Card Base Style ===== */
.personalized-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: none !important;
  height: 400px;
}

.personalized-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.98;
}

.personalized-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

/* Text */
.personalized-card-content {
  position: relative;
  z-index: 2;
  max-width: 338px;
}

.personalized-card-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.6;
}

.personalized-card-description {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* ===== Individual Backgrounds ===== */

/* 1️⃣ First Box */
.personalized-card-1::before {
  background: #000;
 
}
.hindi-overlay {
  position: absolute;
  top: 40px;
  right: 0;
  color: #ECC77154;
  font-size: 56px;
  font-weight: 500;
  z-index: 9;
  pointer-events: none;
}

/* 2️⃣ Second Box (Red) */
.personalized-card-2::before {
  background: linear-gradient(180deg, #000000 0%, #630816 100%);
}
.personalized-card-2::after {
  background-image: url('../images/Mandala.svg');
  background-size: 55%;
  background-position: right center;
  z-index: 9;
}

/* 3️⃣ Third Box (Blue same style as red) */
.personalized-card-3::before {
  background: linear-gradient(180deg, #000000 0%, #091B72 100%);
}
.personalized-card-3::after {
  background-image: url('../images/Mandala-2.png');
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: right bottom;
    
    z-index: 9;
}
.personalized-card-3 .mandala-art {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/Mandala-3.png'); /* your top image */
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: left top;
  z-index: 999; /* above background, below text */
  pointer-events: none;
}

/* 4️⃣ Fourth Box (Dark red gradient) */
.personalized-card-4::before {
  background: #FF00000F;

}
.personalized-card-4::after {
  background-image: url('../images/om.png');
  background-repeat: no-repeat;
  background-size: 140%;
  background-position: 68px;
  opacity: 41%;
 
}

/* ===== Responsive ===== */
@media (max-width: 1300px) {
  .personalized-learning-container {
    width: 100%;
    padding: 0 20px;
  }

  .personalized-row {
    flex-direction: column;
    align-items: center;
  }

  .personalized-card {
    width: 100%;
    height: auto;
  }

  .hindi-overlay {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px){
  .personalized-card{
    flex: 350px !important;
    height: 280px !important;
  }
  .personalized-row{
    flex-direction: row;
  }

}
@media (max-width: 767px){
 
  .personalized-row{
    flex-direction: column;
  }
  .personalized-card{
    flex: 400px;
  }
  .kathak-slider .swiper-slide-active .slide-title{
    font-size: 26px;
  }
  .kathak-slider .swiper-slide-active{
    transform: scale(1);
  }
}

/* ===== Mobile Menu Styles ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #B7832C;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hide hamburger when menu is open */
.mobile-menu-toggle.active {
  opacity: 0;
  pointer-events: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #020103;
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu-overlay.active .mobile-menu-content {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.mobile-nav-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
  color: #fff;
  padding-left: 10px;
}

.mobile-nav-menu a i {
  font-size: 12px;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Show hamburger on mobile */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .header-container {
    grid-template-columns: auto 1fr auto auto;
    grid-template-areas: "logo nav actions toggle";
  }
  
  .mobile-menu-toggle {
    grid-area: toggle;
    justify-self: end;
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

