/* New CSS */
/* ===== Cinematic Hero ===== */
.cinematic-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1200px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
  z-index: 2;
  padding: 0 2rem;
}

.content-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background-color: #ff6600;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease-out;
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero-title .title-line {
  display: block;
}

.hero-title .accent {
  color: #ff6600;
  position: relative;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0066ff;
}

/* Hero Meta */
.hero-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-meta span::before {
  content: '•';
  color: #ff6600;
}

.hero-meta span:first-child::before {
  display: none;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #ff6600;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button:hover {
  background-color: transparent;
  border-color: #ff6600;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button svg {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-indicator .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .cinematic-hero {
    min-height: 600px;
  }
  
  .hero-content {
    padding: 0 1.5rem;
  }
  
  .hero-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-meta span::before {
    display: none;
  }
  
  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

/* ✅ Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans&display=swap');

/* ✅ Brand Colors */
:root {
  --cinematic-black: #000000;
  --electric-blue: #0066FF;
  --sunset-orange: #FF6600;
  --silver-grey: #C0C0C0;
  --pure-white: #FFFFFF;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ✅ General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--cinematic-black);
  background-color: var(--pure-white);
  line-height: 1.6;
}

/* ✅ Section Container */
.blog-section {
  padding: 3rem 1rem;
  background-color: var(--pure-white);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

/* ✅ Typography */
.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--cinematic-black);
}

.sub-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--sunset-orange);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

/* ✅ Blog Image */
.blog-image {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

.blog-image:hover img {
  transform: scale(1.02);
}

.blog-image-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--silver-grey);
}

/* ✅ Highlight Box */
.highlight-box {
  background-color: var(--electric-blue);
  color: var(--pure-white);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.highlight-box strong {
  color: var(--pure-white);
}

.highlight-box .highlight {
  font-weight: bold;
  color: var(--sunset-orange);
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .sub-heading {
    font-size: 1.3rem;
  }

  .lead {
    font-size: 1rem;
    text-align: left;
    padding: 0 1rem;
  }

  .highlight-box {
    font-size: 0.95rem;
    padding: 1rem;
  }
}

/* ✅ Simple Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Section Title */
.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--cinematic-black);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Benefit Item */
.benefit-item {
  background-color: var(--pure-white);
  padding: 1.5rem;
  border-left: 5px solid var(--electric-blue);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.1);
  transition: transform 0.3s ease;
}

.benefit-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--sunset-orange);
}

.benefit-item p {
  font-family: var(--font-body);
  color: var(--cinematic-black);
  font-size: 1rem;
}

/* Benefit Images */
.benefit-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.benefit-image:hover img {
  transform: scale(1.02);
}

.blog-image-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--silver-grey);
  text-align: center;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .benefit-image {
    grid-column: span 2;
  }
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Variables */
:root {
  --cinematic-black: #000000;
  --electric-blue: #0066FF;
  --sunset-orange: #FF6600;
  --silver-grey: #C0C0C0;
  --pure-white: #FFFFFF;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* Section base */
.section-3 {
  background: var(--pure-white);
  padding: 3rem 1rem 4rem;
  color: var(--cinematic-black);
  font-family: var(--font-body);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* Headings */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--cinematic-black);
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  color: var(--sunset-orange);
  text-align: center;
}

/* Intro and final paragraphs */
.intro-text,
.final-text,
.cta-text {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--cinematic-black);
}

/* Lists */
.methodology-list,
.results-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--cinematic-black);
  font-size: 1rem;
}

.methodology-list li strong,
.results-list li {
  font-weight: 600;
}

/* Testimonial */
.testimonial-card {
  background: var(--electric-blue);
  color: var(--pure-white);
  padding: 2rem 2.5rem;
  border-radius: 12px;
  margin: 2rem auto 3rem;
  max-width: 720px;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
  font-style: italic;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.5;
}

.testimonial-card::before {
  content: "“";
  font-size: 4rem;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.15;
  font-family: var(--font-heading);
}

.testimonial-author {
  font-style: normal;
  font-weight: 700;
  margin-top: 1.5rem;
  text-align: right;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background: var(--silver-grey);
  padding: 2rem 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--electric-blue);
}

.cta-buttons {
  margin-top: 1.5rem;
}

.btn {
  font-family: var(--font-heading);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--electric-blue);
  color: var(--pure-white);
  border: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--sunset-orange);
  outline: none;
  color: var(--pure-white);
}

.btn-outline-primary {
  background-color: transparent;
  border: 2px solid var(--electric-blue);
  color: var(--electric-blue);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--electric-blue);
  color: var(--pure-white);
  outline: none;
}

/* Social Share */
.social-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.share-text {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  color: var(--cinematic-black);
}

.social-icon {
  color: var(--electric-blue);
  font-size: 1.5rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.social-icon:hover,
.social-icon:focus {
  color: var(--sunset-orange);
  outline: none;
}

/* Scroll Reveal (basic) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 767px) {
  .section-title {
    font-size: 1.6rem;
  }
  .section-subtitle {
    font-size: 1.3rem;
    margin-top: 2rem;
  }
  .testimonial-card {
    padding: 1.5rem 1.8rem;
    font-size: 1rem;
  }
  .cta-section {
    padding: 1.5rem 1rem 2rem;
  }
  .btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.6rem;
  }
  .social-share {
    justify-content: flex-start;
  }
}

.faq-section {
  background-color: #ffffff;
  padding: 3rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.faq-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  text-align: center;
  color: #000000;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #C0C0C0;
  padding-bottom: 1rem;
}

.faq-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #0066FF;
  cursor: pointer;
}

.faq-answer p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #333;
  margin-top: 0.5rem;
}

/* Optional: Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 2rem 1rem;
  }

  .faq-section .section-title {
    font-size: 1.6rem;
  }

  .faq-item h3 {
    font-size: 1.1rem;
  }
}

.faq-section {
  padding: 3rem 1.5rem;
  max-width: 960px;
  margin: auto;
  background: #ffffff;
}

.faq-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #000000;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-question {
  width: 100%;
  background: #f5f5f5;
  border: none;
  text-align: left;
  padding: 1rem;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  color: #0066FF;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e0ecff;
}

.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #ffffff;
}

.faq-answer p {
  margin: 1rem 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1rem 1rem 1rem;
}

.faq-section {
  margin-top: 3rem;
}
.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
}
.faq-question {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}
.faq-answer {
  font-family: 'Open Sans', sans-serif;
  margin-top: 0.5rem;
  color: #444;
}
.lang-hindi {
  font-weight: normal;
  color: #555;
  display: block;
  font-size: 0.9em;
  margin-top: 0.25rem;
}

/* Scoped: Course Banner */
.course-banner {
  background: linear-gradient(135deg, #000000 40%, #1a1a1a 100%);
  color: #FFFFFF;
  padding: 3rem 1.5rem;
  margin-top: 4rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.course-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #0066FF 10%, transparent 70%);
  opacity: 0.2;
  z-index: 0;
}

.course-banner .course-banner-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: auto;
}

.course-banner .banner-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FF6600;
  margin-bottom: 1rem;
}

.course-banner .banner-subtext {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #C0C0C0;
  margin-bottom: 2rem;
}

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

.course-banner .btn-primary,
.course-banner .btn-outline {
  font-family: 'Montserrat', sans-serif;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.course-banner .btn-primary {
  background-color: #0066FF;
  color: #fff;
  border: none;
}

.course-banner .btn-primary:hover {
  background-color: #0056cc;
}

.course-banner .btn-outline {
  border: 2px solid #FF6600;
  color: #FF6600;
  background-color: transparent;
}

.course-banner .btn-outline:hover {
  background-color: #FF6600;
  color: #fff;
}

/* Optional Reveal Animation (Scoped) */
.course-banner.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.course-banner.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Scoped styles for the new vertical layout */
.vertical-layout .benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.vertical-layout .benefits-text {
  flex: 1 1 55%;
  max-width: 600px;
}

.vertical-layout .benefits-image {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vertical-layout .benefits-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.vertical-layout .blog-image-caption {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #666;
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .vertical-layout .benefits-wrapper {
    flex-direction: column;
  }

  .vertical-layout .benefits-text,
  .vertical-layout .benefits-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.styled-methodology .methodology-cards {
  background-color: #f9f9fb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

.styled-methodology .methodology-list li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.styled-methodology .methodology-list li span {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: #6a1b9a;
}

.styled-methodology .testimonial-card {
  background: #fff4e5;
  padding: 2rem;
  border-left: 5px solid #ff9800;
  border-radius: 10px;
  margin: 2rem 0;
  font-style: italic;
}

.styled-methodology .testimonial-author {
  font-weight: bold;
  margin-top: 1rem;
  text-align: right;
  color: #333;
}

.styled-methodology .results-list {
  padding: 1rem 0 2rem;
  list-style: none;
}

.styled-methodology .results-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.styled-methodology .results-list li::before {
  content: "✅";
  margin-right: 0.75rem;
  color: #4caf50;
}

.styled-methodology .cta-section {
  background-color: #e3f2fd;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 2rem 0;
}

.styled-methodology .cta-buttons {
  margin-top: 1.5rem;
}

.styled-methodology .cta-buttons a {
  margin: 0 0.5rem;
}

.styled-methodology .social-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.styled-methodology .social-share a {
  text-decoration: none;
  color: #555;
  background: #f1f1f1;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.styled-methodology .social-share a:hover {
  background: #ddd;
}

.section-how-we-teach {
  background-color: #f9f9f9;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.section-how-we-teach .methodology-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-how-we-teach .methodology-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.section-how-we-teach .methodology-list li {
  margin-bottom: 1.2rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-left: 4px solid #0066ff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.section-how-we-teach .highlight-box {
  background: #ffffff;
  padding: 2rem;
  border: 2px solid #ff6600;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 500px;
}

.section-how-we-teach .highlight-box .highlight {
  font-weight: bold;
  color: #e65100;
}

.section-how-we-teach .cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  background-color: #0066ff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.section-how-we-teach .cta-button:hover {
  background-color: #004ccc;
}

.section-how-we-teach .related-posts {
  margin-top: 4rem;
}

.section-how-we-teach .related-posts ul {
  list-style: none;
  padding: 0;
}

.section-how-we-teach .related-posts li {
  margin-bottom: 1rem;
}

.section-how-we-teach .related-posts a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.section-how-we-teach .related-posts a:hover {
  color: #0066ff;
}

/* Responsive */
@media (min-width: 768px) {
  .section-how-we-teach .methodology-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .section-how-we-teach .methodology-list {
    flex: 1;
    margin-right: 2rem;
  }

  .section-how-we-teach .highlight-box {
    flex: 0 0 320px;
  }
}

.cinematic-banner {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1543852786-1cf6624b9987?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.cinematic-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c92502 0%, #ffab00 100%);
    box-shadow: 0 0 15px rgba(201, 37, 2, 0.7);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 11, 26, 0.85) 0%, rgba(32, 7, 33, 0.85) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.banner-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.facilities-btn {
    background: linear-gradient(135deg, #c92502 0%, #ff5e00 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(201, 37, 2, 0.4);
}

.comparison-btn {
    background: transparent;
    color: white;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.facilities-btn:hover {
    background: linear-gradient(135deg, #ff5e00 0%, #c92502 100%);
}

.comparison-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffab00;
}

/* Responsive design */
@media (max-width: 768px) {
    .cinematic-banner {
        height: 450px;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-description {
        font-size: 1.1rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .banner-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cinematic-banner {
        height: 400px;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
}


    .amdfa-faq-section {
        background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
        color: white;
        padding: 60px 0;
        text-align: center;
    }
    
    .amdfa-faq-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .amdfa-faq-heading {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }
    
    .amdfa-faq-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
        line-height: 1.6;
        opacity: 0.9;
    }
    
    .amdfa-faq-cta {
        margin-top: 30px;
    }
    
    .amdfa-faq-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .amdfa-faq-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    @media (max-width: 768px) {
        .amdfa-faq-heading {
            font-size: 2rem;
        }
        
        .amdfa-faq-description {
            font-size: 1.1rem;
        }
    }

