/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f7fa;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.3s;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #1E88E5;
  cursor: pointer;
}

.logo span {
  color: #FB8C00;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 500;
  color: #333;
  transition: 0.3s;
  font-size: 15px;
}

nav a:hover,
nav a.active {
  background: #1E88E5;
  color: white;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #1E88E5, #1565C0);
  color: white;
  padding: 70px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 38px;
  color: #1E88E5;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== HERO SECTION (Home) ===== */
.hero {
  min-height: 125vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('/images/banner2.png') center/cover;
  display: flex;
  align-items: center;
  color: white;
  padding-left: max(20px, calc((100vw - 1200px) / 2 + 20px));
  padding-right: 20px;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  font-size: 19px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* ===== BUTTONS ===== */
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #FB8C00;
  color: white;
}

.btn-primary:hover {
  background: #e67d00;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #1E88E5;
}

.btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1E88E5;
  border: 2px solid #1E88E5;
}

.btn-outline:hover {
  background: #1E88E5;
  color: white;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-content h3 {
  font-size: 34px;
  margin-bottom: 18px;
}

.about-content p {
  color: #555;
  margin-bottom: 15px;
}

/* ===== PROGRAMS SECTION ===== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card .icon {
  font-size: 50px;
  margin-bottom: 5px;
}

.card h3 {
  margin: 15px 0 12px;
  color: #1E88E5;
}

.card p {
  color: #666;
  font-size: 15px;
}

/* ===== IMPACT SECTION ===== */
.impact {
  background: linear-gradient(135deg, #1E88E5, #43A047);
  color: white;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.impact-box h2 {
  font-size: 48px;
  margin-bottom: 8px;
}

.impact-box p {
  font-size: 16px;
  opacity: 0.9;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #eef5fb;
}

.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  text-align: center;
}

.testimonial-slide .quote {
  font-size: 20px;
  font-style: italic;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-slide .name {
  font-weight: 600;
  color: #1E88E5;
  font-size: 18px;
}

.testimonial-slide .role {
  color: #888;
  font-size: 14px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.slider-dot.active {
  background: #1E88E5;
  width: 30px;
  border-radius: 6px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  height: 260px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay span {
  color: white;
  font-size: 32px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox .close:hover {
  color: #FB8C00;
}

.lightbox .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}

.lightbox .nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox .prev {
  left: 20px;
}

.lightbox .next {
  right: 20px;
}

/* ===== CTA ===== */
.cta {
  background: white;
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #1E88E5;
}

.cta p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #666;
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: white;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

footer h3 {
  margin-bottom: 20px;
  color: #FB8C00;
  font-size: 19px;
}

footer p,
footer a {
  color: #bbb;
  margin-bottom: 10px;
  display: block;
  font-size: 15px;
  transition: 0.3s;

}

footer a:hover {
  color: #FB8C00;
  padding-left: 5px;
}

.footer-grid > div:last-child p {
  font-size: 13px;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding: 20px 0;
  color: #999;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #1E88E5;
}

.contact-info p {
  color: #555;
  margin-bottom: 20px;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.contact-info .info-item .icon {
  width: 50px;
  height: 50px;
  background: #eef5fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
  outline: none;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #1E88E5;
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-group .error {
  color: #e53935;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e53935;
}

.form-group.error .error {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 50px 20px;
}

.form-success.active {
  display: block;
}

.form-success .icon {
  font-size: 60px;
  margin-bottom: 15px;
}

.form-success h3 {
  color: #43A047;
  margin-bottom: 10px;
}

/* ===== DONATE MODAL ===== */
.donate-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.donate-modal.active {
  display: flex;
}

.donate-modal-content {
  background: white;
  border-radius: 25px;
  padding: 40px;
  max-width: 460px;
  width: 90%;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.donate-modal-content .close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
  transition: 0.3s;
  border: none;
  background: none;
}

.donate-modal-content .close:hover {
  color: #e53935;
}

.donate-modal-content h2 {
  text-align: center;
  color: #1E88E5;
  margin-bottom: 8px;
}

.donate-modal-content p {
  text-align: center;
  color: #666;
  margin-bottom: 25px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.amount-btn {
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.amount-btn:hover,
.amount-btn.selected {
  border-color: #1E88E5;
  background: #eef5fb;
  color: #1E88E5;
}

.custom-amount {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: 0.3s;
  margin-bottom: 20px;
}

.custom-amount:focus {
  border-color: #1E88E5;
}

.donate-modal-content .btn {
  width: 100%;
}

/* ===== FAQ / ACCORDION ===== */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
  transition: 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question .arrow {
  font-size: 20px;
  transition: 0.3s;
  color: #1E88E5;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 18px;
  color: #666;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: #FB8C00;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(251, 140, 0, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #e67d00;
  transform: translateY(-3px);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.mission-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.mission-card .icon {
  font-size: 45px;
  margin-bottom: 10px;
}

.mission-card h3 {
  color: #1E88E5;
  margin-bottom: 12px;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #1E88E5;
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: #FB8C00;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #1E88E5;
}

.timeline-item .year {
  font-weight: 700;
  color: #1E88E5;
  font-size: 18px;
}

.timeline-item h4 {
  font-size: 18px;
  margin: 5px 0 8px;
}

.timeline-item p {
  color: #666;
}

/* ===== TEAM SECTION ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.team-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
}

.team-card h4 {
  color: #1E88E5;
  margin-bottom: 5px;
}

.team-card .role {
  color: #888;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.12);
    transition: 0.4s;
    z-index: 999;
    gap: 5px;
  }

  nav.open {
    right: 0;
  }

  nav a {
    padding: 12px 18px;
    font-size: 16px;
    border-radius: 10px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .btn-group {
    flex-direction: column;
  }

  .hero {
    min-height: 70vh;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-slide .quote {
    font-size: 17px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 60vh;
  }
}

/* ===== MOBILE OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* ===== CAREERS / JOB CARDS ===== */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.job-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #e8ecf0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1E88E5, #42A5F5, #90CAF9);
  transition: 0.3s;
}

.job-card:hover {
  box-shadow: 0 12px 40px rgba(30, 136, 229, 0.12);
  transform: translateY(-6px);
  border-color: #bbdefb;
}

.job-card:hover::before {
  height: 5px;
  background: linear-gradient(90deg, #1565C0, #1E88E5, #64B5F6);
}

.job-card-inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.job-card h3 {
  font-size: 20px;
  color: #1a1a2e;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f4f8;
  font-weight: 600;
  line-height: 1.3;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  background: #f5f7fa;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.job-tag.department {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #0d47a1;
}

.job-tag.experience {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #e65100;
}

.job-tag.location {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #1b5e20;
}

.job-tag.type {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  color: #6a1b9a;
}

.job-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
  padding: 0 4px;
}

.job-apply {
  margin-top: auto;
  padding: 0 4px;
}

.job-apply .btn {
  font-size: 13px;
  padding: 12px 24px;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: 0.3s;
}

.job-apply .btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.3);
}

.job-intro {
  text-align: center;
  margin-bottom: 40px;
}

.job-intro h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.job-intro p {
  font-size: 17px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.job-intro .apply-email {
  margin-top: 16px;
  font-size: 15px;
  color: #444;
}

.job-intro .apply-email a {
  color: #1E88E5;
  font-weight: 600;
}

@media (max-width: 768px) {
  .job-grid {
    grid-template-columns: 1fr;
  }
  .job-card-inner {
    padding: 22px;
  }
}

/* ===== OUR WORK PAGE ===== */
.swHero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swHero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.swHero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.55) 100%);
}
.swHero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 820px;
}
.swHero-content .swHero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.08);
}
.swHero-content h1 {
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 20px;
}
.swHero-content h1 span {
  color: #FB8C00;
}
.swHero-content p {
  font-size: clamp(15px, 1.3vw, 19px);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 32px;
}
.swHero-content .swHero-scroll {
  display: inline-block;
  width: 34px;
  height: 54px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  position: relative;
  animation: swBounce 2s infinite;
}
.swHero-content .swHero-scroll::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: #FB8C00;
  border-radius: 3px;
}
@keyframes swBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.sw-intro {
  padding: 80px 0 60px;
  background: #faf8f4;
}
.sw-intro .container {
  max-width: 860px;
  text-align: center;
}
.sw-intro h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 14px;
}
.sw-intro h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #FB8C00;
  margin: 16px auto 0;
  border-radius: 2px;
}
.sw-intro p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 18px 0 0;
}

.sw-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 48px 24px;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
}
.sw-stats .stat-item {
  min-width: 140px;
}
.sw-stats .stat-item .num {
  font-size: 36px;
  font-weight: 800;
  color: #FB8C00;
  display: block;
}
.sw-stats .stat-item .label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

.sw-programs {
  padding: 80px 0;
  background: #fff;
}
.sw-programs .section-head,
.sw-gallery .section-head,
.sw-testimonials .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.sw-programs .section-head h2,
.sw-gallery .section-head h2,
.sw-testimonials .section-head h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1E88E5;
  margin: 0 0 8px;
}
.sw-programs .section-head p,
.sw-gallery .section-head p,
.sw-testimonials .section-head p {
  color: #777;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}
.sw-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.sw-prog-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;
  border: 1px solid #f0f0f0;
}
.sw-prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: #bbdefb;
}
.sw-prog-icon {
  font-size: 50px;
  margin-bottom: 5px;
}
.sw-prog-card h3 {
  margin: 15px 0 12px;
  color: #1E88E5;
}
.sw-prog-card p {
  color: #666;
  font-size: 15px;
}

.sw-gallery {
  padding: 80px 0;
  background: #faf8f4;
}
.sw-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.sw-g-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #eee;
}
.sw-g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sw-g-item:hover img {
  transform: scale(1.08);
}

.sw-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.sw-lightbox.active {
  display: flex;
}
.sw-lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.sw-lightbox .sw-lb-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  z-index: 2;
}
.sw-lightbox .sw-lb-close:hover {
  opacity: 1;
}
.sw-lightbox .sw-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  box-sizing: border-box;
}
.sw-lightbox .sw-lb-nav button {
  pointer-events: auto;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sw-lightbox .sw-lb-nav button:hover {
  background: rgba(255,255,255,0.25);
}

.sw-testimonials {
  padding: 80px 0;
  background: #fff;
}
.sw-testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.sw-testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.sw-testimonial-slide {
  min-width: 100%;
  padding: 20px;
  text-align: center;
}
.sw-testimonial-slide .quote {
  font-size: 20px;
  font-style: italic;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}
.sw-testimonial-slide .name {
  font-weight: 600;
  color: #1E88E5;
  font-size: 18px;
}
.sw-testimonial-slide .role {
  color: #888;
  font-size: 14px;
}
.sw-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}
.sw-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.sw-slider-dot.active {
  background: #FB8C00;
  width: 30px;
  border-radius: 6px;
}

.sw-cta {
  background: #1a1a1a;
  text-align: center;
  padding: 80px 0;
}
.sw-cta h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #fff;
}
.sw-cta p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.7);
}
.sw-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.sw-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.sw-cta .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

@media (max-width: 991px) {
  .swHero { height: 70vh; min-height: 380px; }
}
@media (max-width: 767px) {
  .swHero { height: 60vh; min-height: 320px; }
  .swHero-content h1 { font-size: 28px; }
  .sw-intro { padding: 48px 0 36px; }
  .sw-intro h2 { font-size: 26px; }
  .sw-stats { gap: 28px; padding: 32px 16px; }
  .sw-stats .stat-item .num { font-size: 28px; }
  .sw-programs { padding: 48px 0; }
  .sw-gallery { padding: 48px 0; }
  .sw-gallery-grid { gap: 12px; grid-template-columns: 1fr 1fr; }
  .sw-testimonials { padding: 48px 0; }
  .sw-testimonial-slide .quote { font-size: 17px; }
  .sw-cta { padding: 48px 0; }
  .sw-cta h2 { font-size: 30px; }
  .sw-lightbox { padding: 20px; }
  .sw-lightbox .sw-lb-close { top: 12px; right: 18px; font-size: 32px; }
  .sw-lightbox .sw-lb-nav button { width: 36px; height: 36px; font-size: 20px; }
}
/* ===== Tabs ===== */
.sw-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.sw-tab-btn {
  padding: 9px 24px;
  border: 1.5px solid #FB8C00;
  background: transparent;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
  font-family: 'Poppins', sans-serif;
}
.sw-tab-btn:hover {
  background: rgba(251,140,0,0.08);
  color: #1a1a1a;
}
.sw-tab-btn.active {
  background: #FB8C00;
  color: #fff;
  border-color: #FB8C00;
}
.sw-g-item.hidden {
  display: none;
}

/* ===== Catalogues ===== */
.sw-catalogues {
  padding: 70px 0 100px;
  background: linear-gradient(180deg, #faf8f4 0%, #f5f0e8 100%);
  position: relative;
}
.sw-catalogues::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FB8C00, #e67d00, #FB8C00);
}
.sw-catalogues .section-head {
  text-align: center;
  margin-bottom: 48px;
}
.sw-catalogues .section-head h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 8px;
}
.sw-catalogues .section-head h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #FB8C00;
  margin: 14px auto 0;
  border-radius: 2px;
}
.sw-catalogues .section-head p {
  color: #777;
  font-size: 15px;
  max-width: 520px;
  margin: 14px auto 0;
}
.sw-catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}
.sw-c-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  border-left: 4px solid #FB8C00;
}
.sw-c-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
  border-left-color: #e67d00;
}
.sw-c-item .sw-c-top {
  padding: 32px 32px 0;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
}
.sw-c-item .sw-c-info {
  flex: 1;
}
.sw-c-item .sw-c-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sw-c-item .sw-c-info h4::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 20px;
  border-radius: 3px;
  background: #FB8C00;
  flex-shrink: 0;
}
.sw-c-item .sw-c-info p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 10px 0 0;
}
.sw-c-item .sw-c-foot {
  padding: 18px 32px;
  border-top: 1px solid #f0ece4;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #fcfaf7;
}
.sw-c-item .sw-c-foot .sw-c-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FB8C00;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}
.sw-c-item .sw-c-foot .sw-c-btn:hover {
  background: #e67d00;
  color: #fff;
  text-decoration: none;
  transform: scale(1.02);
}
.sw-c-item .sw-c-foot .sw-c-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  .sw-catalogue-grid { grid-template-columns: repeat(2, 1fr); max-width: 820px; }
}
@media (max-width: 767px) {
  .sw-catalogues { padding: 44px 0 64px; }
  .sw-catalogue-grid { grid-template-columns: 1fr; gap: 20px; }
  .sw-c-item .sw-c-top { padding: 22px 22px 0; }
  .sw-c-item .sw-c-foot { padding: 16px 22px; }
}
@media (max-width: 480px) {
  .sw-gallery-grid { grid-template-columns: 1fr; }
}
