/* Navbar Styles */

.navbar {
    transition: all 0.4s;
}

.navbar .nav-link {
    color: #fff;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: red;
    text-decoration: none;
}

.navbar .navbar-brand {
    color: #fff;
}


/* Change navbar styling on scroll */
.navbar.active {
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.active .nav-link {
    color: #555;
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: #555;
    text-decoration: none;
}

.navbar.active .navbar-brand {
    color: #555;
}


/* Change navbar styling on small viewports */
@media (max-width: 991.98px) {
    .navbar {
        background: #fff;
    }

    .navbar .navbar-brand, .navbar .nav-link {
        color: #555;
    }
}
/* Active page link */
.navbar .nav-link {
    position: relative;
    padding: 8px 18px;
    display: inline-block;
}

/* Active link */
.navbar .nav-link.active {
    color: red;
}

/* Base invisible border */
.navbar .nav-link.active::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid red;
    border-radius: 6px;
    clip-path: inset(0 100% 100% 0);
    animation: borderRun 2s linear infinite;
}

@keyframes borderRun {
    0%   { clip-path: inset(0 100% 100% 0); }   
    25%  { clip-path: inset(0 0 100% 0); }      
    50%  { clip-path: inset(0 0 0 0); }         
    75%  { clip-path: inset(100% 0 0 0); }      
    100% { clip-path: inset(0 100% 100% 0); }   
}

/*  Video Header Styles  */


/* ONLY for hero */
.video-header {
  position: relative;
  height: 90vh;
  overflow: hidden;
}


/* Video as background */
.video-header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Content above video */
.video-header .container {
  position: relative;
  z-index: 2;
}

/* Dark overlay */
.video-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

header .row {
  padding-top: 200px; 
}

@media (max-width: 768px) {

  .video-header {
    height: 80vh;          
  }

  header .row {
    padding-top: 100px;     
  }

  .video-header video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;     
  }

}





/*  Admission Popup Styles */

/* Overlay */
#admissionOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Active state */
#admissionOverlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Popup box */
.admission-popup {
  background: linear-gradient(145deg, #0b1d3a, #020b18);
  color: #fff;
  width: 90%;
  max-width: 480px;
  padding: 40px 35px;
  border-radius: 20px;
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

/* Animate popup */
#admissionOverlay.active .admission-popup {
  transform: scale(1) translateY(0);
}

/* Close button */
.popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.8;
}

.popup-close:hover {
  opacity: 1;
}

/* Badge */
.popup-badge {
  display: inline-block;
  background: #0d6efd;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

/* Title */
.admission-popup h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

/* Subtitle */
.popup-subtitle {
  font-size: 15px;
  color: #cfd8e3;
  margin-bottom: 30px;
}

/* Actions */
.popup-actions {
  display: flex;
  gap: 15px;
}

.btn-primary,
.btn-outline {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary button */
.btn-primary {
  background: #0d6efd;
  color: #fff;
}

.btn-primary:hover {
  background: #0b5ed7;
}

/* Outline button */
.btn-outline {
  border: 1px solid #ffffff50;
  color: #fff;
}

.btn-outline:hover {
  background: #ffffff10;
}

/* Mobile tweak */
@media (max-width: 576px) {
  .admission-popup {
    padding: 30px 25px;
  }

  .admission-popup h2 {
    font-size: 22px;
  }
}





/* Why Us Styles  */
.why-us {
  padding: 80px 0;
  background: #f8f9fa;
}

.why-us h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.why-us p {
  color: #555;
}

.why-us h4 {
  margin-top: 20px;
  font-weight: 600;
}









/* Experience Section Styles */
.experience-section {
  padding: 80px 0;
  background: #ffffff;
  perspective: 1200px;
}

.experience-row {
  gap: 40px;
}

.exp-box {
  min-width: 180px;
  opacity: 0;
  transform: translateY(60px) rotateX(20deg) scale(0.95);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.exp-box.show {
  opacity: 1;
  transform: translateY(0) rotateX(0deg) scale(1);
}

.exp-box h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #c62828;
  position: relative;
}

/* underline sweep */
.exp-box h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: #c62828;
  transform: translateX(-50%);
  transition: width 0.6s ease;
}

.exp-box.show h2::after {
  width: 60%;
}

.exp-box p {
  margin-top: 15px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #333;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.exp-icon {
  font-size: 100px;
  color: #d32f2f;
  margin-bottom: 10px;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .exp-box h2 {
    font-size: 2rem;
  }
}



/* Courses Section Styles  */

.courses-section {
  padding: 120px 6%;
}

/* Heading */
.courses-heading {
  text-align: center;
  margin-bottom: 70px;
}

.courses-heading h2 {
  font-size: 42px;
  font-weight: 700;
}

.courses-heading p {
  max-width: 650px;
  margin: 14px auto 0;
  opacity: 0.7;
}

/* Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Card */
.course-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-10px);
}

.course-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.course-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.course-content p {
  flex-grow: 1;
  font-size: 15px;
  opacity: 0.75;
}

/* Button */
.read-more {
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  background: #000;
  color: #fff;
}


/* Cadet Life Section Styles */


.cadet-life-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-title {
  font-weight: 800;
  letter-spacing: 1px;
}

.section-subtitle {
  color: #666;
  margin-top: 10px;
}

.cadet-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.routine-list {
  list-style: none;
  padding: 0;
}

.routine-list li {
  padding: 12px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid #ddd;
}

.routine-list span {
  font-weight: 700;
  color: #c62828;
}

/* Animation base */
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile */
@media (max-width: 768px) {
  .cadet-life-section {
    padding: 70px 20px;
  }

  .routine-list li {
    font-size: 0.95rem;
  }
}




  /* Cadet Section Styles */



.selection-section {
  padding: 120px 0;
  background: #111;
  color: #fff;
}

.section-title {
  font-weight: 900;
  letter-spacing: 2px;
}

.section-sub {
  color: #aaa;
  margin-top: 10px;
  font-style: italic;
}

/* Card */
.cadet-card {
  position: relative;
  background: #1c1c1c;
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transform: translateY(60px);
  opacity: 0;
  transition: all 0.8s ease;
  overflow: hidden;
}

.cadet-card.active {
  transform: translateY(0);
  opacity: 1;
}

.cadet-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #c62828;
  margin-bottom: 15px;
}

.cadet-card h4 {
  font-weight: 800;
  margin: 10px 0 5px;
}

.cadet-card span {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #bbb;
}

/* Badge */
.badge {
  position: absolute;
  top: 20px;
  right: -40px;
  transform: rotate(45deg);
  background: #c62828;
  padding: 8px 50px;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

/* Seal glow */
.seal {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 rgba(198,40,40,0.8);
  transition: box-shadow 0.6s ease;
}

.cadet-card:hover .seal {
  box-shadow: inset 0 0 40px rgba(198,40,40,0.6);
}

/* Animation helpers */
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Mobile */
@media (max-width: 768px) {
  .selection-section {
    padding: 80px 20px;
  }
}





/* Call to Action Styles */




.call-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: #c62828;
  color: #fff;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
}

.call-btn:hover {
  color: #fff;
  text-decoration: none;
}

/* Ring animation */
.call-btn .ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgba(198, 40, 40, 0.5);
  animation: pulse 1.8s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}




/* REVEAL ANIMATION STYLES */






.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}





.news-section {
  background: #111;
 
}

.news-box {
  display: flex;
  align-items: center;
  background: #1c1c1c;
  border-left: 6px solid #c62828;
  padding: 15px;
  overflow: hidden;
}

.news-label {
  color: #c62828;
  font-weight: 800;
  letter-spacing: 2px;
  margin-right: 20px;
  white-space: nowrap;
}

.news-marquee {
  overflow: hidden;
  flex: 1;
}

.news-track {
  display: inline-flex;
  gap: 60px;
  animation: scrollNews 30s linear infinite;
}

.news-track span {
  color: #fff;
  white-space: nowrap;
  font-weight: 600;
}

@keyframes scrollNews {
  from {
    transform: translateX(80%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .news-track {
    animation-duration: 40s;
  }
}






/*  Defence Footer Styles  */

   .command-footer {
  background: #070b10;
  color: #fff;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease;
}

/* Tactical grid */
.command-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.command-footer.show {
  opacity: 1;
  transform: translateY(0);
}

/* Enlist strip */
.enlist-strip {
  background: linear-gradient(90deg, #b71c1c, #e53935);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.enlist-btn {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enlist-btn:hover {
  background: #fff;
  color: #000;
}

/* Core layout */
.footer-core {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  position: relative;
}

.footer-unit {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.command-footer.show .footer-unit {
  opacity: 1;
  transform: translateY(0);
}

.footer-unit:nth-child(2) { transition-delay: 0.2s; }
.footer-unit:nth-child(3) { transition-delay: 0.4s; }
.footer-unit:nth-child(4) { transition-delay: 0.6s; }

.footer-unit h4,
.footer-unit h2 {
  color: #e53935;
  margin-bottom: 15px;
}

.footer-unit ul {
  list-style: none;
  padding: 0;
}

.footer-unit ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-unit.intro p {
  font-style: italic;
  opacity: 0.8;
}

/* Call button */
.signal-call {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  border: 2px solid #e53935;
  color: #e53935;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.signal-call::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #e53935;
  animation: signal 2s infinite;
}

@keyframes signal {
  0% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.4); }
}

.footer-end {
  text-align: center;
  padding: 20px;
  background: #04070b;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-core {
    text-align: center;
  }
}



/* Call Button Animation Styles */




.footer-wave {
  height: 3px;
  background: linear-gradient(90deg, transparent, #e53935, transparent);
  animation: pulse 3s infinite linear;
}

@keyframes pulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}



.call-btn {
 
  padding: 10px 18px;
  border: none;
  background: #e53935;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(229,57,53,0.6);
} 






/*  Social Icon Styles */  

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 2px solid #e53935;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e53935;
  font-size: 18px;
  transition: all 0.35s ease;
  position: relative;
}

 .footer-social a:hover {
  background: #e53935;
  color: #000;
  transform: translateY(-4px) scale(1.05);
} 

 .footer-social a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #e53935;
  opacity: 0;
  transform: scale(1);
}

.footer-social a:hover::after {
  animation: socialPulse 1.2s infinite;
}

@keyframes socialPulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}


 @media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}  






 /*  About Section Styles */  


.about-section {
  padding: 100px 0;
  background: #0f0f0f;
  color: #fff;
}

.about-badge {
  display: inline-block;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e53935;
  margin-bottom: 10px;
}

.about-text h2 {
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text p {
  opacity: 0.85;
  margin-bottom: 15px;
}

.about-points span {
  display: block;
  font-weight: 600;
  margin-top: 8px;
}

/* Visual block */
.about-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.9s ease;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-overlay-text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.7);
  padding: 15px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
}

/* Animation trigger */
.about-section.show .about-visual {
  transform: translateY(0);
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .about-section {
    text-align: center;
  }
  .about-points span {
    justify-content: center;
  }
}


  /* Course Overview Section */
   
 .course-overview-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #0b0b0b, #141414);
  color: #fff;
  overflow: hidden;
}

.overview-head {
  text-align: center;
  margin-bottom: 60px;
}

.overview-head h2 {
  font-weight: 800;
  letter-spacing: 1px;
}

.overview-head .underline {
  display: block;
  width: 80px;
  height: 3px;
  background: red;
  margin: 15px auto 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.overview-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transform: translateY(40px) scale(0.95);
  opacity: 1;
  transition: all 0.7s ease;
}


.overview-card .icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.overview-card p {
  font-size: 16px;
  line-height: 1.7;
}

/* Hover = premium feel */
 .overview-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(255,255,255,0.08);
}  


  /* Course Highlights Section */
  

.course-highlights {
  padding: 100px 0;
  background: #ffffff;
}

.highlights-head {
  text-align: center;
  margin-bottom: 60px;
}

.highlights-head h2 {
  font-size: 36px;
  font-weight: 700;
}

.underline {
  display: inline-block;
  width: 70px;
  height: 4px;
  background: #000;
  margin-top: 12px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: #f8f9fa;
  border-radius: 18px;
  padding: 35px 28px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.highlight-card i {
  font-size: 40px;
  margin-bottom: 18px;
  color: #000;
}

.highlight-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Mobile */
 @media (max-width: 768px) {
  .highlights-head h2 {
    font-size: 28px;
  }
}  

  /* Training Methodology Section */  

.training-methodology {
  padding: 110px 0;
  background: #f7f7f7;
}

.method-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.method-head h2 {
  font-size: 36px;
  font-weight: 700;
}

.method-sub {
  margin-top: 15px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.method-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.method-step {
  display: flex;
  gap: 25px;
  padding: 30px 0;
  border-left: 3px solid #ddd;
  position: relative;
}

.method-step:last-child {
  border-left: none;
}

.step-no {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  min-width: 60px;
  text-align: center;
}

.step-content {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: transform 0.4s ease;
}

.method-step:hover .step-content {
  transform: translateX(8px);
}

.step-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Mobile */
 @media (max-width: 768px) {
  .method-step {
    flex-direction: column;
    border-left: none;
  }

  .step-no {
    text-align: left;
  }

  .method-head h2 {
    font-size: 28px;
  }
} 



  /* Eligibility Section Styles */

.eligibility-section {
  padding: 90px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 15px;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.eligibility-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eligibility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.eligibility-card i {
  font-size: 34px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.eligibility-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.eligibility-card p {
  font-size: 14px;
  color: #495057;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .eligibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .eligibility-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }
}





    /* Learning Path Section Styles */ 

.learning-path-modern {
  padding: 100px 0;
  background: radial-gradient(circle at top, #f8f9fa, #ffffff);
}

/* Heading */
.lp-head h2 {
  font-weight: 700;
  font-size: 32px;
}

.lp-head p {
  color: #6c757d;
  margin-top: 8px;
}

/* Grid */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

/* Card */
.lp-card {
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 36px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* ✨ SOFT AURA GLOW */
.lp-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  background: radial-gradient(
    circle,
    rgba(13, 110, 253, 0.6),
    rgba(13, 110, 253, 0.2),
    transparent 70%
  );
  z-index: -1;
  filter: blur(30px);
  opacity: 0;
  animation: travelPulse 5s ease-in-out infinite;
}
.lp-card:nth-child(1)::before { animation-delay: 0s; }
.lp-card:nth-child(2)::before { animation-delay: 0.6s; }
.lp-card:nth-child(3)::before { animation-delay: 1.2s; }
.lp-card:nth-child(4)::before { animation-delay: 1.8s; }
.lp-card:nth-child(5)::before { animation-delay: 2.4s; }
.lp-card:nth-child(6)::before { animation-delay: 3s; }
.lp-card:nth-child(7)::before { animation-delay: 3.6s; }
.lp-card:nth-child(8)::before { animation-delay: 4.2s; }
@keyframes travelPulse {
  0% {
    opacity: 0;
    filter: blur(22px);
  }
  20% {
    opacity: 1;
    filter: blur(36px);
  }
  40% {
    opacity: 0;
    filter: blur(22px);
  }
  100% {
    opacity: 0;
  }
}


/* Hover enhancement */
.lp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 65px rgba(13, 110, 253, 0.25);
}

/* Step badge */
.lp-step {
  position: absolute;
  top: -18px;
  right: 22px;
  background: #0d6efd;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
}

/* Icon */
.lp-icon {
  font-size: 36px;
  color: #0d6efd;
  margin-bottom: 18px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.lp-card:hover .lp-icon {
  transform: scale(1.15) rotate(-4deg);
}

/* Text */
.lp-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.lp-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #495057;
}

/* ✨ Pulse animation */
@keyframes softGlowPulse {
  0% {
    opacity: 0.45;
    filter: blur(22px);
  }
  50% {
    opacity: 1;
    filter: blur(38px);
  }
  100% {
    opacity: 0.45;
    filter: blur(22px);
  }
}

/* Mobile polish */
@media (max-width: 576px) {
  .learning-path-modern {
    padding: 70px 0;
  }

  .lp-head h2 {
    font-size: 26px;
  }
}





    /*  Gallery Section Styles  */ 



.gallery-modern-pro {
  padding: 100px 0;
  background: #fff;
}

.gallery-head h2 {
  font-size: 34px;
  font-weight: 700;
}

.gallery-head p {
  color: #6c757d;
  margin-top: 6px;
}

/* Layout */
.gallery-layout {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
}

/* Big image */
.gallery-feature {
  overflow: hidden;
  border-radius: 14px;
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Right stack */
.gallery-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 14px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover – subtle, not flashy */
.gallery-feature:hover img,
.gallery-item:hover img {
  transform: scale(1.06);
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-stack {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .gallery-stack {
    grid-template-columns: 1fr;
  }
}


/*   video gallery  */

.gallery-videos {
  padding: 130px 6%;
  background: linear-gradient(180deg, #070707, #0b1220);
  margin-bottom: -100px;
  margin-block-end: 50px;
}

.video-heading {
  text-align: center;
  margin-bottom: 100px;
  margin-top: -100px;
}

.video-heading h2 {
  font-size: 38px;
  color: #ffffff;
}

.video-heading p {
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 14px auto 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
}

.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}


.video-card:hover {
  transform: translateY(-10px);
}

.video-card video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #000;
}

.video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  letter-spacing: 0.3px;
  z-index: 2;
}
.video-badge {
  background: linear-gradient(
    135deg,
    rgba(110,193,255,0.9),
    rgba(13,110,253,0.85)
  );
}



/* infrastructure gallery Section */

.gallery-infra {
  padding: 120px 6%;
  background: radial-gradient(1200px 600px at 10% 10%, #1a2a3a, #070707);
  position: relative;
}

.infra-heading {
  text-align: center;
  margin-bottom: 70px;
    margin-top: -70px;
}

.infra-heading h2 {
  font-size: 38px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.infra-heading p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 14px auto 0;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.infra-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.infra-card:hover {
  transform: translateY(-10px);
}

.infra-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.6s ease;
}

.infra-card:hover img {
  transform: scale(1.08);
}

.infra-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 26px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0)
  );
}

.infra-overlay h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 6px;
}

.infra-overlay span {
  font-size: 14px;
  color: #8fd3f4;
}
.gallery-infra {
  position: relative;
  padding: 120px 6%;
  background: radial-gradient(1200px 600px at 10% 10%, #1a2a3a, #070707);
}

/* White space strips */
.gallery-infra::before,
.gallery-infra::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  z-index: 2;
}

.gallery-infra::before {
  top: 0;
}

.gallery-infra::after {
  bottom: 0;
}
.gallery-infra::before {
  background: linear-gradient(to bottom, #fff, transparent);
}

.gallery-infra::after {
  background: linear-gradient(to top, #fff, transparent);
}






 /*  events gallery Section */

.gallery-events {
  padding: 120px 6%;
  background: radial-gradient(900px 500px at 15% 20%, rgba(13,110,253,0.25), #070707);
}

.events-heading {
  text-align: center;
  margin-bottom: 70px;
}

.events-heading h2 {
  font-size: 38px;
  color: #ffffff;
}

.events-heading p {
  color: rgba(255,255,255,0.65);
  max-width: 650px;
  margin: 14px auto 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.event-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,0.45);
  transition: transform 0.4s ease;
}

.event-card:hover {
  transform: translateY(-12px);
}

.event-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover img {
  transform: scale(1.1);
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.15)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: red;
}

.event-overlay h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 6px;
}

.event-overlay span {
  font-size: 14px;
  color: #6ec1ff;
}
.gallery-events {
  position: relative;
  padding: 120px 6%;
  background: radial-gradient(900px 500px at 15% 20%, rgba(13,110,253,0.25), #070707);
}

/* bottom white spacing */
.gallery-events::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;   /* spacing size */
  background: #ffffff;
  z-index: 2;
}
.gallery-events::after {
  background: linear-gradient(to top, #ffffff, transparent);
}

/*  What Our Students Say (Testimonials) */

        .testimonial-paper {
  padding: 130px 6%;
  background: #f4f1ec;
}

.paper-heading {
  text-align: center;
  margin-bottom: 80px;
}

.paper-heading h2 {
  font-size: 38px;
  color: #222;
}

.paper-heading p {
  color: #555;
  margin-top: 10px;
}

.paper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.paper-card {
  background: #fffdf8;
  padding: 26px 22px 30px;
  border-radius: 6px;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.15),
    inset 0 0 0 1px rgba(0,0,0,0.04);
  position: relative;
  transform: rotate(-1deg);
}

.paper-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 14px;
}

.paper-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 18px;
}

.paper-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #000;
}

.paper-card span {
  font-size: 13px;
  color: #777;
}

/* Random paper tilt */
.rotate-left {
  transform: rotate(-2.5deg);
}

.rotate-right {
  transform: rotate(2deg);
}
.paper-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paper-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.2);
}

.testimonial-parents {
  padding: 120px 6%;
  background: linear-gradient(180deg, #0c0f14, #070707);
}

.parent-heading {
  text-align: center;
  margin-bottom: 70px;
}

.parent-heading h2 {
  font-size: 36px;
  color: #ffffff;
}

.parent-heading p {
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

.parent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.parent-card {
  background: rgba(255,255,255,0.05);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  position: relative;
  transition: transform 0.3s ease;
}

.parent-card:hover {
  transform: translateY(-8px);
}

.parent-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e4e4e4;
  margin-bottom: 24px;
}

.parent-info h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 4px;
}

.parent-info span {
  font-size: 13px;
  color: #9bb0c8;
}
.parent-card::before {
  content: "“";
  font-size: 80px;
  position: absolute;
  top: 10px;
  right: 20px;
  color: rgba(255,255,255,0.05);
}
/* CONFIDENCE SECTION */

.confidence-section {
  padding: 120px 6%;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.confidence-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.confidence-subtitle {
  color: rgba(255,255,255,0.7);
  margin-bottom: 60px;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.confidence-card {
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.confidence-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 260px;   /* Fixed height */
  overflow: hidden;
  background: #000;
  border-radius: 12px;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* This is the magic */
}


.video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #22c55e;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
  color: #fff;
}

.confidence-card h3 {
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
}
/*  PAPER CUTOUT SECTION  */

.paper-cutout-section {
  padding: 120px 6%;
  background: #f8fafc;
  text-align: center;
  margin-bottom: -40px;
  margin-top: -60px;
}

.cutout-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.cutout-subtitle {
  color: #555;
  margin-bottom: 60px;
}

.cutout-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.cutout-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.cutout-card img {
  width: 100%;
  border-radius: 10px;
}

.cutout-caption {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
  font-style: italic;
}
.cutout-card {
  transform: rotate(-4deg);
}


 /*   NOTIFICATIONS SECTION   */


        .notification-item {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  padding: 25px;
  border-left: 4px solid #0d6efd;
  border-bottom: 1px solid #dee2e6;
  gap: 25px;
}

/* LEFT IMAGE 200px */
.notif-left {
  width: 200px;
  flex-shrink: 0;
}

.notif-left img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

/* MIDDLE CONTENT */
.notif-middle {
  flex: 1;
  min-width: 0;
}

/* Title */
.notif-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Badge */
.badge-new {
  background: #dc3545;
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 10px;
}

/* Meta */
.notif-meta {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 10px;
}

/* Details Grid */
.notif-details {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 6px 25px;
  font-size: 14px;
  margin-bottom: 8px;
  color: #495057;
}

/* RIGHT BUTTON */
.notif-right {
  flex-shrink: 0;
  align-self: center;
}

.apply-btn {
  padding: 10px 28px;
  background: #0d6efd;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #084298;
}

@media (max-width: 768px) {

  .notification-item {
    flex-direction: column;
    padding: 18px;
    gap: 15px;
  }

  /* Image full width on mobile */
  .notif-left {
    width: 100%;
  }

  .notif-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* Content full width */
  .notif-middle {
    width: 100%;
  }

  /* Title slightly smaller */
  .notif-title {
    font-size: 18px;
  }

  /* Details become single column */
  .notif-details {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  /* Button full width */
  .notif-right {
    width: 100%;
  }

  .apply-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}


.rating {
  color: #f4b400; /* Elegant gold */
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

 /*  Study Hero Section   */

.study-hero {
  padding: 100px 5% 60px;
  text-align: center;
  background: #f8f9fb;
}

.study-hero h1 {
  color: red;
  font-size: 100px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: -60px;
  line-height: 1.2;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .study-hero {
    padding: 70px 6% 40px;
  }

  .study-hero h1 {
    font-size: 50px;
    line-height: 1.3;
  }

  .study-hero p {
    font-size: 14px;
  }

}


/*  why this course is unique section  */
   
.material-unique {
  padding: 100px 5%;
  background: #f8f9fb;
  text-align: center;
}

.unique-container {
  max-width: 1100px;
  margin: auto;
}

.unique-heading {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.unique-sub {
  color: #666;
  margin-bottom: 60px;
  font-size: 15px;
}

.unique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.unique-card {
  padding: 35px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.unique-card:hover {
  transform: translateY(-6px);
}

.unique-card h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.unique-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}


  /* Downloadable Resources Section  */
   

.library-container {
  max-width: 1000px;
  margin: auto;
}

.library-heading {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
.library-heading {
  text-align: center;
  font-size: 25px;
  margin-bottom: 50px;
}
}

.pdf-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 25px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #f8f9fb;
  transition: 0.3s ease;
}

.pdf-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.pdf-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pdf-icon {
  font-size: 28px;
}

.pdf-details h4 {
  margin: 0;
  font-size: 16px;
}

.pdf-details span {
  font-size: 13px;
  color: #666;
}

.download-btn {
  padding: 8px 18px;
  background: #000;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.download-btn:hover {
  background: #333;
}

  /* Teaching Process Section */


.teaching-process {
  padding: 100px 5%;
  background: #ffffff;
  text-align: center;
}

.process-container {
  max-width: 1200px;
  margin: auto;
}

.process-heading {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-sub {
  color: #666;
  margin-bottom: 70px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

/* Horizontal Line */
.process-steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #e5e5e5;
  z-index: 0;
}

.process-step {
  width: 18%;
  min-width: 180px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.process-step h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.process-step p {
  font-size: 13px;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    width: 100%;
  }
}

  /* FAQ Section Styles  */



.faq-section {
  padding: 100px 5%;
  background: #f8f9fb;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-heading {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
}

.faq-sub {
  text-align: center;
  color: #666;
  margin-bottom: 60px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 20px;
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 14px;
  color: #555;
}
.more-faqs {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease;
}

.faq-readmore {
  text-align: center;
  margin-top: 30px;
}

.faq-readmore button {
  background: #000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.faq-readmore button:hover {
  background: #333;
}

  /* Download Guidelines Section Styles  */

.download-guidelines {
  padding: 90px 5%;
  background: #f8f9fb;
  text-align: center;
}

.guidelines-container {
  max-width: 900px;
  margin: auto;
}

.guidelines-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.guidelines-sub {
  color: #666;
  margin-bottom: 50px;
  font-size: 15px;
}

.guidelines-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}

.guideline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  margin-bottom: 25px;
}

.guideline-item span {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  min-width: 30px;
}

.guideline-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .guidelines-box {
    padding: 25px;
  }

  .guideline-item {
    flex-direction: column;
    gap: 8px;
  }
}


  /* News Cutouts Section Styles */


.news-cutouts {
  padding: 120px 5%;
  background: #f8f9fb;
  text-align: center;
  overflow: hidden;
}

.news-container {
  max-width: 1200px;
  margin: auto;
}

.news-heading {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.news-sub {
  color: #666;
  margin-bottom: 60px;
}

/* Grid Layout */
.news-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Newspaper Cut Style */
.news-item {
  width: 260px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transform: rotate(-3deg);
  transition: 0.4s ease;
}

.news-item:nth-child(2) {
  transform: rotate(4deg);
}

.news-item:nth-child(3) {
  transform: rotate(-5deg);
}

.news-item:nth-child(4) {
  transform: rotate(3deg);
}

.news-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%);
}

.news-item:hover {
  transform: rotate(0deg) scale(1.05);
}
