﻿ * { 
     margin: 0; 
     padding: 0; 
     box-sizing: border-box; 

 }

 :root {
    --primary: #F4A300;
    --primary-dark: #D98A00;
    --cream-bg: #FFF6E6;
    --text-dark: #2B2B2B;
    --accent: #F7D27C;
}

body {
    background: var(--cream-bg) !important;
    color: var(--text-dark) !important;
    font-family: 'Poppins', sans-serif !important;
}

/* NAVBAR BACKGROUND */
.navbar {
    background: #1c0732 !important; /* YOUR COLOR */
    padding: 12px 0;
}

/* BRAND / LOGO */
.navbar-brand img {
    height: 52px; /* Adjust logo size here */
    object-fit: contain;
}

/* MENU LINKS */
.navbar .nav-link {
    color: #f1e9ff !important; /* Soft light lavender-white */
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin-left: 8px;
    transition: 0.3s;
}

/* HOVER COLOR */
.navbar .nav-link:hover {
    color: #F4A300 !important; /* Golden Orange Hover */
}

/* DROPDOWN MENU */
.dropdown-menu {
    background: #2a0c43; /* Slightly lighter tone */
}

.dropdown-menu .dropdown-item {
    color: #1c0732;
}

.dropdown-menu .dropdown-item:hover {
    background: #F4A300;
    color: #000;
}

.dropdown-menu.show {
  border-top: 4px solid #f4a300;
  border-left: 4px solid #f4a300;
}

/* DONATE BUTTON */
.navbar .btn-donate {
    background: #F4A300;
    color: #000;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 6px;
}

.navbar .btn-donate:hover {
    background: #cf8200;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.section-title h2 {
    font-family: 'Merriweather', serif !important;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Default Page Text */
body, p, span, li {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark, #2B2B2B);
}

/* Main Page Titles (Emotional & Elegant) */
h1, h2 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Section Headers (Warm & Friendly) */
h3, h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

/* Smaller Sub Label Text */
h5, h6, .small-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Navbar and Buttons Always Look Clean */
.navbar, .btn, button, .nav-link {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
}

/* Soft Heading Styling Example */
.section-title h2 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--primary-dark, #D98A00);
}

/* Paragraph Spacing */
p {
    margin-bottom: 12px;
}


#heroSlider {
  position: relative;
}

.slide-bg {
  height: 75vh; /* Balanced size */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  /* New warm translucent overlay, not dark */
  background: linear-gradient(to bottom, rgba(253, 189, 84, 0.24), rgba(28, 7, 50, 0.55));
}

.carousel-caption {
  bottom: 25%;
  left: 8%;
  right: auto;
  text-align: left;
  max-width: 600px;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
}

.carousel-caption p {
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

/* IMPACT SECTION */
.impact-section {
  background: #f7f4fc;
  padding: 80px 0 100px;
  position: relative;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.impact-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
}

/* GRID */
.impact-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  
  opacity: 0;
  transform: translateY(40px);
  transition: .8s ease;
}

.impact-section.visible .impact-inner {
  opacity: 1;
  transform: translateY(0);
}

/* CARDS */
.impact-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  border-bottom: 6px solid #fdbd54;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: .4s ease;
  cursor: pointer;
}

.impact-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  border-bottom-color: #1c0732;
}

/* ICONS */
.impact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(253, 189, 84, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}

.impact-icon i {
  font-size: 34px;
  color: #1c0732;
  transition: .3s ease;
}

.impact-item:hover .impact-icon {
  background: #1c0732;
  transform: scale(1.08);
}

.impact-item:hover .impact-icon i {
  color: #fdbd54;
}

/* NUMBERS */
.count {
  font-size: 38px;
  font-weight: 700;
  color: #1c0732;
  margin-bottom: 8px;
}

/* LABEL TEXT */
.impact-item p {
  font-size: 15px;
  color: #444;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .impact-inner {
    gap: 30px;
  }
}

@media(max-width: 600px) {
  .impact-inner {
    grid-template-columns: 1fr;
  }
  .count { font-size: 28px; }
  .impact-icon { width: 60px; height: 60px; }
  .impact-icon i { font-size: 28px; }
}

.about-section {
  padding: 90px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  width: 85%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* IMAGE */
.about-image {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  animation: fadeInLeft 1s ease forwards;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* CONTENT */
.about-content {
  flex: 1.2;
  min-width: 300px;
  opacity: 0;
  animation: fadeInRight 1s ease forwards;
}

.about-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1c0732;
  margin-bottom: 18px;
  position: relative;
}

.about-content h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #fdbd54;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 16px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #1c0732;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
  text-decoration: none;
}

.about-btn:hover {
  background: #fdbd54;
  color: #1c0732;
  transform: translateY(-4px);
}

/* ANIMATIONS */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE */
@media(max-width: 992px){
  .about-container { gap: 35px; text-align: center; }
  .about-content h2 { font-size: 30px; }
  .about-btn { margin-top: 10px; }
}

@media(max-width: 600px){
  .about-section { padding: 65px 0; }
  .about-content h2 { font-size: 26px; }
  .about-content p { font-size: 15px; }
}
.programs-section {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

/* HERO AREA */
.programs-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.programs-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.programs-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 80%;
}

.hero-text h2 {
  font-size: 38px;
  font-weight: 700;
  text-shadow: 0 4px 6px rgba(0,0,0,0.45);
}

.hero-text p {
  font-size: 18px;
  color: #fff;
  margin-top: 10px;
}

/* PROGRAM CONTAINER */
.programs-container {
  width: 90%;
  max-width: 1300px;
  margin: -80px auto 60px;
  position: relative;
  z-index: 3;
}

/* GRID - 3 per row */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD STYLE */
.program-card {
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 30px 25px;
  text-align: center;
  transition: all 0.35s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}

/* ICONS */
.program-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fdbd54;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c0732;
  font-size: 28px;
  margin: 0 auto 15px;
  transition: all 0.35s ease;
}

.program-card:hover .program-icon {
  background: #1c0732;
  color: #fdbd54;
  transform: scale(1.1);
}

/* TEXT */
.program-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1c0732;
  margin-bottom: 10px;
}

.program-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* RESPONSIVE DESIGN */
@media(max-width: 992px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-text h2 {
    font-size: 32px;
  }
}

@media(max-width: 600px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h2 {
    font-size: 26px;
  }
  .programs-container {
    margin-top: -60px;
  }
}


.projects-section {
  padding: 80px 5%;
  background: #f7f4fc;
  font-family: 'Poppins', sans-serif;
}

.projects-header {
  text-align: center;
  margin-bottom: 50px;
}

.projects-header h2 {
  font-size: 34px;
  color: #1c0732;
  font-weight: 700;
}

.projects-header p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

/* Carousel */
.projects-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.projects-carousel::-webkit-scrollbar {
  height: 8px;
}

.projects-carousel::-webkit-scrollbar-thumb {
  background: #1c0732;
  border-radius: 10px;
}

.project-card {
  background: #fff;
  min-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.project-card.featured {
  min-width: 420px;
  transform: scale(1.05);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.25);
}

/* Image */
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}

.project-card:hover img {
  transform: scale(1.08);
}

/* Info */
.project-info {
  padding: 18px 16px;
}

.project-info h3 {
  font-size: 20px;
  color: #1c0732;
  margin-bottom: 10px;
  font-weight: 700;
}

.project-info p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.project-btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #1c0732;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.project-btn:hover {
  background: #fdbd54;
  color: #1c0732;
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 992px) {
  .project-card.featured {
    min-width: 360px;
    transform: scale(1);
  }
}

@media(max-width: 600px) {
  .projects-section { padding: 60px 3%; }
  .projects-header h2 { font-size: 26px; }
  .projects-header p { font-size: 14px; }
  .project-card { min-width: 260px; }
  .project-card.featured { min-width: 300px; }
  .project-info h3 { font-size: 18px; }
  .project-info p { font-size: 14px; }
}

.projects-section {
  padding: 80px 5%;
  background: #f7f4fc;
  font-family: 'Poppins', sans-serif;
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-header h2 {
  font-size: 36px;
  color: #1c0732;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.projects-header h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #fdbd54;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.projects-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Masonry grid */
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

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

.project-info {
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  background: rgba(253, 189, 84, 0.61);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  transform: translateY(50%);
  transition: transform 0.4s, background 0.3s;
}

.project-card:hover .project-info {
  transform: translateY(0);
  background: rgba(253, 189, 84, 0.71);
}

.project-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 700;
}

.project-info p {
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive */
@media(max-width: 992px) {
  .projects-masonry {
    gap: 30px;
  }
  .project-card img {
    height: 240px;
  }
}

@media(max-width: 600px) {
  .projects-header h2 {
    font-size: 28px;
  }
  .projects-header p {
    font-size: 15px;
  }
  .project-card img {
    height: 200px;
  }
  .project-info h3 {
    font-size: 18px;
  }
  .project-info p {
    font-size: 13px;
  }
}

/* === Mobile Fix: Show project info by default on mobile === */
@media (max-width: 768px) {
  .project-info {
    transform: translateY(0) !important;
    background: rgba(253, 189, 84, 0.8) !important;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 0;
    padding: 15px 12px;
  }

  .project-info h3 {
    font-size: 16px;
  }

  .project-info p {
    font-size: 13px;
    line-height: 1.4;
  }

  .project-card:hover .project-info {
    transform: translateY(0) !important;
  }
}


.strengths-timeline {
  background: #f7f4fc;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  color: #1c0732;
  font-weight: 700;
}

.section-header p {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/* TIMELINE */
.timeline {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #fdbd54;
  border-radius: 2px;
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 0.8s forwards;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }

.timeline-icon {
  position: absolute;
  top: 20px;
  width: 60px;
  height: 60px;
  background: #1c0732;
  color: #fdbd54;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1;
}

.timeline-item.left .timeline-icon {
  right: -30px;
}

.timeline-item.right .timeline-icon {
  left: -30px;
}

.timeline-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: inline-block;
  max-width: 90%;
}

.timeline-content h3 {
  font-size: 20px;
  color: #1c0732;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width: 991px) {
  .timeline::before {
    left: 8px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 20px;
    text-align: left !important;
    margin-bottom: 40px;
  }
  .timeline-item.left .timeline-icon,
  .timeline-item.right .timeline-icon {
    left: 0;
    right: auto;
  }
  .timeline-content {
    max-width: 100%;
  }
}
/* Responsive Fix for Mobile View */
@media (max-width: 991px) {

  .timeline {
    width: 95%;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
    position: relative;
  }

  .timeline::before {
    left: 30px; /* Keep the vertical line visible */
    width: 3px;
    height: 100%;
  }

  .timeline-item {
    width: 100%;
    margin-bottom: 50px;
    padding-left: 70px; /* space for icons */
    padding-right: 15px;
    text-align: left !important;
    left: 0 !important;
    transform: none;
    opacity: 1;
  }

  .timeline-item.left,
  .timeline-item.right {
    text-align: left;
  }

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

  .timeline-icon {
    left: 0;
    right: auto;
    top: 10px;
    transform: translateY(0);
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .timeline-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 18px 20px;
    max-width: 100%;
    display: block;
    margin-left: 10px;
  }

  .timeline-content h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .timeline-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header p {
    font-size: 14px;
    margin: 0 10px;
  }
}

/* Small Screens (extra-safe zone for ≤480px) */
@media (max-width: 480px) {
  .timeline {
    padding-left: 15px;
  }

  .timeline::before {
    left: 25px;
  }

  .timeline-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .timeline-content {
    margin-left: 5px;
    padding: 15px 18px;
  }

  .timeline-content h3 {
    font-size: 16px;
  }

  .timeline-content p {
    font-size: 13px;
  }
}


.testimonials-section {
  background: #f7f4fc;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1c0732;
}

.section-header p {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/* Circular Card Layout */
.testimonials-circles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.testimonial-circle {
  background: #fff;
  border-radius: 50px;
  padding: 25px 35px;
  width: 300px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.testimonial-circle:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image inside circle */
.circle-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid #fdbd54;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.circle-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
}

.circle-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1c0732;
  margin: 0 0 4px;
}

.circle-content span {
  font-size: 14px;
  color: #555;
}

/* Animation on scroll */
.testimonial-circle {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.testimonial-circle:nth-child(1) { animation-delay: 0.2s; }
.testimonial-circle:nth-child(2) { animation-delay: 0.4s; }
.testimonial-circle:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width: 992px) {
  .testimonials-circles { gap: 25px; }
  .testimonial-circle { width: 250px; }
}

@media(max-width: 600px) {
  .testimonials-circles { flex-direction: column; align-items: center; }
  .testimonial-circle { width: 90%; }
}

.testimonials-section {
  background: #f7f4fc;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1c0732;
}

.section-header p {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/* Timeline Layout */
.testimonials-timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

.testimonials-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fdbd54;
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item .timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  position: relative;
}

.timeline-item .timeline-content.left {
  left: -10px;
  text-align: right;
}

.timeline-item .timeline-content.right {
  left: 50%;
  text-align: left;
}

.timeline-item .timeline-content::after {
  content: '';
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  background: #1c0732;
  border: 4px solid #fdbd54;
  border-radius: 50%;
  z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-content::after {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-content::after {
  left: -8px;
}

/* Text */
.timeline-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1c0732;
  margin-bottom: 4px;
}

.timeline-content span {
  font-size: 14px;
  color: #555;
  display: block;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* Animations */
.timeline-item {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width: 768px) {
  .timeline-item {
    width: 100%;
    padding: 10px 20px;
  }

  .timeline-item .timeline-content.left,
  .timeline-item .timeline-content.right {
    left: 0 !important;
    text-align: left;
  }

  .timeline-item .timeline-content::after {
    display: none;
  }

  .testimonials-timeline::before {
    left: 50%;
  }
}

.testimonials-section {
  background: #f7f4fc;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1c0732;
}

.section-header p {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/* Grid layout with stagger effect */
.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.testimonial-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  text-align: center;
  width: 300px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Stagger vertical positioning */
.stagger-1 { top: 0px; }
.stagger-2 { top: 40px; }
.stagger-3 { top: 80px; }

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

/* Profile Image */
.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 4px solid #fdbd54;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.testimonial-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1c0732;
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media(max-width: 992px) {
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }

  .stagger-1, .stagger-2, .stagger-3 {
    top: 0 !important;
  }
  
  .testimonial-card {
    width: 85%;
    margin-bottom: 30px;
  }
}


.cta-diagonal {
  position: relative;
  padding: 100px 20px 120px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #fff;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: -50px;
  width: 120%;
  height: 100%;
  background: linear-gradient(135deg, #6e2bcc 0%, #fdbd54 100%);
  transform: skewY(-6deg);
  z-index: 1;
  border-radius: 20px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #fff;
}

.cta-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 160px;
}

.cta-card i {
  font-size: 32px;
  margin-bottom: 12px;
  color: #fff;
}

.cta-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.cta-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255,255,255,0.25);
}

.cta-btn-diagonal {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #6e2bcc;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-diagonal:hover {
  background: #6e2bcc;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}

/* Responsive */
@media(max-width: 992px){
  .cta-content h2 { font-size: 30px; }
  .cta-content p { font-size: 16px; }
}

@media(max-width: 768px){
  .cta-cards {
    flex-direction: column;
    gap: 20px;
  }
  .cta-card { width: 200px; margin: auto; }
}

.cta-split {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    overflow: hidden;
    background: #f7f4fc;
    border-radius: 16px;
    margin: 60px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cta-left, .cta-right {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.cta-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    transition: transform 0.4s ease;
}

.cta-left:hover img {
    transform: scale(1.05);
}

.cta-right {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.cta-right h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1c0732;
    margin-bottom: 20px;
    position: relative;
}

.cta-right h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #fdbd54;
    display: block;
    margin-top: 8px;
    border-radius: 2px;
}

.cta-right p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #1c0732;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-btn:hover {
    background: #fdbd54;
    color: #1c0732;
    transform: translateY(-3px) scale(1.05);
}

/* Animation */
.cta-right, .cta-left {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px);}
    100% { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media(max-width: 992px){
    .cta-split { flex-direction: column; }
    .cta-left img { border-radius: 16px 16px 0 0; }
    .cta-right { border-radius: 0 0 16px 16px; padding: 40px 25px; }
    .cta-right h2 { font-size: 28px; }
    .cta-right p { font-size: 15px; }
    .cta-btn { padding: 12px 30px; }
}

@media(max-width: 600px){
    .cta-right h2 { font-size: 24px; }
    .cta-right p { font-size: 14px; }
    .cta-btn { padding: 10px 25px; font-size: 14px; }
}


.news-section {
    padding: 80px 10%;
    background: #f7f4fc;
    font-family: 'Poppins', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #1c0732;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.section-header h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #fdbd54;
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 16px;
    color: #555;
}

/* Layout */
.news-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Featured News */
.news-featured {
    flex: 2;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.news-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.news-featured img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.news-featured-content {
    padding: 25px;
    background: #ffffff;
    position: relative;
    top: -50px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.news-featured-content h3 {
    font-size: 22px;
    color: #1c0732;
    margin-bottom: 12px;
}

.news-featured-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.news-btn {
    margin-top: 12px;
    padding: 10px 26px;
    background: #1c0732;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news-btn:hover {
    background: #fdbd54;
    color: #1c0732;
    transform: translateY(-2px) scale(1.05);
}

/* Side News */
.news-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card-small {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card-small:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.news-card-small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-card-small h4 {
    font-size: 18px;
    color: #1c0732;
    margin: 12px 15px 6px;
}

.news-card-small p {
    font-size: 14px;
    color: #555;
    margin: 0 15px 12px;
    line-height: 1.5;
}

.news-btn-small {
    display: inline-block;
    margin: 0 15px 15px;
    padding: 8px 22px;
    background: #1c0732;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 50px;
    transition: 0.3s;
}

.news-btn-small:hover {
    background: #fdbd54;
    color: #1c0732;
}

/* Responsive */
@media(max-width: 992px){
    .news-layout {
        flex-direction: column;
    }
    .news-featured img {
        height: 300px;
    }
}

@media(max-width: 600px){
    .news-featured img {
        height: 220px;
    }
    .news-featured-content h3 { font-size: 20px; }
    .news-card-small h4 { font-size: 16px; }
}

.partners-section {
  padding: 80px 10%;
  background: #f7f4fc;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.partners-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1c0732;
  margin-bottom: 10px;
  position: relative;
}

.partners-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #fdbd54;
  display: block;
  margin: 8px auto 20px auto;
  border-radius: 2px;
}

.partners-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.partner-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.partner-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-card:hover img {
  transform: scale(1.1);
}

.partner-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

/* Responsive */
@media(max-width: 992px) {
  .partners-section h2 { font-size: 28px; }
  .partners-section p { font-size: 15px; margin-bottom: 35px; }
}

@media(max-width: 600px) {
  .partners-section h2 { font-size: 24px; }
  .partners-section p { font-size: 14px; margin-bottom: 25px; }
  .partner-card { padding: 15px; }
  .partner-card img { max-height: 50px; }
}
.footer-complete {
  background: linear-gradient(180deg, #ffffff 0%, #fdf9ef 100%);
  color: #333;
  font-family: 'Poppins', sans-serif;
  padding: 80px 8% 40px;
  position: relative;
  border-top: 4px solid #fdbd54;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

/* Grid Layout */
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* Logo & About */
.footer-logo-area {
  max-width: 350px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-logo-area p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #fdbd54;
  color: #1c0732;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #1c0732;
  color: #fff;
  transform: scale(1.1);
}

/* Quick Links */
.footer-links h4,
.footer-contact h4,
.footer-extra h4 {
  font-size: 18px;
  color: #1c0732;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-extra h4::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #fdbd54;
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 2px;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links ul li a:hover {
  color: #1c0732;
  padding-left: 6px;
}

/* Contact */
.footer-contact p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

.footer-contact i {
  color: #fdbd54;
  margin-right: 8px;
}

/* Visitor Box */
.visitor-box {
  margin-top: 15px;
  padding: 12px;
  border: 1px solid rgba(253,189,84,0.4);
  border-radius: 8px;
  background: rgba(253,189,84,0.1);
  text-align: center;
}

.visitor-box h5 {
  font-size: 15px;
  color: #1c0732;
  margin-bottom: 5px;
}

.visitor-box p {
  font-size: 18px;
  font-weight: 600;
  color: #1c0732;
}

/* Extra Section */
.footer-extra p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Subscribe */
.subscribe-form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.subscribe-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 15px;
  font-size: 14px;
}

.subscribe-form button {
  background: #fdbd54;
  color: #1c0732;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-form button:hover {
  background: #1c0732;
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-top {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after,
  .footer-extra h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }
}
/* =============================
   CONTACT PAGE BANNER - SPLIT STYLE
   ============================= */
.contact-banner-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fffaf2;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  flex-wrap: wrap;
}

/* Left Section */
.contact-left {
  flex: 1;
  padding: 60px 7%;
  color: #1c0732;
  z-index: 2;
  animation: fadeInLeft 1.2s ease forwards;
}

.contact-left h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: #1c0732;
  margin-bottom: 18px;
}

.contact-left p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 480px;
}

/* Button */
.contact-banner-btn {
  display: inline-block;
  background: #fdbd54;
  color: #1c0732;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(253,189,84,0.3);
}

.contact-banner-btn:hover {
  background: #1c0732;
  color: #fff;
  transform: translateY(-3px);
}

/* Right Section (Image) */
.contact-right {
  flex: 1;
  position: relative;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  animation: fadeInRight 1.2s ease forwards;
}

.contact-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(90%);
  transition: transform 8s ease;
}

.contact-banner-split:hover .contact-right img {
  transform: scale(1.08);
}

/* Overlay effect */
.contact-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,7,50,0.45), rgba(253,189,84,0.1));
  mix-blend-mode: multiply;
}

/* Animations */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-banner-split {
    flex-direction: column-reverse;
    text-align: center;
  }

  .contact-left {
    padding: 40px 8%;
  }

  .contact-left h1 {
    font-size: 30px;
  }

  .contact-left p {
    font-size: 15px;
    margin: 0 auto 20px;
  }

  .contact-right img {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .contact-left h1 {
    font-size: 26px;
  }

  .contact-left p {
    font-size: 14px;
  }

  .contact-banner-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* GENERAL */
section { font-family: 'Poppins', sans-serif; }

/* CONTACT HERO */
.contact-hero {
  background: linear-gradient(135deg, #fffaf2 60%, #f7f4fc 40%);
  padding: 90px 0;
}

.contact-hero-inner {
  width: 85%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.hero-text { flex: 1; min-width: 300px; }
.hero-text h2 { color: #f4a300; font-size: 34px; margin-bottom: 12px; }
.hero-text p { color: #fff; line-height: 1.7; margin-bottom: 20px; }

.hero-details p {
  color: #333;
  margin-bottom: 8px;
}
.hero-details i { color: #fdbd54; margin-right: 8px; }

.hero-map {
  flex: 1;
  min-width: 320px;
}
.hero-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 12px;
}

/* IMPACT COUNTER */
.impact-counter {
  background: linear-gradient(120deg, #1c0732, #2a0d52);
  padding: 70px 0;
  text-align: center;
  color: #fff;
}
.counter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
.counter-item {
  transition: .4s;
}
.counter-item:hover {
  transform: scale(1.1);
}
.counter-item i {
  font-size: 34px;
  color: #fdbd54;
  margin-bottom: 10px;
}
.counter-item h3 {
  font-size: 38px;
  color: #fdbd54;
  font-weight: 700;
}
.counter-item p { font-size: 15px; }

/* INQUIRY SECTION */
.inquiry-section {
  background: linear-gradient(to bottom, #1c0732, #3b1664);
  position: relative;
  text-align: center;
  color: #fff;
  padding: 100px 0;
}
.wave-top, .wave-bottom {
  width: 100%;
  position: absolute;
  left: 0;
}
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }

.inquiry-container {
  width: 85%;
  margin: auto;
  position: relative;
  z-index: 1;
}
.inquiry-container h2 {
  color: #fdbd54;
  font-size: 30px;
  margin-bottom: 40px;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.inquiry-card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.inquiry-card i {
  font-size: 32px;
  color: #fdbd54;
  margin-bottom: 15px;
}
.inquiry-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.2);
}

.inquiry-card p{
    color: #ffd590;
}

/* MESSAGE GLASS FORM */
.message-glass {
  background: linear-gradient(135deg, #fffaf2 60%, #f7f4fc 40%);
  padding: 100px 0;
}
.message-wrap {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 40px;
}
.msg-left {
  flex: 1;
}
.msg-left h2 { color: #1c0732; margin-bottom: 10px; font-size: 30px; }
.msg-left p { color: #555; line-height: 1.7; }

.msg-right {
  flex: 1;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 14px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.msg-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.msg-right input, .msg-right select, .msg-right textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}
.msg-right button {
  background: #fdbd54;
  border: none;
  padding: 12px 25px;
  color: #1c0732;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: .3s;
}
.msg-right button:hover {
  background: #1c0732;
  color: #fff;
}

/* PARTNERS SCROLL */
.partners-scroll {
  background: #f7f4fc;
  padding: 60px 0;
  text-align: center;
}
.partners-scroll h3 {
  color: #1c0732;
  margin-bottom: 25px;
}
.scroll-wrapper {
  overflow: hidden;
  position: relative;
}
.scroll-track {
  display: flex;
  gap: 60px;
  animation: scroll 20s linear infinite;
}
.scroll-track img {
  width: 110px;
  filter: grayscale(100%);
  transition: .3s;
}
.scroll-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media(max-width:768px) {
  .contact-hero-inner, .message-wrap {
    flex-direction: column;
    text-align: center;
  }
  .counter-container { gap: 40px; }
  .scroll-track { animation: scroll 30s linear infinite; }
}


.message-glass {
  background: linear-gradient(135deg, #fffaf2 60%, #f7f4fc 40%);
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

.message-wrap {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.msg-left {
  flex: 1;
  min-width: 280px;
}

.msg-left h2 {
  color: #1c0732;
  margin-bottom: 10px;
  font-size: 30px;
}

.msg-left p {
  color: #555;
  line-height: 1.7;
}

.msg-right {
  flex: 1;
  min-width: 320px;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 14px;
  padding: 30px;
  backdrop-filter: blur(12px);
}

/* --- ASP Controls mimic HTML inputs --- */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 15px;
  color: #333;
  outline: none;
}

.form-textarea {
  resize: none;
}

.btn-submit {
  background: #fdbd54;
  color: #1c0732;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #1c0732;
  color: #fff;
}

/* Responsive */
@media(max-width:768px){
  .message-wrap {
    flex-direction: column;
    text-align: center;
  }
  .msg-right { width: 100%; }
}

/* Go To Top Button */
#goTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  background: #1c0732;
  color: #fdbd54;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Hover Effect */
#goTopBtn:hover {
  background: #fdbd54;
  color: #1c0732;
  transform: translateY(-5px);
}

/* Add a subtle bounce animation on scroll-up */
#goTopBtn.show {
  display: flex;
  animation: fadeIn 0.4s ease-in;
}

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

/* Responsive */
@media (max-width: 600px) {
  #goTopBtn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 20px;
    right: 20px;
  }
}
