html {
  scroll-behavior: smooth;
}

/* Cinematic Breadcrumb Styles */
/* Floating Sticky Breadcrumb Styles */
.floating-breadcrumb {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: breadcrumbEntrance 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
  transition: all 0.3s ease;
}

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

.floating-breadcrumb:hover {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.breadcrumb-track {
  overflow: hidden;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--electric-blue);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--sunset-orange);
}

.breadcrumb-icon {
  transition: transform 0.3s ease;
}

.breadcrumb-link:hover .breadcrumb-icon {
  transform: scale(1.2) rotate(-10deg);
}

.breadcrumb-current {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-divider {
  display: flex;
  align-items: center;
  color: var(--electric-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .floating-breadcrumb {
    left: 1rem;
    bottom: 1rem;
    padding: 0.6rem 1.2rem;
  }
  
  .breadcrumb-link,
  .breadcrumb-current {
    font-size: 0.85rem;
  }
  
  .breadcrumb-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .floating-breadcrumb {
    width: calc(100% - 2rem);
    left: 1rem;
    bottom: 1rem;
    border-radius: 8px;
    text-align: center;
    justify-content: center;
  }
  
  .breadcrumb-list {
    justify-content: center;
  }
}

/* Our Story Timeline - Cinematic Redesign */
.story-section {
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.story-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.story-section .section-tagline {
  color: var(--sunset-orange);
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.story-section .section-tagline::before {
  background: var(--sunset-orange);
}

.story-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cinematic-black);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.story-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--electric-blue);
}

.story-section .section-subtitle {
  color: #666;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Cinematic Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 100px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, 
    var(--sunset-orange), 
    var(--electric-blue));
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 102, 204, 0.2);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 3rem;
  transition: all 0.3s ease;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  position: absolute;
  left: -80px;
  top: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cinematic-black);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
  background: var(--electric-blue);
  transform: scale(1.1) rotate(5deg);
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 30px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid white;
}

.timeline-content h3 {
  color: var(--cinematic-black);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
}

.timeline-content h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--sunset-orange);
}

.timeline-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

.timeline-content a {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px dashed currentColor;
}

.timeline-content a:hover {
  color: var(--sunset-orange);
  border-bottom-style: solid;
}

/* Decorative Elements */
.timeline-item::after {
  content: '';
  position: absolute;
  left: 46px;
  top: 40px;
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid var(--electric-blue);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item:hover::after {
  background: var(--sunset-orange);
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .timeline {
    padding-left: 80px;
  }
  
  .timeline-year {
    width: 70px;
    height: 70px;
    left: -70px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 0;
  }
  
  .timeline::before {
    left: 40px;
  }
  
  .timeline-item {
    padding-left: 0;
    padding-top: 90px;
  }
  
  .timeline-year {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
  
  .timeline-content::before {
    display: none;
  }
  
  .timeline-item::after {
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
  }
  
  .timeline-item:hover .timeline-content {
    transform: translateY(5px);
  }
}

@media (max-width: 576px) {
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item::after {
    left: 30px;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
}

/* Founder Section - Cinematic Redesign */

.founder-cinematic {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
}

.founder-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.founder-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.film-strip-overlay {
  position: relative;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(20, 20, 20, 0.7);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.film-perforation {
  height: 20px;
  background: repeating-linear-gradient(
    to right,
    #000,
    #000 10px,
    #333 10px,
    #333 20px
  );
  margin: 0 -10px;
}

.founder-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 150%; /* Adjust based on your image aspect ratio */
  overflow: hidden;
}

.founder-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to contain */
  object-position: center top; /* Align to top but don't crop */
  transition: transform 0.5s ease;
}

.directors-chair-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.founder-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cinematic-black);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border: 1px solid var(--sunset-orange);
  z-index: 3;
}

.founder-content {
  color: white;
}

.cinematic-quote {
  position: relative;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 102, 0, 0.1);
  border-left: 3px solid var(--sunset-orange);
}

.quote-mark {
  position: absolute;
  top: 0;
  left: 1rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 102, 0, 0.2);
  font-family: serif;
}

blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}

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

.quote-underline {
  height: 2px;
  width: 100px;
  background: var(--sunset-orange);
  margin-top: 1.5rem;
}

.key-moments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.moment-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 102, 204, 0.1);
  border-left: 2px solid var(--electric-blue);
}

.moment-icon svg {
  min-width: 24px;
}

.moment-content h4 {
  margin: 0 0 0.5rem;
  color: white;
}

.moment-content p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.founder-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--sunset-orange);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.founder-cta:hover {
  background: #e65c00;
  transform: translateY(-2px);
}

/* Decorative Elements */
.clapperboard-decoration {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FF6600"><path d="M18 9V5H6v4H4v2h2v8h12v-8h2V9h-2z"/></svg>') no-repeat center;
  opacity: 0.1;
  z-index: 1;
}

.film-reel-decoration {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230066CC"><path d="M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-10C6.48 0 2 4.48 2 10s4.48 10 10 10 10-4.48 10-10S17.52 0 12 0zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></svg>') no-repeat center;
  opacity: 0.1;
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .founder-container {
    grid-template-columns: 1fr;
  }
  
  .founder-image-wrapper {
    padding-bottom: 120%; /* Adjust aspect ratio for mobile */
  }
  
  .key-moments {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .founder-image-wrapper {
    padding-bottom: 100%; /* More square aspect ratio for small devices */
  }
  
  blockquote {
    font-size: 1.2rem;
  }
}

/* Values Section - Cinematic Redesign */
.values-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.values-section .section-header {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.values-section .section-tagline {
  color: var(--sunset-orange);
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.values-section .section-tagline::before {
  background: var(--sunset-orange);
}

.values-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
}

.values-section .section-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.values-content > p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: rgba(255,255,255,0.9);
}

.values-list {
  display: grid;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--sunset-orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.value-item:hover {
  background: rgba(0,102,204,0.1);
  border-color: rgba(0,102,204,0.3);
  transform: translateY(-5px);
}

.value-item:hover::before {
  transform: scaleY(1);
}

.value-icon {
  font-size: 1.8rem;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,102,0,0.1);
  color: var(--sunset-orange);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: var(--sunset-orange);
  color: white;
  transform: rotate(10deg) scale(1.1);
}

.value-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: white;
}

.value-text h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.value-text h3 a:hover {
  color: var(--sunset-orange);
}

.value-text p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.value-text p a {
  color: var(--electric-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.value-text p a:hover {
  color: var(--sunset-orange);
  text-decoration: underline;
}

.values-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  height: 100%;
  min-height: 600px;
}

.values-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.values-image:hover img {
  transform: scale(1.03);
}

.responsive-video {
  max-width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
}

/* Decorative Elements */
.values-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,102,0,0.1) 0%, transparent 70%);
  z-index: 1;
}

.values-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,102,204,0.1) 0%, transparent 70%);
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .values-image {
    min-height: 400px;
    order: -1;
  }
  
  .value-item {
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .values-section {
    padding: 4rem 0;
  }
  
  .value-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .values-section::before,
  .values-section::after {
    display: none;
  }
}

/* Teaching Philosophy - Cinematic Redesign */
.philosophy-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.philosophy-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.philosophy-section .section-tagline {
  color: var(--sunset-orange);
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.philosophy-section .section-tagline::before {
  background: var(--sunset-orange);
}

.philosophy-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.philosophy-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--electric-blue);
}

.philosophy-section .section-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Philosophy Grid - Cinematic Cards */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0,102,204,0.1) 0%, 
    rgba(255,102,0,0.05) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: var(--electric-blue);
}

.philosophy-card:hover::before {
  opacity: 1;
}

.philosophy-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(255,102,0,0.1);
  color: var(--sunset-orange);
  transition: all 0.3s ease;
}

.philosophy-card:hover .philosophy-icon {
  background: var(--sunset-orange);
  color: white;
  transform: rotate(10deg) scale(1.1);
}

.philosophy-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: white;
  position: relative;
}

.philosophy-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--electric-blue);
  transition: width 0.3s ease;
}

.philosophy-card:hover h3::after {
  width: 80px;
}

.philosophy-card p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* Decorative Elements */
.philosophy-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, 
    rgba(255,102,0,0.1) 0%, 
    transparent 70%);
  z-index: 0;
}

.philosophy-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, 
    rgba(0,102,204,0.1) 0%, 
    transparent 70%);
  z-index: 0;
}

/* SVG Icons Styling */
.philosophy-icon svg {
  width: 32px;
  height: 32px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .philosophy-section {
    padding: 4rem 0;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .philosophy-card {
    padding: 2rem;
  }
  
  .philosophy-section::before,
  .philosophy-section::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .philosophy-icon {
    width: 60px;
    height: 60px;
  }
  
  .philosophy-card h3 {
    font-size: 1.3rem;
  }
}
     
/* MDFA Facilities Section Styles - Scoped to prevent affecting other elements */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

.mdfa-facilities-section {
  padding: 5rem 0;
  background-color: #000000; /* Cinematic Black */
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.mdfa-facilities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0066FF, #FF6600, #0066FF, transparent);
  z-index: 1;
}

.mdfa-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.mdfa-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mdfa-section-tagline {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #FF6600; /* Sunset Orange */
  margin-bottom: 1rem;
  font-weight: 600;
}

#mdfa-facilities-heading {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #FFFFFF; /* Pure White */
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mdfa-section-subtitle {
  font-size: 1.2rem;
  color: #C0C0C0; /* Silver Grey */
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.mdfa-facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.mdfa-facility-card {
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 102, 255, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.mdfa-facility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(255, 102, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.mdfa-facility-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
  border-color: rgba(0, 102, 255, 0.5);
}

.mdfa-facility-card:hover::before {
  opacity: 1;
}

.mdfa-facility-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.mdfa-facility-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mdfa-facility-card:hover .mdfa-facility-video {
  transform: scale(1.05);
}

.mdfa-video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mdfa-facility-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: white;
  padding: 1.5rem;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.mdfa-facility-overlay h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  color: #FFFFFF;
}

.mdfa-facility-overlay p {
  font-size: 0.9rem;
  margin: 0;
  color: #C0C0C0;
}

.mdfa-facility-content {
  padding: 1.8rem;
  position: relative;
  z-index: 2;
}

.mdfa-facility-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
}

.mdfa-facility-content p {
  color: #C0C0C0;
  margin-bottom: 1.8rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.mdfa-facility-link {
  display: inline-block;
  color: #0066FF; /* Electric Blue */
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.mdfa-facility-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0066FF;
  transition: width 0.3s ease;
}

.mdfa-facility-link:hover {
  color: #FF6600; /* Sunset Orange */
}

.mdfa-facility-link:hover::after {
  width: 100%;
  background: #FF6600;
}

.mdfa-facility-tour-cta {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(255, 102, 0, 0.1) 100%);
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: white;
  border-radius: 12px;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.mdfa-tour-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: #FFFFFF;
}

.mdfa-tour-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #C0C0C0;
  font-size: 1.1rem;
  max-width: 500px;
}

.mdfa-btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  background-color: #0066FF; /* Electric Blue */
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.mdfa-btn-primary {
  background: linear-gradient(90deg, #0066FF, #0044CC);
}

.mdfa-btn-primary:hover {
  background: linear-gradient(90deg, #FF6600, #CC5500);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.mdfa-tour-badge {
  background: linear-gradient(90deg, #FF6600, #CC5500);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .mdfa-facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mdfa-facilities-grid {
    grid-template-columns: 1fr;
  }
  
  .mdfa-facility-tour-cta {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  #mdfa-facilities-heading {
    font-size: 2.2rem;
  }
  
  .mdfa-tour-content h3 {
    font-size: 1.7rem;
  }
}

/* Animation for cinematic effect */
@keyframes mdfa-glow {
  0% { box-shadow: 0 0 20px rgba(0, 102, 255, 0.3); }
  50% { box-shadow: 0 0 30px rgba(0, 102, 255, 0.6); }
  100% { box-shadow: 0 0 20px rgba(0, 102, 255, 0.3); }
}

.mdfa-facility-card {
  animation: mdfa-glow 3s infinite ease-in-out;
}

.mdfa-facility-card:nth-child(2n) {
  animation-delay: 0.5s;
}

.mdfa-facility-card:nth-child(3n) {
  animation-delay: 1s;
}

/* Alumni Success Section - Clean Modern Design */
.alumni-section {
  background: #f9f9f9;
  padding: 6rem 0;
}

.alumni-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.alumni-section .section-tagline {
  color: var(--sunset-orange);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.alumni-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--cinematic-black);
  margin-bottom: 1rem;
}

.alumni-section .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Alumni Grid Layout */
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.alumni-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.alumni-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.alumni-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.alumni-card:hover .alumni-image img {
  transform: scale(1.05);
}

.alumni-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--electric-blue);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.alumni-content {
  padding: 1.5rem;
}

.alumni-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--cinematic-black);
}

.alumni-title {
  color: var(--electric-blue);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: block;
}

.alumni-bio {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.alumni-bio a {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.alumni-bio a:hover {
  color: var(--sunset-orange);
  text-decoration: underline;
}

.alumni-projects {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.alumni-projects img {
  height: 30px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.alumni-projects img:hover {
  opacity: 1;
}

/* Stats Section */
.alumni-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  min-width: 150px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .alumni-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .alumni-section {
    padding: 4rem 0;
  }
  
  .alumni-image {
    height: 250px;
  }
  
  .alumni-stats {
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.5rem;
    min-width: 120px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .alumni-grid {
    grid-template-columns: 1fr;
  }
  
  .alumni-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-card {
    width: 100%;
    max-width: 200px;
  }
}

/* Student Films Showcase - Dark Cinematic */
.films-showcase {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 6rem 0;
  position: relative;
  color: white;
}

.films-showcase .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.films-showcase .section-tagline {
  color: var(--sunset-orange);
  font-size: 0.9rem;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 1rem;
}

.films-showcase h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.films-showcase .section-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.films-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.film-card {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.film-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,102,204,0.3);
  border-color: var(--electric-blue);
}

.film-player {
  position: relative;
  background: #000;
  min-height: 225px;
}

.film-player video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
}

.loading-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
  z-index: 2;
}

.film-player.video-loaded .loading-placeholder {
  display: none;
}

.film-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  border: 1px solid var(--sunset-orange);
  z-index: 3;
}

.film-meta {
  padding: 2rem;
}

.film-meta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
  position: relative;
}

.film-meta h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--electric-blue);
  transition: width 0.3s ease;
}

.film-card:hover .film-meta h3::after {
  width: 80px;
}

.film-director {
  color: var(--electric-blue);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.film-director span {
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.film-awards {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.award-icon {
  color: var(--sunset-orange);
  font-size: 1.2rem;
}

.film-description {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 0;
}

.section-cta {
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--sunset-orange);
  color: white;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #e65c00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .films-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .films-showcase {
    padding: 4rem 0;
  }
  
  .films-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  
  .film-meta {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .film-badge {
    top: 1rem;
    right: 1rem;
    font-size: 0.8rem;
  }
  
  .film-meta h3 {
    font-size: 1.3rem;
  }
}

.showcase-cta {
  text-align: center; /* Centers text and inline elements */
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers child elements horizontally */
  justify-content: center; /* Centers child elements vertically (if needed) */
}

/* Cinematic FAQ Styles */
.cinematic-faq {
  background: linear-gradient(to bottom, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cinematic-faq .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cinematic-faq .section-tagline {
  color: var(--sunset-orange);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.cinematic-faq h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}

.text-highlight {
  background: linear-gradient(90deg, var(--sunset-orange), var(--electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cinematic-faq .section-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Film Reel Animation */
.film-reels {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.reel {
  position: absolute;
  opacity: 0.2;
}

.reel-left {
  top: 20%;
  left: 5%;
  animation: spin 20s linear infinite;
}

.reel-right {
  bottom: 15%;
  right: 5%;
  animation: spin-reverse 25s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Film Reel Container */
.film-reel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.film-reel-container::before,
.film-reel-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(90deg, rgba(26,26,26,1) 0%, rgba(26,26,26,0) 100%);
  z-index: 2;
}

.film-reel-container::before {
  left: 0;
}

.film-reel-container::after {
  right: 0;
  transform: rotate(180deg);
}

.film-reel-track {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2rem 0;
}

.film-reel-track::-webkit-scrollbar {
  display: none;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.faq-item {
  min-width: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--electric-blue);
  transform: translateY(-5px);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.question-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sunset-orange);
  min-width: 30px;
}

.question-text {
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.icon-bar {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--sunset-orange);
  transition: all 0.3s ease;
}

.icon-bar:first-child {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .icon-bar:first-child {
  transform: rotate(180deg);
}

.faq-question:hover .question-text {
  color: var(--sunset-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.answer-content {
  padding: 0 1.5rem 1.5rem;
}

.faq-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.faq-list {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.faq-list li {
  position: relative;
  margin-bottom: 0.5rem;
}

.faq-list li::before {
  content: "→";
  color: var(--sunset-orange);
  position: absolute;
  left: -1.5rem;
}

/* CTA Section */
.faq-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(0,102,204,0.1);
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0,102,204,0.3);
}

.faq-cta svg {
  margin-bottom: 1rem;
}

.faq-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.faq-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--sunset-orange);
  color: white;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #e65c00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .faq-accordion {
    flex-direction: column;
    width: 100%;
  }
  
  .faq-item {
    min-width: 100%;
  }
  
  .film-reel-container::before,
  .film-reel-container::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .cinematic-faq {
    padding: 4rem 0;
  }
  
  .faq-cta {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .faq-question {
    padding: 1.25rem;
  }
  
  .answer-content {
    padding: 0 1.25rem 1.25rem;
  }
  
  .faq-cta {
    padding: 1.5rem;
  }
}

/* ===== Cinematic CTA Section ===== */
.cinematic-cta {
  --sunset-orange: #ff6600;
  --electric-blue: #0066cc;
  
  position: relative;
  min-height: 100vh;
  max-height: 1200px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  isolation: isolate;
  padding: 2rem 0;
}

/* Video Container */
.cta-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  aspect-ratio: 16/9;
  will-change: transform;
}

/* Video Overlay */
.cta-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,102,204,0.3) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Content Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 0.8s ease-out both;
}

/* Typography */
.cta-tagline {
  display: inline-block;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  letter-spacing: 3px;
  color: var(--sunset-orange);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.cta-heading {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(90deg, var(--sunset-orange), var(--electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.cta-subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  line-height: 1.5;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  will-change: transform;
}

.btn-primary {
  background: var(--sunset-orange);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #e65c00;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Badges */
.cta-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  transition: all 0.3s ease;
}

.badge-item:hover {
  background: rgba(255,102,0,0.2);
  transform: translateY(-3px);
}

/* Video Fallback */
.video-fallback-text {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 4;
  color: white;
  padding: 0 1rem;
}

.video-fallback-text a {
  color: var(--sunset-orange);
  text-decoration: underline;
}

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

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .cinematic-cta {
    min-height: 90vh;
    padding: 3rem 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .cta-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .cinematic-cta {
    min-height: 85vh;
  }
  
  .cta-content {
    padding: 1rem;
  }
  
  .btn {
    padding: 0.9rem 1.5rem;
  }
  
  .badge-item {
    padding: 0.6rem 1.2rem;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .cta-content {
    animation: none;
  }
  
  .btn:hover,
  .btn:focus,
  .badge-item:hover {
    transform: none;
  }
}
/* Blog Promotion Banner - Cinematic Animation */
.blog-promo {
  background: linear-gradient(135deg, 
    var(--electric-blue) 0%, 
    var(--cinematic-black) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.blog-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.1) 0%,
    transparent 70%
  );
  animation: pulse 15s infinite alternate;
  z-index: 1;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.1; }
}

.blog-promo .container {
  position: relative;
  z-index: 2;
}

.blog-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-promo-content {
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-promo .section-tagline {
  color: var(--sunset-orange);
  font-size: 0.9rem;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 1rem;
  animation-delay: 0.2s;
}

.blog-promo h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation-delay: 0.4s;
}

.text-highlight {
  color: var(--silver-grey);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--sunset-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-promo:hover .text-highlight::after {
  transform: scaleX(1);
  transform-origin: left;
}

.blog-promo-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
  animation-delay: 0.6s;
}

.blog-promo-text a {
  color: var(--silver-grey);
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  transition: all 0.3s ease;
}

.blog-promo-text a:hover {
  color: white;
  border-bottom-style: solid;
}

.blog-promo-cta {
  display: flex;
  gap: 1rem;
  animation-delay: 0.8s;
}

.btn-light {
  background-color: white;
  color: var(--electric-blue);
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: rgba(255,255,255,0.9);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-promo-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
  50% { transform: perspective(1000px) rotateY(-5deg) translateY(-15px); }
}

.blog-promo-image:hover {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.blog-promo-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

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

.blog-promo-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  border: 1px solid var(--sunset-orange);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  animation: badgeAppear 0.6s ease-out 1s forwards;
}

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

.blog-promo-badge svg {
  width: 16px;
  height: 16px;
  color: var(--sunset-orange);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .blog-promo-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-promo-content {
    max-width: 100%;
    text-align: center;
  }
  
  .blog-promo-cta {
    justify-content: center;
  }
  
  .blog-promo-image {
    max-width: 600px;
    margin: 0 auto;
    order: -1;
  }
  
  .text-highlight::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .blog-promo {
    padding: 3rem 0;
  }
  
  .blog-promo-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .blog-promo-image {
    transform: none;
    animation: floatMobile 6s ease-in-out infinite;
  }
  
  @keyframes floatMobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
}

@media (max-width: 576px) {
  .blog-promo h2 {
    font-size: 1.8rem;
  }
  
  .blog-promo-text {
    font-size: 1rem;
  }
  
  .blog-promo-badge {
    top: 1rem;
    right: 1rem;
    font-size: 0.8rem;
  }
}

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

.contact-section {
  font-family: 'Open Sans', sans-serif;
  padding: 4rem 0;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  box-shadow: 0 0 0 2px #FF6600;
}

.catalog-link {
  color: #C0C0C0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Floating Actions Container */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* WhatsApp Button Styling */
.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp brand green */
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    white-space: nowrap;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Scroll to Top Button - Sunset Orange Version */
.scroll-to-top {
    width: 50px;
    height: 50px;
    background-color: #FF6600; /* Brand Sunset Orange */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.25); /* Orange-tinted shadow */
    transition: all 0.3s ease;
    z-index: 9998;
}

.scroll-to-top:hover {
    background-color: #E05B00; /* 10% darker orange */
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.3);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.current-section-tooltip {
    position: absolute;
    right: 65px;
    white-space: nowrap;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.scroll-to-top:hover .current-section-tooltip {
    opacity: 1;
}

/* Optional: Pulsing effect on page load */
@keyframes orange-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(255, 102, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

.scroll-to-top.pulse-once {
    animation: orange-pulse 1.5s 1; /* Single pulse when page loads */
}
/* Pulse Animation */
.pulse-on-hover {
    animation: none; /* Disable if conflicting with hover */
}

.floating-whatsapp a.pulse-on-hover:hover {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 80px; /* Positions above WhatsApp button */
    }
}

