/**************************/
/* HEADER */
/**************************/

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

/* Header/Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #51cf66;
  display: flex;
  align-items: center;
  padding: 0.5rem 2rem;
  z-index: 999;
}

/* Navbar container */
/* Header */
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #edf1ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  z-index: 999;
  font-size: 1.5rem;
}

/* Navbar container */
.main-nav {
  display: flex;
  align-items: center;
  padding: 10px 40px;
  background-color: #f1e7e7;
  width: 100%;
}

/* Logo */
.logo img {
  height: 60px;
  width: auto;
  display: block;
}


/* Links - default desktop */
.main-nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  margin: 0;
  padding: 0;
  /* margin-left: auto;   ✅ ye ensure karega ke desktop pe menu bilkul right chipak jaye */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  /* logo left, menu right */
  align-items: center;
  width: 100%;
}

.main-nav-list {
  /* display: flex; */
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav-link {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: color 0.3s;
}

.main-nav-link:hover {
  color: #9b8f87;
}

/* CTA Button */
.nav-cta {
  padding: 0.5rem 1rem;
  background-color: #f0efee;
  color: #000;
  border-radius: 5px;
  font-weight: bold;
}

.nav-cta:hover {
  background-color: #f7f5f2;
}

/* Mobile Navbar Button */
.btn-mobile-nav {
  display: none;
  background: none;
  border: none;
  color: #000;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1000;
}

/* ============ Mobile Styles ============ */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    /* default hidden */
    flex-direction: column;
    background: #FFD580;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav-list {
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
    width: 100%;
    text-align: center;
    margin-left: 0;
    /* ✅ mobile me right-align hata diya */
  }

  .main-nav-link {
    color: #000 !important;
    font-size: 2.5rem;
    padding: 0.5rem;
  }

  .btn-mobile-nav {
    display: block;
  }
}

/* Container */
.main-nav-list {
  display: flex;
  /* desktop default */
  gap: 25px;
  margin: 0;
  padding: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .main-nav-list {
    display: none;
    /* hidden by default */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f5f5f5;
    text-align: center;
    padding: 1rem 0;
  }

  .main-nav-list.active {
    display: flex;
    /* show when active */
  }

  .btn-mobile-nav {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .main-nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f5f5f5;
    text-align: center;
    padding: 1rem 0;
  }

  .main-nav-list.active {
    display: flex;
  }

  .btn-mobile-nav {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
  }
}



/* Hero Section */
/* Banner image & overlay */
/* Hero Section */
/* Hero Section */
/* Hero Section */


/* Delivered Students Section */
.delivered-meals {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.delivered-imgs img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 5px;
}

.delivered-text {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-size: larger;
}

@media (max-width: 768px) {
  .hero {
    height: calc(100vh - 60px);
    /* navbar height subtract karke full screen cover */
    padding-top: 0;
    /* remove extra top padding */
    margin: 0;
    /* remove any margin */
  }

  .hero-text-box {
    padding: 0 10px;
    /* text padding adjust */
  }
}

/* Slider ke neeche gap dena (sirf desktop ke liye) */
@media (min-width: 992px) {
  .swiper {
    margin-bottom: 60px;
    /* yahan gap add ho jayega */
  }
}

/* Banner section ke neeche gap sirf desktop par */
/* Banner ke neeche gap sirf desktop par */
@media (min-width: 992px) {
  .section-hero {
    margin-bottom: 60px;
    /* neeche ka gap */
  }
}




/**************************/
/* HOW IT WORKS SECTION */
/**************************/

.section-how {
  padding: 9.6rem 0;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.step-img-box {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-box::before,
.step-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 60%;
  /* height: 60%; */

  /* 60% of parent's width */
  padding-bottom: 60%;

  /* background-color: #fdf2e9; */
  z-index: -2;
}

.step-img-box::after {
  width: 45%;
  padding-bottom: 45%;
  /* background-color: #fae5d3; */
  z-index: -1;
}

.step-img {
  width: 100%;
  height: 100%;
  border-radius: 20%;
  /* z-index: 10; */
}

/**************************/
/* MEALS SECTION */
/**************************/

.section-meals {
  padding: 9.6rem 0;
}

.meal {
  align-items: center;
  text-align: center;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
}

.meal:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.meal-content {
  /* padding: 3.2rem 4.8rem 4.8rem 4.8rem; */
  padding: 1.2rem 2.8rem 2.8rem 2.8rem;
}

.meal-tags {
  /* margin-bottom: 1.2rem; */
  display: flex;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
  font-weight: 600;
}

.tag--vegetarian {
  background-color: #51cf66;
}

.tag--vegan {
  background-color: #94d82d;
}

.tag--paleo {
  background-color: #ffd43b;
}

.meal-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.meal-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.meal-attribute {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 3rem;
}

.meal-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #e67e22;
}

.img-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.meal-img {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 50%;
}

.all-recipes {
  text-align: center;
  font-size: 1.8rem;
}

/**************************/
/* TESTIMONIALS SECTION */
/**************************/

.section-testimonials {
  background-color: #fdf2e9;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}

.testimonials-container {
  padding: 9.6rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
}

.gallery-item {
  /* height: 90%; */
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

/* new testominal */
/**************************/
/* Responsive Fix for Mobile */
/**************************/

@media (max-width: 768px) {
  .section-testimonials {
    grid-template-columns: 1fr;
    /* single column layout */
    padding: 4rem 2rem;
  }

  .testimonials-container {
    padding: 2rem;
    /* thoda kam padding mobile pe */
  }

  .testimonials {
    grid-template-columns: 1fr;
    /* 1 testimonial per row */
    row-gap: 3rem;
    column-gap: 0;
  }

  .testimonial-text {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: justify;
    /* paragraph look */
    word-wrap: break-word;
  }

  .testimonial-img {
    width: 5.5rem;
    margin-bottom: 1rem;
  }

  .testimonial-name {
    font-size: 1.4rem;
  }
}

/* Extra single testimonial fix */
/* Extra single testimonial fix with same color */
figure.testimonial {
  max-width: 100%;
  width: 100%;
  margin: 2rem auto;
  padding: 2rem;
  background: #fdf2e9;
  /* same background as section-testimonials */
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  text-align: left;
}

figure.testimonial .testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: justify;
  word-wrap: break-word;
  margin-bottom: 1.6rem;
  color: #333;
  /* same text color */
}

figure.testimonial .testimonial-img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

figure.testimonial .testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
  /* same as above testimonials */
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
  color: #333;
  /* dark readable color */
}

.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}


/**************************/
/* MEALS SECTION */
/**************************/

.section-pricing {
  padding: 6rem 0;
}

.pricing-plan {
  border-radius: 11px;

  width: 75%;
}

.pricing-plan--starter {
  justify-self: end;
  border: 2px solid #fdf2e9;
  padding: 4.6rem;
}

.pricing-plan--complete {
  background-color: #fdf2e9;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}

.pricing-plan--complete::after {
  content: "Best value";
  position: absolute;
  top: 6%;
  right: -18%;

  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name {
  color: #cf711f;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

.feature {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-icon {
  color: #e67e22;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #fdf2e9;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */

  /* top / horizontal / left */
  padding: 4.8rem 0 12.8rem;
}

.cta {
  display: grid;
  /* 2/3 = 66.6% + 1/3 = 33.3% */
  grid-template-columns: 2fr 1fr;
  /* background-color: #e67e22; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;

  background-image: linear-gradient(to right bottom, #eb984e, #e67e22);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #45260a;
}

.cta .heading-secondary {
  /* color: #45260a; */
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(to right bottom,
      rgba(235, 151, 78, 0.35),
      rgba(230, 125, 34, 0.35)),
    url("../img/islamicbanner.jpg");
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/**************************/
/* FOOTER */
/**************************/

/* Footer Base */


/* Slide style */

/* Slide overlay for better readability */
.dc-slider .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

/* Caption */
.dc-slider .slide-caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 10;
  color: #fff;
  /* always readable */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  /* soft shadow for clarity */
}

/* Slide heading */
.dc-slider .slide-caption h2 {
  margin: 0 0 6px;
  font-size: clamp(20px, 3vw, 32px);
  /* thoda chhota & responsive */
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}

/* Subheading / small text */
.dc-slider .slide-caption h4 {
  margin: 0 0 8px;
  font-size: clamp(12px, 1.8vw, 18px);
  font-weight: 600;
  opacity: 0.95;
  position: relative;
  padding-left: 18px;
}

.dc-slider .slide-caption h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 3px;
  background: #FFD700;
  /* small accent line for style */
  border-radius: 2px;
}

/* Paragraph / description */
.dc-slider .slide-caption p {
  margin: 0;
  font-size: clamp(12px, 1.6vw, 16px);
  line-height: 1.4;
  opacity: 0.95;
}

/* Slider main heading on top (optional) */
.slider-heading h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 40px);
  color: #FFD700;
  /* bright & visible */
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
}


/* Responsive tweak */
@media (max-width: 520px) {
  .slider-heading h1 {
    font-size: clamp(18px, 4vw, 32px);
  }
}

.dc-slider .swiper-slide {
  width: 250px;
  /* card ki fixed width */
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
}

/* Desktop/Laptop */
@media (min-width: 769px) {
  .dcSwiper .swiper-slide {
    width: 300px;
    /* fix width */
    height: 400px;
  }
}



/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Caption default me hidden rahega */
.dc-slider .slide-caption {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* Jab slide active hogi to text animate hoga */
.dc-slider .swiper-slide-active .slide-caption {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease forwards;
}

.dc-slider .swiper-slide-active .slide-caption h4 {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.dc-slider .swiper-slide-active .slide-caption h2 {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.dc-slider .swiper-slide-active .slide-caption p {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

/* Slider caption text */
.dc-slider .slide-caption h1,
.dc-slider .slide-caption h4,
.dc-slider .slide-caption p {
  color: #fff !important;
}


/* ctaformmmmmmmmmmmmmmmmm */

.section-cta {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */

  /* top / horizontal / left */
  padding: 4.8rem 0 12.8rem;
}

.cta {
  display: grid;
  /* 2/3 = 66.6% + 1/3 = 33.3% */
  grid-template-columns: 2fr 1fr;
  /* background-color: #e67e22; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;

  background-image: linear-gradient(to right bottom, #eb984e, #e67e22);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #45260a;
}

.cta .heading-secondary {
  /* color: #45260a; */
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(to right bottom,
      rgba(235, 151, 78, 0.35),
      rgba(230, 125, 34, 0.35)),
    url("../img/islamicbanner.jpg");
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/**************************/
/* FOOTER */
/**************************/

/* Footer Main Styling */
.footer {
  padding: 4rem 2rem;
  /* balanced padding for desktop */
  border-top: 1px solid #eee;
  background-color: #fff8f0;
  /* light cream background */
  color: #333;
  /* readable dark text */
  font-family: 'Arial', sans-serif;
}

/* Container inside footer */
.footer .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columns on desktop */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo Column */
.logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: block;
  margin-bottom: 1.5rem;
  height: auto;
  max-width: 150px;
}

/* Address/Contacts */
.address,
.contacts {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #555;
}

/* Footer Navigation */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  text-decoration: none;
  font-size: 1.6rem;
  color: #555;
  transition: all 0.3s;
}

.footer-link:hover {
  color: #51cf66;
  /* highlight color */
}

/* Social Links */
.social-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin-top: 1rem;
}

.social-icon {
  width: 2.4rem;
  height: 2.4rem;
}

/* Footer Headings */
.footer-heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

/* Copyright */
.copyright {
  font-size: 1.4rem;
  color: #767676;
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .logo-col,
  .address-col,
  .nav-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-heading {
    font-size: 1.6rem;
  }

  .address,
  .contacts,
  .footer-link {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .footer-nav {
    gap: 1rem;
    align-items: center;
  }

  .social-links {
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
  }

  .copyright {
    font-size: 1.3rem;
    margin-top: 2rem;
    padding-top: 1rem;
  }
}

/* csssssssssssssnavbar
 */

/**************************/
/* FIXES FOR MOBILE NAVBAR + FORM */
/**************************/

/* Navbar button mobile par visible ho */
@media (max-width: 768px) {
  .btn-mobile-nav {
    display: block;
    z-index: 9999;
  }

  .main-nav {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    background-color: #8a8582;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: all 0.3s ease-in;
    opacity: 0;
    pointer-events: none;
  }

  .main-nav-list {
    flex-direction: column;
    gap: 1.0rem;
  }

  .nav-open .main-nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-open .icon-mobile-nav[name="menu-outline"] {
    display: none;
  }

  .nav-open .icon-mobile-nav[name="close-outline"] {
    display: block;
  }
}

/* Form responsive banane ke liye */
@media (max-width: 768px) {
  .cta {
    grid-template-columns: 1fr;
    /* ek column bana do */
  }

  .cta-text-box {
    padding: 3.2rem;
  }

  .cta-form {
    grid-template-columns: 1fr;
    /* input fields 1 column me */
  }

  .cta-img-box {
    height: 300px;
    /* mobile ke liye ek fixed height */
    order: -1;
    /* image upar ajaye text ke */
  }
}

/* cardscsssss */
/* Cards Container */
/* Section Title */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #FFA500;
  /* orange underline */
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Cards Container */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem 2rem;
}

/* Individual Card */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  padding-bottom: 1.5rem;
}

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

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

.card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
  color: #222;
}

.card p {
  padding: 0 1rem;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  min-height: 60px;
}

/* Contact Us Button (Small + Rounded) */
.btn-contact {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  background-color: #FFA500;
  /* orange */
  color: #fff;
  border-radius: 20px;
  /* round shape */
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}

.btn-contact:hover {
  background-color: #e69500;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cards-container {
    gap: 1rem;
    padding: 0 1rem 1.5rem;
  }

  .card img {
    height: 150px;
  }
}

/* styleeadmision form */

.section-contact {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

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

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  font-weight: 600;
  display: block;
  margin: 1rem 0 0.5rem;
  color: #444;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.contact-form .options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form button {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 0.5rem;
  background: #0077cc;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #005fa3;
}

/* =================== CONTACT FORM IMPROVEMENT =================== */
.contact-form label {
  font-size: 1.6rem;
  /* label thoda bada aur readable */
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 1.6rem;
  /* input aur textarea ka font readable */
  padding: 1rem 1.2rem;
  /* thoda spacing barhaya */
  border-radius: 0.8rem;
  /* rounded corners */
  border: 1px solid #ccc;
  /* border maintain rakha */
}

.contact-form textarea {
  min-height: 150px;
  /* textarea ka height improve kiya */
  resize: vertical;
}

.contact-form .btn {
  font-size: 1.8rem;
  /* button ka font bada aur prominent */
  padding: 1.2rem 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  width: 100%;
}

.contact-form .btn {
  background: #0a3d62;
  color: #fff;
  padding: 1rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.contact-form .btn:hover {
  background: #07436e;
}

.note {
  font-size: large;
}

/* cardcsss */

/* ===== Courses Section Styling ===== */
/* ===== Courses Section Styling ===== */
/* ===== Courses Section Styling ===== */
.section-courses {
  padding: 60px 20px;
  background-color: #fff8f0;
  /* Cream background */
}

.section-courses .section-title {
  text-align: center;
  font-size: 3rem;
  /* Desktop heading */
  color: #333;
  margin-bottom: 50px;
  font-weight: 700;
}

/* ===== Cards Grid ===== */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* ===== Individual Card ===== */
.card {
  background-color: #fff5e6;
  /* Cream card background */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #333;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

/* ===== Card Images ===== */
.card img {
  width: 100%;
  height: 250px;
  /* Fixed height */
  object-fit: cover;
  /* Full image cover */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== Card Text ===== */
.card h3 {
  font-size: 2rem;
  /* Bada heading */
  margin: 15px 10px 10px;
  font-weight: 700;
}

.card p {
  font-size: 1.2rem;
  /* Bada paragraph */
  line-height: 1.6;
  padding: 0 15px 20px;
}

/* ===== Card Button ===== */
.card .btn-contact {
  display: inline-block;
  margin-bottom: 20px;
  padding: 14px 30px;
  background-color: #f5d6b3;
  /* Light cream button */
  color: #333;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card .btn-contact:hover {
  background-color: #eacda3;
  /* Darker cream on hover */
  color: #000;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 992px) {
  .card img {
    height: 220px;
  }

  .card h3 {
    font-size: 1.8rem;
  }

  .card p {
    font-size: 1.1rem;
  }

  .card .btn-contact {
    padding: 12px 26px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .card img {
    height: 200px;
  }

  .card h3 {
    font-size: 1.6rem;
  }

  .card p {
    font-size: 1rem;
  }

  .card .btn-contact {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}


/* PDF Courses Section */
#pdf-courses {
  padding: 60px 20px;
  background-color: #fff8f0;
  /* Cream background */
}

#pdf-courses .section-title {
  text-align: center;
  font-size: 3rem;
  color: #333;
  margin-bottom: 50px;
  font-weight: 700;
}

#pdf-courses .cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

#pdf-courses .card {
  background-color: #fff5e6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

#pdf-courses .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

#pdf-courses .card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#pdf-courses .card h3 {
  font-size: 2rem;
  margin: 15px 10px 10px;
  font-weight: 700;
}

#pdf-courses .card p {
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 0 15px 20px;
}

#pdf-courses .card-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

#pdf-courses .btn-contact {
  padding: 12px 25px;
  background-color: #f5d6b3;
  color: #333;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

#pdf-courses .btn-contact:hover {
  background-color: #eacda3;
  color: #000;
}

/* Responsive */
@media(max-width: 600px) {
  #pdf-courses .card img {
    height: 200px;
  }

  #pdf-courses .card h3 {
    font-size: 1.6rem;
  }

  #pdf-courses .card p {
    font-size: 1rem;
  }

  #pdf-courses .btn-contact {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* PDF Cards Section Styling */
#pdf-courses .cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

#pdf-courses .card {
  background-color: #fff8e7;
  /* cream color */
  border-radius: 12px;
  padding: 15px;
  width: 300px;
  /* desktop width */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

#pdf-courses .card:hover {
  transform: translateY(-5px);
}

#pdf-courses .card img {
  width: 100%;
  height: auto;
  /* ensures full image visible */
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
}

#pdf-courses .card h3 {
  font-size: 1.2rem;
  /* bigger font for mobile */
  margin: 10px 0 5px 0;
}

#pdf-courses .card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}

#pdf-courses .card-buttons {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}

#pdf-courses .card-buttons .btn-contact {
  background-color: #f9a825;
  /* golden accent */
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

#pdf-courses .card-buttons .btn-contact:hover {
  background-color: #e89f1a;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  #pdf-courses .card {
    width: 90%;
    /* full width on mobile */
  }

  #pdf-courses .card h3 {
    font-size: 1.4rem;
  }

  #pdf-courses .card p {
    font-size: 1.1rem;
  }
}

/* loginsighnup */

.nav-btn {
  padding: 8px 16px;
  margin-left: 10px;
  border: none;
  background-color: #e8cfa0;
  /* cream color */
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff8f0;
  /* cream color */
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  text-align: center;
}

.modal input {
  width: 90%;
  margin: 10px 0;
  padding: 8px;
  font-size: 16px;
}

.modal button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #e8cfa0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.close {
  float: right;
  font-size: 28px;
  cursor: pointer;
}

/* sighnuplogin */

/* tajweedrules */

/* Tajweed Cards */
#tajweed-rules .cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

#tajweed-rules .card {
  background-color: #fff8f0;
  /* Cream color */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

#tajweed-rules .card:hover {
  transform: translateY(-5px);
}

#tajweed-rules .card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 12px;
}

#tajweed-rules .card p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}


/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Logo + text container */
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Logo image */
.logo {
  height: 60px;
  width: auto;
  margin-right: 12px;
}

/* Logo text */
.logo-text {
  font-family: 'Pacifico', cursive;
  /* Stylish font */
  font-size: 20px;
  color: #333;
}

/* Social links */
.social-links {
  display: flex;
  gap: 15px;
  list-style: none;
}

.social-icon {
  font-size: 24px;
  color: #333;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .logo {
    height: 50px;
  }

  .logo-text {
    font-size: 16px;
  }
}


/* stylishwriting */

/* Import Google Font (optional, stylish font) */
/* Google Font import */
/* @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap'); */

.logo-container {
  display: flex;
  align-items: center;
  /* Vertically center */
  gap: 10px;
  /* Logo aur text ke beech gap */
}

.logo {
  height: 50px;
  /* Logo thoda chhota, zyada bara na ho */
  width: auto;
}

.institute-name {
  font-family: 'Great Vibes', cursive;
  /* Stylish script font */
  font-size: 22px;
  /* Font size kam karke professional look */
  color: #2c3e50;
  /* Stylish dark color */
  margin: 0;
}

/* ===== Hero Section ===== */
/* ===== Hero Section ===== */
/* ===== Hero Section ===== */
/* ===== Hero Section ===== */
/* Hero Section */

.hero {
  width: 100%;
  height: 100vh;
  /* Full screen */
  background-image: url("../img/islamicbanner.jpg");
  /* apni image ka exact naam */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}




.dc-slider {
  margin-top: 80px !important;

}

.section-hero {
  margin-bottom: 180px;
}

/* Text Box */
.hero-text-box {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 90%;
}

/* Headline */
.hero-heading {
  font-family: 'Playfair Display', 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Subheading */
.hero-subheading {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  /* Desktop ke liye same */
  font-weight: 600;
  color: #222;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 30px;
  text-transform: capitalize;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  text-align: right;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-subheading {
    font-size: 1.5rem;
    /* Mobile pe clearly chhota */
    text-align: left;
    line-height: 1.3;
  }
}




/* Stylish Button */
.btn-enroll {
  display: inline-block;
  background: linear-gradient(135deg, #e86a33, #292828);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-enroll:hover {
  background: linear-gradient(135deg, #c75425, #e86a33);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive */
/* RESPONSIVE BREAKPOINTS */
/* ===================== */


/* Tablets + large mobiles (max 768px) */
@media (max-width: 768px) {
  .hero {
    height: 100dvh;
    /* mobile browsers ke liye safe */
  }

  .hero-heading {
    font-size: 2.8rem;
  }

  .hero-subheading {
    font-size: 2.1rem;
  }

  .btn-enroll {
    padding: 12px 24px;
    font-size: 1.1rem;
  }
}





/* feedback */

body {
  font-family: Arial, sans-serif;
  background-color: #fff8f0;
  margin: 0;
  padding: 0;
}

.feedback-container {
  max-width: 600px;
  margin: 50px auto;
  background-color: #fff5e6;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

h1 {
  text-align: center;
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

label {
  font-weight: 600;
  display: block;
  margin: 15px 0 5px;
  color: #333;
}

input[type="text"],
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.rating span {
  font-size: 1.5rem;
  cursor: pointer;
}

.radio-group,
.checkbox-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}

.radio-group label,
.checkbox-group label {
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
}

.btn-submit {
  background-color: #f5d6b3;
  color: #333;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #eacda3;
}

/* Responsive */
@media (max-width: 768px) {
  .feedback-container {
    padding: 20px 15px;
    margin: 30px auto;
  }

  h1 {
    font-size: 2rem;
  }

  .radio-group,
  .checkbox-group {
    flex-direction: column;
    gap: 10px;
  }
}

/* Mobile nav light theme */
@media (max-width: 768px) {
  .main-nav {
    background-color: #f5f5f5;
    /* website ke theme ke light cream / light color */
    color: #333;
    /* text dark for readability */
    transition: all 0.3s ease-in-out;
  }

  /* Hamburger icon color */
  .icon-mobile-nav {
    color: #2c3e50;
    /* thoda dark but light on background */
  }

  .nav-open .main-nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    color: #2c3e50;
    /* links light and readable */
    font-weight: 600;
    font-size: 1.6rem;
  }
}


/* vedio tag css */

/* Hero section styling already hoga */

/* Heading above video */
.video-heading {
  text-align: center;
  margin: 40px 20px 20px;
}

.video-heading h2 {
  font-size: clamp(2rem, 5vw, 4.5rem); /* responsive size */
  color: #0b3b5a;
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Georgia', serif;
}

.video-heading p {
  font-size: clamp(1rem, 2.5vw, 1.3rem); /* responsive sub-heading */
  color: #444;
}


/* Video Section */
.video-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.video-container {
  width: 100%;
  max-width: 900px;   /* max size desktop par */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.video-embed {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .video-heading h2 {
    font-size: 1.5rem;
  }
  .video-container {
    max-width: 100%;
  }
}
