/* ================= GLOBAL ================= */

html{
scroll-behavior:smooth;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
overflow-x:hidden;
}

/* ================= HEADER ================= */

header{
position:fixed;
top:0;
width:100%;
background:white;
box-shadow:0 4px 20px rgba(0,0,0,0.08);
z-index:999;
}

/* ================= NAVBAR ================= */

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
}

.logo img{
height:55px;
}

/* MENU */

.nav-menu{
list-style:none;
display:flex;
align-items:center;
gap:25px;
}

.nav-menu li a{
text-decoration:none;
color:#184a96;
font-weight:500;
transition:0.2s;
}

.nav-menu li a:hover{
color:#ff6b6b;
}

/* BUTTON */

.enquire-btn{
background:#184a96;
color:white !important;
padding:8px 18px;
border-radius:30px;
}

/* TOGGLE */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#184a96;
}

/* ================= MOBILE NAVBAR ================= */

@media (max-width:768px){

.menu-toggle{
display:block;
z-index:1001;
}

/* MOBILE MENU */

.nav-menu{

position:fixed;
top:0;
right:-100%;

width:80%;
max-width:280px;
height:100vh;

background:white;

flex-direction:column;
align-items:flex-start;

padding:90px 30px;
gap:20px;

transition:0.4s ease;

box-shadow:-5px 0 20px rgba(0,0,0,0.1);

}

.nav-menu.active{
right:0;
}

.nav-menu li{
width:100%;
}

.nav-menu li a{
display:block;
width:100%;
padding:10px 0;
border-bottom:1px solid #eee;
}

.enquire-btn{
margin-top:10px;
border:none;
}

}

/* ================= HERO ================= */

.hero{
    padding:140px 20px 80px;
    background:#f4d000;
}

.hero-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:50px;
    flex-wrap:wrap;
}

.hero-left{
    flex:1 1 600px;
}

/* NEP Badge */

.nep-badge{
    display:inline-block;
    background:#ff0000;
    color:white;
    padding:8px 18px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

/* Headline */

.hero-left h1{
    font-family:'Poppins',sans-serif;
    font-size:57px;
    color:#184a96;
    margin-bottom:30px;
    line-height:1.2;
    font-weight: 900;
}

.highlight-location{
    color:#ff0000;      /* Option 1: Red */
//    background:#184a96; /* Blue highlight */
    padding:4px 10px;
    border-radius:8px;
}

/* Features Grid */

.features-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
    margin-bottom:30px;
}

.feature-card{
    background:white;
    padding:20px;
    border-radius:16px;
    font-weight:600;
    color:#184a96;
    box-shadow:0 8px 18px rgba(0,0,0,0.08);
    font-size:14px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:60px;   /* makes all boxes equal height */
}

.feature-card span{
    font-weight:400;
    font-size:13px;
    margin-top:6px;
}

/* Limited Seats */

.highlight{
    font-weight:700;
    color:#184a96;
    font-size:16px;
}

/* FORM */

.form-box{
    flex:1 1 380px;
    background:white;
    padding:35px;
    border-radius:25px;
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.form-box h3{
    text-align:center;
    margin-bottom:25px;
    color:#184a96;
    font-family:'Poppins',sans-serif;
}

/* Feature Points Styled */

.points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:20px;
}

.point{
    background:white;
    padding:12px 15px;
    border-radius:12px;
    font-size:14px;
    font-weight:500;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
    color:#184a96;
}

.highlight{
    margin-top:15px;
    font-weight:600;
    color:#184a96;
}

/* ================= FORM ================= */

.form-box{
    flex:1 1 380px;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.form-box h3{
    text-align:center;
    margin-bottom:20px;
    color:#184a96;
    font-family:'Poppins',sans-serif;
}

.form-box input,
.form-box select{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border-radius:10px;
    border:1px solid #ddd;
}

.form-box button{
    width:100%;
    padding:14px;
    border:none;
    background:#184a96;
    color:white;
    font-weight:600;
    border-radius:30px;
    cursor:pointer;
    transition:0.3s;
}

.form-box button:hover{
    background:#103b75;
}

/* ================= ABOUT US ================= */
.about-section{
    padding:30px 20px;
    background:#ffffff;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.about-left{
    flex:1 1 550px;
}

.about-tag{
    background:#f4d000;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    color:#184a96;
}

.about-left h2{
    font-family:'Fredoka',sans-serif;
    font-size:39px;
    color:#184a96;
    margin:20px 0;
}

.about-left p{
    margin-bottom:15px;
    color:#000000;
    line-height:1.6;
}

.about-highlights{
    margin:20px 0;
    display:grid;
    gap:10px;
    font-weight:500;
    color:#184a96;
}

.about-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 22px;
    background:#184a96;
    color:white;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
}

.about-right{
    flex:1 1 450px;
    text-align:center;
}

.about-right img{
    width:100%;
    max-width:450px;
    border-radius:20px;
}

/* ================= PRINCIPAL MESSAGE ================= */
.principal-section{
    padding:30px 20px;
    background:#f9f9f9;
}

.principal-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.principal-image{
    flex:1 1 450px;
    text-align:center;
}

.principal-image img{
    width:100%;
    max-width:500px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
    transform: scaleX(-1);
}

.principal-content{
    flex:1 1 550px;
}

.principal-tag{
    background:#f4d000;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    color:#184a96;
}

.principal-content h2{
    font-family:'Fredoka',sans-serif;
    font-size:34px;
    color:#184a96;
    margin:20px 0;
}

.principal-content p{
    margin-bottom:15px;
    color:#555;
    line-height:1.7;
}

.award-highlight{
    margin:20px 0;
    background:#fef102;
    padding:12px 18px;
    border-radius:12px;
    font-weight:600;
    color:#184a96;
    box-shadow:0 6px 15px rgba(0,0,0,0.08);
    display:inline-block;
}

.principal-name{
    margin-top:15px;
    font-size:15px;
    color:#184a96;
}

/* Hamburger */

.hamburger{
    display:none;
    font-size:28px;
    color:#184a96;
    cursor:pointer;
}

/* ================= PROGRAMS SECTION ================= */

.programs-section{
    padding:30px 20px;
    background:#f4f8ff;
}

.programs-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.section-heading h2{
    font-size:36px;
    color:#184a96;
    margin:15px 0;
}

.section-heading p{
    color:#555;
    margin-bottom:30px;
}

.program-tag{
    background:#f4d000;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    color:#184a96;
}

.programs-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:30px;
}

.program-card{
    padding:30px 25px;
    border-radius:20px;
    text-align:left;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.program-card h3{
    margin-bottom:10px;
    color:#184a96;
}

.program-card .age{
    font-weight:600;
    margin-bottom:15px;
    color:#ff0000;
}

.program-card ul{
    padding-left:18px;
    margin-bottom:20px;
}

.program-card ul li{
    margin-bottom:8px;
    font-size:14px;
}

.program-btn{
    display:inline-block;
    padding:10px 18px;
    background:#184a96;
    color:white;
    text-decoration:none;
    border-radius:25px;
    font-size:14px;
    font-weight:600;
}

.program-card:hover{
    transform:translateY(-8px);
}

/* Yellow & Blue Alternating Cards */

.yellow-card{
    background:#fff9d6;
}

.blue-card{
    background:#eaf3ff;
}

/* ================= TOP 10 BENEFITS ================= */

.benefits-section{
    padding:30px 20px;
    background:#e60000;
}

.benefits-header{
    text-align:center;
    margin-bottom:50px;
}

.benefits-header h2{
    color:white;
    font-size:42px;
    font-weight:900;
}

.benefits-header h3{
    color:#f4d000;
    font-size:36px;
    font-weight:800;
    margin:10px 0;
}

.benefits-header p{
    color:white;
    font-size:18px;
}

.benefits-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
}

.benefit-card{
    background:#f5ecd8;
    padding:25px 15px;
    border-radius:15px;
    text-align:center;
    position:relative;
    border:2px dashed #e60000;
    transition:0.3s;
}

.benefit-card:hover{
    transform:translateY(-8px);
}

.benefit-number{
    position:absolute;
    top:10px;
    left:15px;
    font-weight:700;
    color:#184a96;
}

.benefit-icon{
    width:70px;
    height:70px;
    line-height:70px;
    margin:15px auto;
    border-radius:50%;
    font-size:28px;
    color:white;
}

/* Icon Colors */

.red{ background:#ff3b3b; }
.blue{ background:#184a96; }
.green{ background:#1fa463; }
.sky{ background:#2aa7e1; }
.brown{ background:#9c7b6a; }
.pink{ background:#e91e63; }
.yellow{ background:#f4c400; color:#000; }
.grey{ background:#8e8e8e; }
.orange{ background:#c55a3d; }
.purple{ background:#9c4fa3; }

.benefit-card h4{
    font-size:15px;
    font-weight:600;
    color:#222;
    margin-top:10px;
}

/* ================= WHY SECTION ================= */

.why-section{
    padding:30px 20px;
    background:#ffffff;
}

.why-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.why-heading h2{
    font-size:36px;
    color:#184a96;
    margin:15px 0;
}

.why-heading p{
    color:#555;
    margin-bottom:50px;
}

.why-tag{
    background:#f4d000;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    color:#184a96;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.why-card{
    background:#f9fbff;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-icon{
    font-size:36px;
    margin-bottom:15px;
}

.why-card h4{
    color:#184a96;
    margin-bottom:10px;
}

.why-card p{
    font-size:14px;
    color:#555;
}

/* ================= CURRICULUM SECTION ================= */

.curriculum-section{
  padding:30px 20px;
  background:#f9fafc;
  font-family:'Poppins', sans-serif;
}

.container{
  max-width:1200px;
  margin:auto;
}

.section-header{
  text-align:center;
  margin-bottom:30px;
}

.section-header h2{
  font-size:40px;
  font-weight:800;
  color:#222;
  margin-bottom:15px;
}

.section-header p{
  font-size:18px;
  color:#666;
}

.curriculum-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.curriculum-card{
  padding:35px 25px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s ease;
  text-align:center;
}

.curriculum-card:hover{
  transform:translateY(-10px);
}

.curriculum-card .icon{
  font-size:40px;
  margin-bottom:20px;
}

.curriculum-card h3{
  font-size:22px;
  font-weight:700;
  margin-bottom:15px;
  color:#222;
}

.curriculum-card p{
  font-size:16px;
  line-height:1.6;
  color:#444;
}

/* Yellow & Blue Variations */
.yellow{
  background:#fff7d6;
}

.blue{
  background:#e6f2ff;
}

/* ================= ACTIVITIES SECTION ================= */

.activities-section{
  padding:30px 20px;
  background:#ffffff;
  font-family:'Poppins', sans-serif;
}

.container{
  max-width:1200px;
  margin:auto;
}

.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-header h2{
  font-size:40px;
  font-weight:800;
  color:#222;
  margin-bottom:15px;
}

.section-header p{
  font-size:18px;
  color:#666;
}

.activities-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.activity-card{
  background:#f4f9ff;
  padding:35px 25px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  transition:0.3s ease;
}

.activity-card:hover{
  transform:translateY(-8px);
  background:#fff7d6;
}

.activity-card .icon{
  font-size:40px;
  margin-bottom:20px;
}

.activity-card h3{
  font-size:22px;
  font-weight:700;
  margin-bottom:15px;
  color:#222;
}

.activity-card p{
  font-size:16px;
  color:#444;
  line-height:1.6;
}

/* ================= CAMPUS SECTION ================= */

.campus-section{
  padding:30px 20px;
  background:#f9fafc;
  font-family:'Poppins', sans-serif;
}

.container{
  max-width:1200px;
  margin:auto;
}

.campus-wrapper{
  display:flex;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
}

.campus-content{
  flex:1;
}

.campus-content h2{
  font-size:40px;
  font-weight:800;
  color:#222;
  margin-bottom:10px;
}

.subtitle{
  font-size:18px;
  color:#666;
  margin-bottom:40px;
}

.safety-points{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.point{
  display:flex;
  align-items:flex-start;
  gap:15px;
}

.point span{
  font-size:28px;
}

.point h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:5px;
  color:#222;
}

.point p{
  font-size:14px;
  color:#555;
}

.campus-image{
  flex:1;
}

.campus-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

  .campus-content h2{
    font-size:30px;
  }

.google-review-section{
  background:#f2f2f2;
  padding:30px 20px;
  font-family:'Poppins', sans-serif;
  overflow:hidden;
}

.container{
  max-width:1200px;
  margin:auto;
}

.review-heading{
  text-align:center;
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
  padding: 30px 20px;
}

.google-rating-bar{
  background:white;
  padding:20px 30px;
  border-radius:10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
  border: solid 1px;
  border-color: #235dad;
}

.rating-left{
  display:flex;
  align-items:center;
  gap:20px;
}

.rating-left img{
  width:80px;
}

.rating-number{
  font-size:20px;
  font-weight:700;
}

.stars{
  color:#fbbc04;
  margin-left:5px;
}

.review-count{
  margin-left:5px;
  color:#777;
}

.write-review-btn{
  background:#4285f4;
  color:white;
  padding:10px 20px;
  border-radius:5px;
  text-decoration:none;
}

.slider{
  overflow:hidden;
}

.slide-track{
  display:flex;
  gap:25px;
  animation:scroll 60s linear infinite;
}

.slider:hover .slide-track{
  animation-play-state:paused;
}

.review-card{
  min-width:280px;
  background:#e1e1e175;
  padding:20px;
  border-radius:10px;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.profile{
  width:40px;
  height:40px;
  background:#4285f4;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  margin-bottom:10px;
}

.review-card h4{
  margin:0 0 5px;
  font-size:15px;
}

.review-card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

@keyframes scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* ================= CTA SECTION ================= */

.cta-section{
    position:relative;
    padding:100px 20px;
    text-align:center;
    background: #235eb0;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity:0.1;
}

.cta-container{
    position:relative;
    max-width:900px;
    margin:auto;
    z-index:2;
}

.cta-rotating{
    font-size:40px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:15px;
    min-height:60px;
    transition:0.4s ease;
}

.cta-section p{
    font-size:20px;
    color:#ffffff;
    margin-bottom:40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-btn{
    padding:15px 35px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
    transition:0.4s ease;
}

.primary-btn{
    background:#ffffff;
    color:#ff7a00;
}

.primary-btn:hover{
    background:#000;
    color:#fff;
}

.secondary-btn{
    background:transparent;
    border:2px solid #ffffff;
    color:#ffffff;
}

.secondary-btn:hover{
    background:#ffffff;
    color:#ff7a00;
}

/* ================= FAQ SECTION ================= */

.faq-section{
    padding:30px 20px;
    background:#f9fafc;
}

.faq-container{
    max-width:1200px;
    margin:auto;
}

.faq-title{
    text-align:center;
    font-size:38px;
    font-weight:800;
    margin-bottom:10px;
}

.faq-subtitle{
    text-align:center;
    font-size:18px;
    color:#666;
    margin-bottom:30px;
}

.faq-item{
    background:#ffffff;
    margin-bottom:15px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    overflow:hidden;
    transition:0.3s ease;
}

.faq-question{
    padding:20px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question span{
    font-size:22px;
    transition:0.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 20px;
    font-size:16px;
    color:#555;
    transition:0.4s ease;
}

.faq-item.active .faq-answer{
    max-height:200px;
    padding:0 20px 20px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

/* CONTACT SECTION */
.contact-section {
    padding: 30px 20px;
    background: #d4d4d494;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT SIDE */
.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
}

.contact-details p {
    margin: 8px 0;
    font-size: 15px;
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* RIGHT SIDE */
.contact-right {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-right h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-right input,
.contact-right textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
}

.contact-right textarea {
    resize: none;
    height: 100px;
}

.contact-right button {
    padding: 12px;
    border: none;
    background: #ffcc00;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-right button:hover {
    background: #ffb700;
}

/* ================= FOOTER SECTION ================= */

.footer-section{
  background:#0f172a;
  color:#ffffff;
  padding:70px 20px 0;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.footer-col h3{
  font-size:16px;
  margin-bottom:15px;
  color:#facc15;
}

.footer-col h4{
  font-size:18px;
  margin-bottom:15px;
  color:#facc15;
}

.footer-col p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:10px;
  color:#d1d5db;
}

.footer-tagline{
  font-weight:600;
  color:#ffffff;
  margin-top:10px;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:8px;
}

.footer-col ul li a{
  text-decoration:none;
  color:#d1d5db;
  font-size:14px;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#facc15;
  padding-left:5px;
}

.footer-col a{
  color:#facc15;
  text-decoration:none;
}

.footer-social{
  margin-top:15px;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:16px;
  transition:0.3s;
  color:#fff;
}

/* Facebook */
.footer-social a.facebook{
  background:#1877F2;
}

/* Instagram */
.footer-social a.instagram{
  background:linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
}

/* YouTube */
.footer-social a.youtube{
  background:#FF0000;
}

/* Google */
.footer-social a.google{
  background:#DB4437;
}

/* Hover Effect */
.footer-social a:hover{
  transform:translateY(-4px);
}

.footer-bottom{
  text-align:center;
  padding:20px;
  margin-top:50px;
  background:#0b1220;
  font-size:14px;
  color:#9ca3af;
}

/* ================= NAVBAR MOBILE ================= */

.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
    color:#184a96;
}

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    font-size:24px;
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    z-index:9999;
}

.program-btn,
.about-btn,
.cta-btn{
    transition:0.3s ease;
}

.program-btn:hover,
.about-btn:hover,
.cta-btn:hover{
    transform:translateY(-3px);
}

/* ================= REEL TESTIMONIAL SECTION ================= */

.reel-testimonial-section{
    padding:80px 20px;
    background: linear-gradient(135deg,#FFD84D,#FFC300);
    text-align:center;
}

.reel-container{
    max-width:1200px;
    margin:auto;
}

.reel-heading{
    font-size:36px;
    font-weight:800;
    margin-bottom:10px;
    color:#222;
}

.reel-subheading{
    font-size:18px;
    margin-bottom:50px;
    color:#444;
}

.reel-grid{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

/* 9:16 Ratio Reel Card */
.reel-card{
    width:260px;
    height:460px; /* 9:16 ratio */
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.2);
    transition:0.3s ease;
    background:#000;
}

.reel-card:hover{
    transform:translateY(-10px);
}

.reel-card iframe{
    width:100%;
    height:100%;
}

/* Mobile Responsive */
@media(max-width:768px){
    .reel-card{
        width:220px;
        height:390px;
    }
}