/* ============================================
   Shazia Tutoring Academy - Main Stylesheet
   Theme: Navy Blue (#0e1e32) + Orange (#ea8c08)
   ============================================ */
section {
    border-bottom: 3px solid #d47e07; /* Light grey color ki line */
}
p,
.fee-notice,
.auth-notice,
.pay-box p.sub {
    text-align: justify;
    text-justify: inter-word;
}
:root {
  --navy: #051b47;
--navy-dark: #06143c;
--navy-light: #192b49;
--primary-navy: #12203d;
  --orange: #ea8c08;
  --orange-dark: #ea8c08;
  --white: #ffffff;
  --gray-light: #f5f7fa;
  --gray: #7c7f81;
  --gray-dark: #374151;
  --radius: 10px;
  --shadow: 0 6px 20px rgba(10, 38, 71, 0.1);
  --transition: all 0.3s ease;
  --accent-orange: #ea8c08;
  --text-light: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  color: var(--gray-dark);
  line-height: 1.6;
  background: var(--white);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.section-subtitle {
  text-align: justify;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.2rem;

}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }

/* ===== Header ===== */
.site-header {
    background-color: var(--primary-navy);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { text-decoration: none; }
.logo-text { font-size: 1.8rem; font-weight: 800; color: var(--text-light); }
.text-orange { color: var(--accent-orange) !important; }
.main-nav ul { list-style: none; display: flex; gap: 35px; margin: 0; padding: 0; }
.main-nav a { color: var(--text-light); text-decoration: none; font-weight: 600; font-size: 1rem; transition: color 0.3s ease; }
.main-nav a:hover { color: var(--accent-orange); }
.header-actions { display: flex; gap: 15px; align-items: center; }
.btn-login { color: var(--text-light); text-decoration: none; font-weight: 900; border: 2px solid var(--orange-dark); padding: 4px 30px 6px; border-radius: 20px; transition: all 0.3s ease; }
.btn-login:hover { background-color: var(--orange) }
.btn-register { background-color: var(--accent-orange); color: var(--text-light); text-decoration:none;  border: 2px solid var(--orange-dark);font-weight: 900; padding: 4px 30px 6px; border-radius: 20px; transition: all 0.3s ease; }
.btn-register:hover { background-color: var(--primary-navy);  }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav-toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; }

/* ===== Hero Section ===== */
.hero-section { background-color: var(--primary-navy); padding: 70px 0 110px 0; color: var(--text-light); }
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-content { flex: 1; max-width: 50%; }
.hero-content h1 { font-size: 3rem; font-weight: 500; line-height: 1.15; margin-bottom: 25px; margin-top: 0; }
.hero-content p { font-size: 1rem; line-height: 1.7; color: #e0e4e8; margin-bottom: 40px; padding-right: 20px; }
.hero-buttons { display: flex; gap: 20px; }
.btn-primary { background-color: var(--accent-orange); color: var(--text-light); text-decoration: none; font-weight: 700; padding: 16px 35px; border-radius: 8px; font-size: 1.1rem; transition: background-color 0.3s ease; border: none; cursor: pointer; }
.btn-primary:hover { background-color: transparent; color: var(--primary-navy); }
.btn-secondary { background-color: transparent; color: var(--text-light); text-decoration: none; font-weight: 700; padding: 14px 35px; border: 2px solid var(--text-light); border-radius: 8px; font-size: 1.1rem; transition: all 0.3s ease; }
.btn-secondary:hover { background-color: var(--text-light); color: var(--primary-navy); }
.hero-image-placeholder { flex: 1; display: flex; justify-content: center; align-items: center; }
.hero-image-placeholder img {  background: transparent;}
.hero-image-placeholder h2 { color: var(--accent-orange); font-size: 3.5rem; font-weight: 500; }

/* ===== Trust Bar ===== */
.trust-bar-band { background-color: #ffffff; border-top: 3px solid var(--accent-orange); border-bottom: 3px solid var(--accent-orange); padding: 30px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.trust-bar-container { max-width: 1050px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-number { color: var(--accent-orange); font-size: 1.7rem; font-weight: 900; }
.trust-label { color: var(--primary-navy); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.trust-divider { color: #d1d5db; font-size: 2.2rem; font-weight: 300; }

/* ===== Why Choose Us — CAROUSEL ===== */
.why-us { padding: 90px 0; background: #e9edf1; }
.why-us-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}
.carousel-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--navy);
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 8px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-arrow:hover { background: var(--orange); color: var(--navy); }
.carousel-viewport { overflow: hidden; flex: 1; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.feature-card {
  background: var(--white);
  padding: 34px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
  flex: 0 0 calc(25% - 18px);
  text-align: center;
}
.feature-card.active { border-color: var(--orange); }
.feature-card .icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: var(--orange);
}
.feature-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.15rem; }
.feature-card p { color: var(--gray); font-size: 0.92rem; }

.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; }
.carousel-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #c7ccd3;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dots .dot.active { background: var(--navy); transform: scale(1.2); }

.why-us-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== About ===== */
/* ===== About ===== */
.about-section { padding: 90px 0; background: #e9edf1; }
.about-inner { display: flex; align-items: center; gap: 60px; }

.about-image { flex: 1; }
.about-image img {
  border-radius: var(--radius);
  corner-shape: var(--radius);
  border: 4px solid var(--orange);
  box-shadow: 0 0 40px rgba(249, 138, 4, 0.5);
}

.about-content { flex: 1; }
.about-content h2 { font-size: 2.4rem; color: var(--navy); margin-bottom: 18px; font-weight: 800; }
.about-content p { color: var(--gray-dark); margin-bottom: 30px; line-height: 1.7; }

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 20px;
  padding: 26px 20px;
  
}
.stat-box { flex: 1; text-align: center; position: relative; }
.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 40px;
  background: var(--orange);
}
.stat-box .num { font-size: 2.4rem; font-weight: 800; color: var(--navy); }
.stat-box .num::after { content: '+'; }
.stat-box .label { color: var(--orange); font-weight: 600; margin-top: 6px; }
.stat-box .label1{ font-size: 1.3rem; font-weight: 800; color: var(--navy); }

/* ===== Services (Carousel) ===== */
.services { padding: 90px 0; background: #e9edf1; }
.services-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}
.service-card {
  background: var(--white);
  padding: 36px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  flex: 0 0 calc(33.333% - 12px);
   width: 100%;
    box-sizing: border-box;
}
.service-card .icon { font-size: 2.8rem; color: var(--orange); margin-bottom: 18px; }
.service-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.25rem; }
.service-card p { color: var(--gray-dark); font-size: 0.95rem; }
.service-card p em u { color: var(--navy); font-style: italic; }

/* ===== Testimonials ===== */
.testimonials { padding: 90px 0; }
.testimonials-track { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; }
.testimonial-card { min-width: 320px; min-height: 280px; background: var(--gray-light); border-radius: var(--radius); padding: 25px; scroll-snap-align: start; border-left: 4px solid var(--orange); }.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.testimonial-header img { width: 50px; height: 50px; border-radius: 50%; }
.testimonial-header h4 { color: var(--navy); font-size: 1rem; }
.testimonial-header span { color: var(--gray); font-size: 0.85rem; }
.testimonial-card p { color: var(--gray-dark); font-size: 0.95rem; }
  .custom-testi-section {
    background: #f0f2f5;
    padding: 70px 0;
    border-bottom: 2px solid #ea8c08;
    overflow: hidden;
    font-family: sans-serif;
  }
.stars {
  color: #ea8c08 !important;
  font-size: 1.4rem !important;
  letter-spacing: 2px;
}  .custom-testi-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
  }
  .custom-testi-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }

  .custom-testi-header {
    background-color: #050033;
    padding: 8px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 2px solid #ea8c08;
    border-radius: 6px 6px 0 0;
  }
  .custom-testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    background: #ccc;
  }
  .custom-testi-info h4 {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0 0 0px 0;
    font-weight: bold;
  }
  .custom-testi-stars {
    color: #ea8c08;
    font-size: 0.8rem;
  }
  .custom-testi-username {
    color: #9ca3af;
    font-size: 0.75rem;
    display: block;
    margin-top: 2px;
  }
  .custom-testi-fb {
    color: #ea8c08;
    font-size: 1.2rem;
    position: absolute;
    top: 15px;
    right: 15px;
  }

/* 1. Card ki height ko content ke mutabiq tight kiya */
  .custom-testi-card {
    flex: 0 0 calc(25% - 15px); /* Desktop: 4 cards */
    background: #ffffff;
    border: 2px solid #ea8c08;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 350px; /* Fixed height ya min-height hatayein taake extra white space na bache */
  }

  /* 2. White area ki padding thori tight ki taake bottom se fuzool jagah khatam ho */
  .custom-testi-body {
    padding: 15px 15px 20px 15px; /* Bottom se spacing adjust ki */
    background: #ffffff;
    flex-grow: 1;
    border-radius: 0 0 6px 6px;
    display: flex;
    align-items: flex-start;
  }

  /* 3. Text ka margin theek kiya */
  .custom-testi-body p {
    color: #333333;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }
.custom-testi-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.3rem;
  gap: 8px;
  margin-top: 30px;
  max-width: 100%;
}
  .custom-testi-stars {
  color: #ea8c08;
  font-size: 1.3rem;
}
  .custom-testi-dots .dot {
    width: 10px;
    height: 10px;
    background: #ea8c08;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }
  .custom-testi-dots .dot.active {
    background: #050033;
    transform: scale(1.3);
  }

  /* Responsive Adjustments */
  @media (max-width: 1100px) {
    .custom-testi-card { flex: 0 0 calc(33.33% - 14px); } /* 3 Cards */
  }
  @media (max-width: 768px) {
    .custom-testi-card { flex: 0 0 calc(50% - 10px); } /* 2 Cards */
  }
  @media (max-width: 480px) {
    .custom-testi-card { flex: 0 0 100%; } /* 1 Card */
  }

/* ===== FAQ ===== */
.faq { padding: 90px 0; background: #ffffff; }
.faq-list { max-width: 1100px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 0px;
       /* yahan jo bhi color chahiye wo hex code daal dein */

  box-shadow: 0 2px 6px rgba(10, 38, 71, 0.08);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-question {
  padding: 10px 24px;
  display: flex;
  background: #ebe6e6; 

  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.05rem;
}
.faq-question:hover {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--orange);
}
.faq-question .plus {
  display: inline-block;
  color: var(--navy); 
  transform: rotate(90deg);
  transition: var(--transition);
}
.faq-item.active .plus {
  transform: rotate(0deg);
   color: var(--orange); 
}
.faq-item.active .faq-question {
  background: var(--navy);
  color: var(--orange);
  padding: 22px 24px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--white);
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px 24px;
  margin-bottom: 12px;  
  background: linear-gradient(180deg, #ea8c08 0%, #ea8c08 100%);
  border: 2px solid #000;
  border-top: none;
}
.faq-item.active .faq-answer p { color: var(--white); }

/* ===== Locations ===== */
.locations { padding: 90px 0; }
.locations-map-wrap {
  max-width: 700px;
  
  margin: 0 auto 40px;
  background: #ffffff;   /* background white */
  padding: 20px;
}
.locations-map-wrap img {
  width: 100%;
  border-radius: var(--radius);
}
.locations-list {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0px 0px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 30px;
}
.locations .section-subtitle {
    margin-bottom: 2px;
}
.location-tag {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #000000;
  padding: 6px 4px;
  font-weight: 500;
  font-size: 1.3rem;
}
.pin-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.location-tag:hover { color: var(--orange); }

@media (max-width: 768px) {
  .locations-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .locations-list { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Contact ===== */
.contact { padding: 90px 0; background: var(--gray-light); }
.contact-inner { display: flex; align-items: center; gap: 50px; }
.contact-image { flex: 1; }
.contact-image img { border-radius: var(--radius); }
.contact-form { flex: 1; background: var(--white); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; border: 1px solid #dbe0e6; border-radius: var(--radius); margin-bottom: 16px; font-family: inherit; font-size: 0.95rem; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button { width: 100%; border: none; font-size: 1rem; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-dark); color: #cbd5e1; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col h3, .footer-col h4 { color: var(--white); margin-bottom: 18px; }
.footer-col p { font-size: 0.9rem; margin-bottom: 10px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 12px; margin-top: 10px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--orange); }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 0.85rem; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; padding-right: 0; }
  .hero-buttons { justify-content: center; }
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .trust-bar-container { flex-direction: column; gap: 20px; }
  .trust-divider { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 768px) {
  .hero-inner, .about-inner, .locations-inner, .contact-inner { flex-direction: column; }
  .services-grid, .stats-grid { grid-template-columns: 1fr; }
  .locations-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .feature-card { flex: 0 0 100%; }
  .carousel-arrow { width: 38px; height: 38px; }
}
/* ==========================================================================
   NEW IMAGE MATCH: HEADER, HERO GRADIENT & PILL BUTTONS
   ========================================================================== */

/* Naya Header Design */
.new-header {
    background-color: #050033;
    border-bottom: 2px solid #ea8c08;
    padding: 15px 0;
}

.new-header .main-nav ul {
    gap: 25px;
}

.new-header .main-nav a {
    font-size: 1rem;
    font-weight: 750;
}

/* Naya Hero Gradient Design (Shade Wala Background) */
.hero-gradient {
    background: linear-gradient(100deg, #050033 20%, #ea8c08 130%);
    padding: 90px 0 100px 0;
    color: #ffffff;
    border: none;
}

.hero-gradient h1 {
    font-size: 3rem;              /* 4rem se kam kar diya */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    margin-top: 0;
    white-space: normal;
}

.hero-gradient p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Buttons ko Gol (Pill Shape) Banane ke liye */
.btn-pill-solid {
    background-color: #ea8c08;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ea8c08;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.btn-pill-solid:hover {
    background-color: #ea8c08;
    border-color: #ea8c08;
    color: #ffffff;
}

.btn-pill-outline {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ea8c08;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.btn-pill-outline:hover {
    background-color: #ea8c08;
    color: #ffffff;
}

/* ==========================================================================
   UPDATED WHY CHOOSE US MATCHING IMAGE
   ========================================================================== */

/* Background aur Spacing */
.why-us {
    background: #f0f2f5; /* Light gray background */
    padding: 60px 0;
}

.why-us .section-title {
    color: #050033;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 40px;
}

/* Cards Design */
.feature-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 3px solid transparent; 
    text-align: center;
}

/* Active Card Par Orange Border */
.feature-card.active {
    border: 3px solid #ea8c08;
}

/* Solid Orange Icons */
.feature-card .icon {
    font-size: 4rem; 
    color: #ea8c08; /* Solid orange color */
    margin-bottom: 20px;
    background: transparent;
    height: auto;
    width: auto;
}

/* Text Styling */
.feature-card h3 {
    color: #050033;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: #050033;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Naye Arrow Buttons (Black Box, Orange Border) */
.carousel-arrow {
    width: 40px;
    height: 40px;
    background: #000000;
    border: 2px solid #ea8c08;
    color: #ea8c08;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: #ea8c08;
    color: #000000;
}

/* Dots Design */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    background: #cccccc; /* Light gray dots */
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.carousel-dots .dot.active {
    background: #000000; /* Black active dot */
    transform: none;
}
/* Carousel Layout */
.carousel-viewport {
    overflow: hidden;
    width: 100%;
    margin: 0 10px; /* Arrows ke darmiyan thora gap */
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-in-out; 
}

/* Card ki Height Ziyada aur Width Kam (Portrait Style) */
.feature-card {
    flex: 0 0 325px; /* Width kam kar ke fix kar di hai */
    min-height: 300px; /* Height ziyada kar di hai */
    background: #ffffff;
    padding: 40px 15px; 
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 3px solid transparent; 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card.active {
    border: 3px solid #ea8c08;
}

.feature-card .icon {
    font-size: 4rem; 
    color: #ea8c08;
    margin-bottom: 25px;
}

.feature-card h3 {
    color: #050033;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: #050033;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================================================
   TESTIMONIALS - TWO TONE CARDS (MATCHING IMAGE)
   ========================================================================== */

.testimonials-section {
    background: #e9ecef; /* Light gray background */
    padding: 70px 0;
    border-bottom: 2px solid #ea8c08; /* Aapki demand ke mutabiq bottom border */
}

.testi-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.testi-card {
    flex: 0 0 calc(25% - 15px); /* 4 cards per row */
    min-width: 280px;
    background: #ffffff;
    border: 2px solid #ea8c08; /* Solid orange border */
    border-radius: 8px;
    overflow: hidden; /* Taake header bahar na nikle */
    display: flex;
    flex-direction: column;
}

/* Upar wala dark blue hissa */
.testi-header {
    background-color: #050033; /* Dark blue */
    padding: 20px 15px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #ea8c08;
}

.testi-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testi-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.testi-stars {
    color: #ea8c08; /* Orange stars */
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.testi-username {
    color: #9ca3af;
    font-size: 0.8rem;
}

/* Facebook Icon */
.testi-fb-icon {
    color: #ea8c08;
    font-size: 1.5rem;
    position: absolute;
    top: 20px;
    right: 15px;
}

/* Neeche wala white review hissa */
.testi-body {
    padding: 20px;
    background: #ffffff;
    flex-grow: 1;
}

.testi-body p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Orange Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.testi-dots .dot {
    width: 10px;
    height: 10px;
    background: #ea8c08; /* Orange normal dot */
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testi-dots .dot.active {
    background: #050033; /* Dark blue active dot */
    transform: scale(1.2);
}

/* Responsive (Mobile/Tablet) */
@media (max-width: 1200px) {
    .testi-card { flex: 0 0 calc(33.333% - 14px); }
}
@media (max-width: 992px) {
    .testi-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 600px) {
    .testi-card { flex: 0 0 100%; }
}

/* ==========================================================================
   SERVICES GRID LAYOUT STYLE (MATCHING THE SECOND IMAGE)
   ========================================================================== */

.custom-services-section {
    background: #e9ecef; /* Tasveer jesa premium light gray background */
    padding: 70px 0;
    border-bottom: 2px solid #ea8c08;
}

.srv-section-title {
    text-align: center; 
    color: #050033; 
    font-size: 2.5rem; 
    font-weight: bold; 
    margin-bottom: 10px;
}

.srv-section-subtitle {
    text-align: center; 
    max-width: 850px; 
    margin: 0 auto 40px auto; 
    color: #4b5563; 
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* 2 Rows and 4 Columns Grid System */
.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Har row mein 4 cards balanced */
    gap: 25px; /* Cards ke darmiyan spacing */
    width: 100%;
    box-sizing: border-box;
}

/* Card Styling - Portrait style with round borders */
.srv-card {
    background: #ffffff;
    border: 2px solid transparent; /* default plain card */
    border-radius: 18px; /* Smooth rounded corners */
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

/* Jin card par orange border lagana ho default (jaise Online tutoring par hai) */
.srv-card.active-border {
    border: 2px solid #ea8c08;
}

/* Hover karne se thora upar uthay ga layout smoothly */
.srv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Pure Solid Orange Emojis/Icons */
.srv-icon {
    font-size: 3.5rem; /* Bada solid icon size */
    color: #ea8c08;    /* Exact dark orange match */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-card h3 {
    color: #050033;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.srv-card p {
    color: #222222;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Quotation Text Style inside paragraph */
.srv-card p span {
    text-decoration: underline; /* Tasveer jesa text ke neechay line */
    font-weight: 500;
    color: #050033;
}

/* ===== Responsive Setup ===== */
@media (max-width: 1200px) {
    .services-grid-layout {
        grid-template-columns: repeat(3, 1fr); /* Medium screen par 3 cards row */
    }
}

@media (max-width: 768px) {
    .services-grid-layout {
        grid-template-columns: repeat(2, 1fr); /* Tablets par 2 cards row */
    }
}

@media (max-width: 480px) {
    .services-grid-layout {
        grid-template-columns: 1fr; /* Mobile par automatic 1 row single card */
        gap: 15px;
    }
}
/* ==========================================================================
   CONTACT SECTION STYLE (AS PER IMAGE)
   ========================================================================== */

.custom-contact-section {
    background-color: #ffffff; /* Tasveer jesa exact light gray background */
    padding: 80px 0;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Left Column & Title */
.contact-left-col {
    flex: 1;
}

.contact-title {
    font-size: 2.8rem;
    color: #050033; /* Dark Navy Blue */
    font-weight: bold;
    margin-bottom: 25px;
    text-align: left;
}

/* White Form Card */


.form-group {
    margin-bottom: 20px;
}

/* Input & Textarea Styling with Orange Borders */
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card textarea {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    border: 2px solid #ea8c08; /* Exact orange border line */
    border-radius: 30px; /* Fully rounded fields */
    outline: none;
    background-color: #ffffff;
    color: #333333;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Textarea details */
.contact-form-card textarea {
    border-radius: 20px; /* Thora square-rounded mix fields */
    resize: none;
}

/* Placeholder color styling */
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Solid Orange Submit Button */
.contact-submit-btn {
    width: 100%;
    background-color: #ea8c08; /* Rich orange background */
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

.contact-submit-btn:hover {
    background-color: #ea8c08; /* Hover shadow effect */
}

/* Right Column (Illustration handling) */
.contact-right-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-illustration-wrap img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* White Form Card with Orange Border & Glow */
.contact-form-card {
    background: #fffffff5;
    padding: 40px;
    border-radius: 12px;
    border: 3px solid #ea8c08; /* Exact solid orange border */
    box-shadow: 0 0 25px rgba(230, 138, 0, 0.25); /* Tasveer jesa orange glow/shadow */
    max-width: 550px;
        max-height: 500px;

    width: 100%;
    box-sizing: border-box;
}

/* Background mein aane wale ajeeb icon ko hamesha ke liye chupa diya */
.fallback-graphic {
    display: none !important;
}

/* ===== Responsive Setup ===== */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    .contact-title {
        text-align: center;
    }
    .contact-form-card {
        max-width: 100%;
    }
    .contact-right-col {
        display: none; /* Mobile par automatic side graphics hide ho jayein ge text space bachane ke liye */
    }
}
/* ==========================================================================
   FOOTER STYLING FOR FOOTER.PHP
   ========================================================================== */

.custom-footer {
    background-color: #050033; /* Dark navy blue background */
    color: #ffffff;
    padding: 60px 0 20px 0;
    font-family: sans-serif;
    border-top: 2px solid #ea8c08;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col h3 span {
    color: #ea8c08; /* Orange Accent */
}

.footer-col p {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Media Icons Setup */
.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: #ea8c08; /* Change to orange on hover */
    color: #ffffff;
    transform: translateY(-3px);
}

/* Quick Links Styling */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #ea8c08; /* Orange Hover */
}

/* Contact Info Action Links */
.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-info-list i {
    color: #ea8c08; /* Orange Icons */
    font-size: 1.1rem;
    width: 20px;
}

.footer-info-list a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Copyright Bar */
.footer-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Setup */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* ==========================================================================
   VIDEO SECTION STYLE
   ========================================================================== */

.custom-video-section {
    background-color: #f8f9fa; /* Light background taake videos pop karein */
    padding: 70px 0;
    text-align: center;
    font-family: sans-serif;
}

.video-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Headings Styling */
.video-title {
    font-size: 2.6rem;
    color: #050033; /* Dark Navy Blue */
    font-weight: bold;
    margin-bottom: 12px;
}

.video-title span {
    color: #ea8c08; /* Orange Highlight */
}

.video-subtitle {
    color: #4b5563;
    font-size: 1.05rem;
    margin-bottom: 45px;
    text-align: center;
}

.video-grid {
    display: flex;
    justify-content: center;
    max-width: 700px;   /* video ki width control karega, screenshot jesa */
    margin: 0 auto;      /* center karega */
}

.video-card {
    width: 100%;
}

.video-card:hover {
    transform: translateY(-5px); /* Hover effect */
}

/* Video Player Setup */
.video-card video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9; /* Standard widescreen size */
    border-radius: 10px;
    display: block;
    background-color: #000000; /* Black background load hone se pehle */
    object-fit: cover;
}

/* Responsive (Mobile par videos upar neechay ho jayengi) */
@media (max-width: 768px) {
    .video-grid {
        max-width: 100%;
        padding: 0 15px;
    }
    .video-title {
        font-size: 2.2rem;
    }
}
/* ==========================================================================
   FIXED INDEPENDENT FEATURES ACCORDION
   ========================================================================== */

.sz-ft-section {
    background-color: #f8fafc !important;
    padding: 60px 0 !important;
    font-family: sans-serif !important;
    width: 100% !important;
    display: block !important;
}

.sz-ft-container {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 10 50px !important;
    box-sizing: border-box !important;
    
}

.sz-ft-main-title {
    text-align: center !important;
    font-size: 2.2rem !important;
    color: #050033 !important;
    font-weight: bold !important;
    margin: 0 0 10px 0 !important;
}

.sz-ft-main-title span {
    color: #ea8c08 !important;
}

.sz-ft-sub-title {
    text-align: center !important;
    color: #64748b !important;
    font-size: 0.95rem !important;
    margin: 0 0 35px 0 !important;
    line-height: 1.5 !important;
}

.sz-ft-accordion-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.sz-ft-item {
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.sz-ft-header {
    padding: 16px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
}

.sz-ft-icon-box {
    width: 44px !important;
    height: 44px !important;
    background-color: #f1f5f9 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 16px !important;
    flex-shrink: 0 !important;
}

.sz-ft-icon-box i {
    color: #ea8c08 !important;
    font-size: 1.15rem !important;
}

.sz-ft-icon-box.sz-wa-green {
    background-color: #e8f5e9 !important;
}
.sz-ft-icon-box.sz-wa-green i {
    color: #4caf50 !important;
    font-size: 1.3rem !important;
}

.sz-ft-text-box {
    flex-grow: 1 !important;
    text-align: left !important;
}

.sz-ft-text-box h3 {
    margin: 0 0 4px 0 !important;
    font-size: 1.1rem !important;
    color: #050033 !important;
    font-weight: 600 !important;
}

.sz-ft-text-box p {
    margin: 0 !important;
    color: #94a3b8 !important;
    font-size: 0.85rem !important;
}

.sz-ft-arrow {
    color: #64748b !important;
    font-size: 0.95rem !important;
    transition: transform 0.3s ease !important;
    padding-left: 10px !important;
}

.sz-ft-content {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease-out !important;
    background-color: #fdfdfd !important;
}

.sz-ft-content-inner {
    padding: 15px 20px 20px 80px !important;
    color: #475569 !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    border-top: 1px solid #f1f5f9 !important;
    text-align: left !important;
}

.sz-ft-item.sz-active {
    box-shadow: 0 8px 20px rgba(230, 138, 0, 0.08) !important;
    border-color: rgba(230, 138, 0, 0.3) !important;
}

.sz-ft-item.sz-active .sz-ft-arrow {
    transform: rotate(180deg) !important;
}
.sz-ft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.sz-ft-card {
  background: #fff;
  border: 1.5px solid #ea8c08;
  max-height: 250px;
  min-width: 100px !important;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sz-ft-card:hover {
  box-shadow: 0 8px 24px rgba(11, 20, 64, 0.08);
  transform: translateY(-2px);
}

.sz-ft-card .sz-ft-icon-box {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(217, 140, 15, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ea8c08;
}

.sz-ft-card .sz-ft-icon-box.sz-wa-green {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.sz-ft-card-text {
  flex: 1;
  min-width: 0;
}

.sz-ft-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: #0B1440;
  margin: 0 0 4px;
  line-height: 1.3;
}

.sz-ft-card p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.sz-ft-card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sz-ft-card.active .sz-ft-card-content {
  max-height: 200px;
}

.sz-ft-card-content-inner {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #f0f0f0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  color: #555;
  line-height: 1.6;
}

/* Tablet: 4 se 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
  .sz-ft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
  .sz-ft-grid {
    grid-template-columns: 1fr;
  }
}
   

.custom-testi-avatar-letter {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ea8c08;
  color: #050033;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-right: 15px;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
/* ============================================
   AUTH PAGES (login.php + register.php)
   ============================================ */
.auth-wrapper{min-height:100vh;display:flex;align-items:center;justify-content:center;background:#f4f6f9;padding:24px;}
.auth-box{display:flex;width:100%;max-width:1140px;min-height:680px;background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 20px 60px rgba(11,20,64,0.15);}

.auth-left{flex:0 0 380px;background:#0B1440;color:#fff;padding:48px 40px;display:flex;flex-direction:column;justify-content:space-between;
background-image:radial-gradient(circle at 80% 90%, rgba(217,140,15,0.08), transparent 60%);}
.auth-logo{display:flex;align-items:center;gap:12px;margin-bottom:36px;}
.auth-logo-icon{width:44px;height:44px;background:#D98C0F;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:20px;}
.auth-logo-text{font-family:'Fraunces',serif;font-size:22px;font-weight:700;}
.auth-logo-text span{color:#D98C0F;}
.auth-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.15);padding:8px 16px;border-radius:30px;font-size:17px;font-weight:600;color:#D98C0F;width:fit-content;margin-bottom:28px;}.auth-heading{font-family:'Fraunces',serif;font-size:30px;font-weight:700;line-height:1.25;margin-bottom:16px;}
.auth-heading .accent{color:#D98C0F;}
.auth-desc{color:rgba(255,255,255,0.75);font-size:14px;line-height:1.6;margin-bottom:28px;}
.auth-features{list-style:none;}
.auth-features li{display:flex;align-items:center;gap:10px;font-size:14px;color:rgba(255,255,255,0.85);margin-bottom:14px;}
.auth-features li::before{content:'';width:6px;height:6px;background:#D98C0F;border-radius:50%;}
.auth-footer-note{font-size:12px;color:rgba(255,255,255,0.35);margin-top:40px;}

.auth-right{flex:1;padding:0 48px;position:relative;overflow-y:auto;max-height:100vh;display:flex;flex-direction:column;}
.auth-right::before{content:'';position:absolute;top:0;left:48px;right:48px;height:3px;background:#D98C0F;border-radius:0 0 4px 4px;}
.auth-content{margin:auto 0;width:100%;padding:52px 0;}

.auth-icon-circle{width:52px;height:52px;background:rgba(217,140,15,0.12);border-radius:14px;display:flex;align-items:center;justify-content:center;color:#D98C0F;font-size:22px;margin-bottom:18px;}
.auth-title{font-family:'Fraunces',serif;font-size:28px;font-weight:700;color:#0B1440;margin-bottom:6px;}
.auth-subtitle{color:#6b7280;font-size:14px;margin-bottom:16px;text-align: center;}

.role-switch-note{font-size:13px;color:#6b7280;margin-bottom:24px;}
.role-switch-note a{color:#D98C0F;font-weight:700;text-decoration:none;}

.auth-notice{
  background:rgba(217,140,15,0.08);
  border:1px solid rgba(217,140,15,0.3);
  border-radius:10px;
  padding:16px 18px;
  margin-bottom:22px;
  font-size:13.5px;
  line-height:1.6;
  color:#4b5563;
}
.auth-notice strong{color:#0B1440;}

.role-toggle-row{display:flex;gap:14px;margin-bottom:28px;}
.role-toggle-option{flex:1;}
.role-toggle-option input{display:none;}
.role-toggle-option label{
  display:flex;align-items:center;justify-content:center;gap:8px;padding:14px 10px;border:1.5px solid #dbe0e6;
  border-radius:10px;font-size:14px;font-weight:700;color:#6b7280;cursor:pointer;transition:all .2s;
}
.role-toggle-option input:checked + label{border-color:#D98C0F;background:rgba(217,140,15,0.08);color:#0B1440;}

.form-section-title{font-family:'Fraunces',serif;font-size:16px;font-weight:700;color:#D98C0F;margin:26px 0 14px;padding-top:14px;border-top:1px solid #eef0f3;}
.form-section-title:first-of-type{border-top:none;padding-top:0;margin-top:0;}

.field-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.field-grid .full{grid-column:1 / -1;}

.auth-input-group{margin-bottom:18px;}
.auth-label{font-family:'Fraunces',serif;font-size:15px;font-weight:600;color:#0B1440;margin-bottom:7px;display:block;}
.auth-input-group input,
.auth-input-group select{
  width:100%;padding:13px 16px;border:1px solid #c9ccd1;border-radius:8px;font-size:14px;
  font-family:'Plus Jakarta Sans',sans-serif;outline:none;transition:border-color .2s;background:#fff;cursor:pointer;
}
.auth-input-group input:focus,.auth-input-group select:focus{border-color:#D98C0F;}
.auth-input-group input[type="file"]{padding:10px;cursor:pointer;}

.checkbox-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:18px;}
.checkbox-item{display:flex;align-items:center;gap:8px;font-size:14px;color:#374151;}
.checkbox-item input{width:16px;height:16px;accent-color:#D98C0F;cursor:pointer;}

.radio-inline-row{display:flex;gap:16px;margin-bottom:18px;flex-wrap:wrap;}
.radio-inline-item{display:flex;align-items:center;gap:6px;font-size:14px;color:#374151;}
.radio-inline-item input{accent-color:#D98C0F;cursor:pointer;}

.role-fields{display:none;}
.role-fields.active{display:block;}

.auth-submit-btn{
  width:100%;padding:15px;background:#0B1440;color:#fff;border:none;border-radius:10px;font-size:15px;font-weight:700;
  font-family:'Plus Jakarta Sans',sans-serif;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;
  transition:background .2s;margin-top:10px;
}
.auth-submit-btn:hover{background:#141c54;}
.auth-submit-btn .arrow{color:#D98C0F;}

.auth-links-row{display:flex;justify-content:space-between;align-items:center;margin-top:24px;font-size:14px;}
.auth-links-row a{color:#6b7280;text-decoration:none;}
.auth-links-row .create-link{color:#0B1440;font-weight:700;text-decoration:underline;}

@media (max-width: 900px){
  .auth-left{display:none;}
  .auth-box{min-height:auto;}
  .auth-right{padding:0 28px;max-height:none;}
  .field-grid,.checkbox-grid{grid-template-columns:1fr;}
}

/* ===== Contact (Fixing the cutoff part) ===== */
.contact-image img { 
  border-radius: var(--radius); 
  box-shadow: var(--shadow);
}

/* ===== Hero Buttons ===== */
.btn-pill-solid { 
  background: var(--orange); 
  color: var(--primary-navy); 
  padding: 14px 35px; 
  border-radius: 50px; 
  font-weight: 700; 
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid var(--orange);
}
.btn-pill-solid:hover {
  background: transparent;
  color: var(--orange);
}
.btn-pill-outline { 
  border: 2px solid var(--white); 
  color: var(--white); 
  padding: 14px 35px; 
  border-radius: 50px; 
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition); 
}
.btn-pill-outline:hover {
  background: var(--white);
  color: var(--primary-navy);
}

/* ===== Video Section ===== */
.custom-video-section { 
  padding: 90px 0; 
  background: var(--white); 
  text-align: center; 
}
.video-container { 
  max-width: 900px; 
  margin: 0 auto; 
  padding: 0 20px;
}
.video-title {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.video-title span { 
  color: var(--orange); 
}
.video-subtitle {
  color: var(--gray);
  margin-bottom: 40px;
  text-align: center;
}
.video-card video { 
  width: 100%; 
  border-radius: var(--radius); 
  border: 4px solid var(--orange);
  box-shadow: var(--shadow);
}

/* ===== Services Layout ===== */
.custom-services-section { 
  padding: 90px 0; 
  background: #e9edf1; 
  text-align: center; 
}
.srv-section-title {
  font-size: 2.2rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}
.srv-section-subtitle {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}
.services-grid-layout { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
  gap: 25px; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px;
}
.srv-card { 
  background: var(--white); 
  padding: 35px 25px; 
  border-radius: var(--radius); 
  border-bottom: 4px solid transparent; 
  box-shadow: var(--shadow); 
  transition: var(--transition);
}
.srv-card:hover, .srv-card.active-border {
  border-bottom: 4px solid var(--orange);
  transform: translateY(-5px);
}
.srv-icon { 
  font-size: 2.8rem; 
  color: var(--navy); 
  margin-bottom: 20px; 
}
.srv-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.srv-card p {
  color: var(--gray-dark);
  font-size: 0.95rem;
}
.srv-card span { 
  font-weight: 700; 
  color: var(--orange); 
  display: block;
  margin-bottom: 5px;
}

/* ===== Academy Features Accordion ===== */
.sz-ft-section { 
  padding: 90px 0; 
  background: var(--primary-navy); 
  color: var(--white); 
  text-align: center; 
}
.sz-ft-main-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.sz-ft-main-title span { 
  color: var(--orange); 
}
.sz-ft-sub-title {
  color: #c7ccd3;
  margin-bottom: 50px;
}
.sz-ft-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 3fr)); 
  gap: 20px; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px;
  text-align: left;
}
.sz-ft-card { 
  background: var(--white); 
  padding: 25px; 
  border-radius: var(--radius); 
  cursor: pointer; 
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 15px;
    border-color: var(--orange);

}
.sz-ft-card:hover {
  border-color: var(--orange);
}
.sz-ft-icon-box { 
  font-size: 2rem; 
  color: var(--orange); 
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(234, 140, 8, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.sz-ft-icon-box.sz-wa-green {
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
}
.sz-ft-card-text h3 {
  font-size: 1.15rem;
  margin-bottom: 5px;
  color: var(--navy-dark);
}
.sz-ft-card-text p {
  font-size: 0.9rem;
  color: var(--navy-light);
  margin-bottom: 0;
}
.sz-ft-card-content { 
  display: none; 
  margin-top: 15px; 
  color: #c7ccd3; 
  font-size: 0.95rem;
  border-top: 1px dashed rgba(255,255,255,0.2);
  padding-top: 15px;
}
.sz-ft-card.active .sz-ft-card-content { 
  display: block; 
}

/* ===== Contact Form Section ===== */
.custom-contact-section { 
  padding: 90px 0; 
  background: var(--white); 
}
.contact-container { 
  display: flex; 
  flex-wrap: wrap; 
  max-width: 1100px; 
  margin: 0 auto; 
  gap: 50px; 
  padding: 0 20px;
  align-items: center;
}
.contact-title {
  font-size: 2.2rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 30px;
}
.contact-left-col { 
  flex: 1; 
  min-width: 320px; 
}
.contact-right-col { 
  flex: 1; 
  min-width: 320px; 
  display: flex; 
  justify-content: center; 
}
.contact-form-card { 
  background: var(--gray-light); 
  padding: 40px; 
  border-radius: var(--radius); 
  box-shadow: var(--shadow);
  border: 1px solid #e1e5ea;
}
.form-group { 
  margin-bottom: 20px; 
}
.form-group input, 
.form-group textarea { 
  width: 100%; 
  padding: 16px; 
  border: 1px solid #d1d5db; 
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}
.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.contact-submit-btn { 
  background: var(--primary-navy); 
  color: var(--white); 
  padding: 16px 30px; 
  border: none; 
  border-radius: 8px; 
  cursor: pointer; 
  font-weight: 700; 
  font-size: 1.05rem;
  width: 100%; 
  transition: var(--transition);
}
.contact-submit-btn:hover { 
  background: var(--orange); 
}
.contact-illustration-wrap img { 
  width: 100%; 
  max-width: 450px; 
}
.fallback-graphic {
  font-size: 8rem;
  color: var(--orange);
  opacity: 0.2;
}
.register-dropdown-container {
    position: relative;
    display: inline-block;
}
.btn-register-toggle {
    background: #D98C0F;
    color: #fff;
    border: none;
    padding: 10px 28px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}
.btn-register-toggle:hover {
    background: #c27b0b;
}
.register-dropdown-menu {
    display: none;
    position: absolute;
    top: 55px;
    right: 0;
    background: #ffffff;
    width: 340px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 1000;
    border: 1px solid #eaeaea;
}
.register-dropdown-menu.show { display: block; }
.dropdown-arrow {
    position: absolute;
    top: -8px;
    right: 25px;
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}
.register-dropdown-menu h3 {
    color: #0B1440;
    font-size: 18px;
    margin: 0 0 4px 0;
    font-weight: 700;
}
.register-dropdown-menu p {
    color: #6b7280;
    font-size: 12.5px;
    margin: 0 0 15px 0;
}
.dropdown-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dropdown-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #f0f0f0;
    transition: 0.2s;
}
.dropdown-card:hover {
    background: #f8f9fa;
    border-color: #D98C0F;
}
.card-icon { font-size: 24px; }
.card-text { display: flex; flex-direction: column; }
.card-text strong { color: #0B1440; font-size: 14px; }
.card-text span { color: #6b7280; font-size: 12px; }