/*=================================
  ISIGEF - Custom Styles
  Colors: #0C4A9A, #E19A61, #000000, #FFFFFF
==================================*/

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary-blue: #0c4a9a;
  --accent-copper: #e19a61;
  --black: #000000;
  --white: #ffffff;

  /* Extended Palette */
  --blue-dark: #083366;
  --blue-light: #1565c0;
  --blue-pale: #e3f2fd;
  --copper-dark: #d4844a;
  --copper-light: #edb687;
  --copper-pale: #fff3e8;
  --gray-dark: #2c2c2c;
  --gray-medium: #666666;
  --gray-light: #e0e0e0;
  --gray-pale: #f5f5f5;

  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-xxl: 96px;

  /* Transitions */
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-blue);
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-copper);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: var(--space-xl) 0;
}

/* Utility Classes */
.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-medium);
  margin-bottom: var(--space-lg);
}

/* Buttons */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-accent {
  background-color: var(--accent-copper);
  color: var(--white);
}

.btn-accent:hover {
  background-color: var(--copper-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 154, 97, 0.3);
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 74, 154, 0.3);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

.btn-outline-primary {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
}

.logo-primary {
  color: var(--primary-blue);
}

.logo-accent {
  color: var(--accent-copper);
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent-copper);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Replace everything about the old background */
  background:
    linear-gradient(rgba(19, 76, 150, 0.6), rgba(19, 76, 150, 0.6)),
    url("https://i.ibb.co/gM7tm1pz/IMG-20251110-204107.jpg");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  color: var(--white);
  overflow: hidden;
}

/* Optional: keep overlay if you want extra depth */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 82, 150, 0.45);
}

/* .hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    170deg,
    var(--primary-blue) 0%,
    var(--blue-dark) 100%
  );
  background-image: url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23E19A61" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(19, 76, 150, 0.7);
} */

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: var(--space-lg);
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 5px; /* space between image and text */
}

.logo-wrap img {
  height: 50px; /* adjust this to fit your navbar height */
  width: auto;
  object-fit: contain;
}

.hero-buttons {
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* ============================================
   ABOUT PREVIEW SECTION - Homepage
   ============================================ */

.about-preview-section {
  padding: 80px 0;
}

.about-preview-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.image-placeholder {
  background: var(--gray-pale);
  border-radius: 12px;
  padding: 100px 40px;
  text-align: center;
  border: 2px dashed var(--gray-light);
}

.image-placeholder i {
  font-size: 5rem;
  color: var(--accent-copper);
}

.about-preview-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.about-preview-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.section-badge {
  display: inline-block;
  background: var(-copper-pale);
  color: var(--accent-copper);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.about-preview-content .section-title {
  font-size: 2rem;
  color: var(--primary-blue);
  line-height: 1.3;
}

.lead-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-medium);
}

/* Key Points */
.key-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.key-point-item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 12px;
  background: var(--gray-pale);
  border-radius: 8px;
  transition: var(--transition);
}

.key-point-item:hover {
  background: var(--blue-pale);
  transform: translateX(5px);
}

.key-point-item i {
  color: var(--accent-copper);
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.key-point-item strong {
  color: var(--primary-blue);
}

/* Quick Stats */
.quick-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.quick-stat-item {
  text-align: center;
}

.quick-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-copper);
  line-height: 1;
  margin-bottom: 8px;
}

.quick-stat-label {
  font-size: 0.875rem;
  color: var(--gray-medium);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .about-preview-section {
    padding: 60px 0;
  }

  .about-preview-content .section-title {
    font-size: 1.5rem;
  }

  .quick-stats {
    justify-content: space-between;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* ============================================
   ABOUT PREVIEW SECTION - Homepage
   ============================================ */

.about-preview-section {
  padding: 100px 0;
}

.about-preview-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.image-placeholder {
  background: var(--gray-pale);
  border-radius: 12px;
  padding: 100px 40px;
  text-align: center;
  border: 2px dashed var(--gray-light);
}

.image-placeholder i {
  font-size: 5rem;
  color: var(--accent-copper);
}

.about-preview-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.about-preview-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.section-badge {
  display: inline-block;
  background: var(--copper-pale);
  color: var(--accent-copper);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.about-preview-content .section-title {
  font-size: 2rem;
  color: var(--primary-blue);
  line-height: 1.3;
}

.lead-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-medium);
}

/* Key Points */
.key-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.key-point-item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 12px;
  background: var(--gray-pale);
  border-radius: 8px;
  transition: var(--transition);
}

.key-point-item:hover {
  background: var(--blue-pale);
  transform: translateX(5px);
}

.key-point-item i {
  color: var(--accent-copper);
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.key-point-item strong {
  color: var(--primary-blue);
}

/* Quick Stats */
.quick-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.quick-stat-item {
  text-align: center;
}

.quick-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-copper);
  line-height: 1;
  margin-bottom: 8px;
}

.quick-stat-label {
  font-size: 0.875rem;
  color: var(--gray-medium);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .about-preview-section {
    padding: 60px 0;
  }

  .about-preview-content .section-title {
    font-size: 1.5rem;
  }

  .quick-stats {
    justify-content: space-between;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--white);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Pathways Section */
.pathways-section {
  background-color: var(--white);
}

.pathway-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.pathway-card:hover {
  border-color: var(--accent-copper);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.pathway-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pathway-icon i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.pathway-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.pathway-card p {
  color: var(--gray-medium);
  margin-bottom: var(--space-md);
}

.pathway-link {
  color: var(--accent-copper);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.pathway-link:hover {
  color: var(--copper-dark);
  text-decoration: underline;
}

/* Stats Section */
.stats-section {
  background: var(--primary-blue);
  color: var(--white);
  padding: var(--space-xl) 0;
}

.stat-card {
  text-align: center;
}

.stat-icon {
  margin-bottom: var(--space-md);
}

.stat-icon i {
  font-size: 3rem;
  color: var(--accent-copper);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* Programs Section */
.programs-section {
  background: var(--gray-pale);
}

.program-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: var(--space-lg);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.program-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.program-icon {
  width: 80px;
  height: 80px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.program-icon i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.program-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-copper);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.program-card p {
  color: var(--gray-medium);
  margin-bottom: var(--space-md);
}

.program-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.program-features li {
  padding: 8px 0;
  color: var(--gray-dark);
}

.program-features i {
  color: var(--accent-copper);
  margin-right: 8px;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-blue);
  border-radius: 50%;
  padding: 20px;
}

.carousel-indicators button {
  background-color: var(--accent-copper);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Values Section */
.values-section {
  background: var(--primary-blue);
  color: var(--white);
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.value-icon {
  margin-bottom: var(--space-md);
}

.value-icon i {
  font-size: 3rem;
  color: var(--accent-copper);
}

.value-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.value-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--blue-dark) 100%
  );
  color: var(--white);
  padding: var(--space-xxl) 0;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: var(--space-lg);
}

/* Newsletter Section */
.newsletter-section {
  background: var(--gray-pale);
}

.newsletter-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.newsletter-card h3 {
  margin-bottom: 8px;
}

.newsletter-form .form-control {
  border: 1px solid var(--gray-light);
  padding: 12px 16px;
  border-radius: 8px 0 0 8px;
}

.newsletter-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px var(--blue-pale);
}

.newsletter-form .btn {
  border-radius: 0 8px 8px 0;
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: var(--space-xl) 0 0;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
}

.footer-tagline {
  color: var(--accent-copper);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.footer-section h5 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-copper);
  padding-left: 5px;
}

.footer-contact i {
  color: var(--accent-copper);
  margin-right: 8px;
  width: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent-copper);
  transform: translateY(-3px);
}

.footer-bottom {
  background: var(--blue-dark);
  padding: var(--space-md) 0;
  margin-top: var(--space-xl);
}

.footer-bottom p,
.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-link:hover {
  color: var(--accent-copper);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: #128c7e;
  color: var(--white);
  transform: scale(1.1);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--accent-copper);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(225, 154, 97, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.scroll-top.show {
  display: flex;
}

.scroll-top:hover {
  background: var(--copper-dark);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-nav {
    padding: 20px 0;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-lg) 0;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .scroll-top {
    bottom: 80px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ========================================
   SUCCESS STORIES SECTION - BOOTSTRAP VERSION
======================================== */

.success-stories {
  background: linear-gradient(
    135deg,
    var(--blue-pale) 0%,
    var(--copper-pale) 100%
  );
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.success-stories::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(225, 154, 97, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-50px, 50px);
  }
}

/* Section Header */
.success-stories .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.success-stories .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-blue) 0%,
    var(--accent-copper) 100%
  );
  border-radius: 2px;
}

.success-stories .section-subtitle {
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   CAROUSEL CONTAINER
======================================== */

.success-slider-container {
  padding: var(--space-md) 0;
}

.carousel-inner {
  padding: 10px 0;
}

.carousel-item {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   SUCCESS CARDS
======================================== */

.success-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.success-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 48px rgba(12, 74, 154, 0.18);
}

/* Image Container */
.success-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  flex-shrink: 0;
}

.success-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-card:hover .success-image img {
  transform: scale(1.1) rotate(1deg);
}

/* Gradient Overlay */
.success-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(
    to top,
    rgba(12, 74, 154, 0.85) 0%,
    rgba(12, 74, 154, 0.5) 50%,
    transparent 100%
  );
  transition: all 0.4s ease;
}

.success-card:hover .success-overlay {
  background: linear-gradient(
    to top,
    rgba(225, 154, 97, 0.85) 0%,
    rgba(12, 74, 154, 0.6) 50%,
    transparent 100%
  );
}

/* Content Container */
.success-content {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Bootstrap Badge Customization */
.success-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
  width: fit-content;
}

.badge-award {
  background: linear-gradient(135deg, var(--accent-copper), var(--copper-dark));
  color: var(--white);
}

.badge-training {
  background: linear-gradient(135deg, var(--primary-blue), var(--blue-dark));
  color: var(--white);
}

.success-badge i {
  font-size: 0.85rem;
}

/* Text Content */
.success-name {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

.success-program {
  font-size: 0.9rem;
  color: var(--accent-copper);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.success-quote {
  font-size: 0.95rem;
  color: var(--gray-medium);
  font-style: italic;
  line-height: 1.7;
  position: relative;
  padding-left: var(--space-sm);
  border-left: 3px solid var(--accent-copper);
  margin-top: auto;
}

.success-quote::before {
  content: '"';
  position: absolute;
  left: -5px;
  top: -10px;
  font-size: 2rem;
  color: var(--accent-copper);
  opacity: 0.3;
  font-family: Georgia, serif;
}

/* ========================================
   CAROUSEL CONTROLS (CUSTOM STYLED)
======================================== */

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.slider-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  transition: all var(--transition);
  color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev:hover .slider-nav-icon,
.carousel-control-next:hover .slider-nav-icon {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(12, 74, 154, 0.3);
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

/* ========================================
   CAROUSEL INDICATORS (DOTS)
======================================== */

.carousel-indicators {
  position: relative !important;
  margin: var(--space-lg) 0 0 0 !important;
  bottom: auto !important;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  opacity: 1;
  transition: all var(--transition);
  margin: 0 6px;
}

.carousel-indicators [data-bs-target]:hover {
  background: var(--accent-copper);
  transform: scale(1.3);
}

.carousel-indicators .active {
  background: var(--primary-blue);
  width: 36px;
  border-radius: 6px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Large Desktop */
@media (min-width: 1400px) {
  .success-image {
    height: 360px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .success-image {
    height: 280px;
  }

  .carousel-control-prev {
    left: -15px;
  }

  .carousel-control-next {
    right: -15px;
  }

  .slider-nav-icon {
    width: 45px;
    height: 45px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .success-stories {
    padding: var(--space-xl) 0;
  }

  .success-image {
    height: 260px;
  }

  .success-name {
    font-size: 1.25rem;
  }

  .success-quote {
    font-size: 0.9rem;
  }

  .carousel-control-prev {
    left: 5px;
  }

  .carousel-control-next {
    right: 5px;
  }

  .slider-nav-icon {
    width: 40px;
    height: 40px;
  }

  .slider-nav-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .success-content {
    padding: var(--space-sm);
  }

  .success-image {
    height: 240px;
  }

  .success-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
}

/* ========================================
   ANIMATIONS
======================================== */

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

.success-card {
  animation: fadeInUp 0.8s ease-out backwards;
}

.carousel-item.active .success-card:nth-child(1) {
  animation-delay: 0.1s;
}

.carousel-item.active .success-card:nth-child(2) {
  animation-delay: 0.2s;
}

.carousel-item.active .success-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Smooth carousel transitions */
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   TESTIMONIALS SECTION - 2 CARD SLIDER
======================================== */

.testimonials-section {
  background: linear-gradient(
    135deg,
    var(--gray-pale) 0%,
    var(--blue-pale) 50%,
    var(--copper-pale) 100%
  );
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(12, 74, 154, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatShape 25s ease-in-out infinite;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(225, 154, 97, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatShape 20s ease-in-out infinite reverse;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Section Header */
.testimonials-section .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.testimonials-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-blue) 0%,
    var(--accent-copper) 100%
  );
  border-radius: 2px;
}

.testimonials-section .section-subtitle {
  max-width: 650px;
  margin: 0 auto;
}

/* ========================================
   CAROUSEL CONTAINER
======================================== */

.testimonials-slider-container {
  padding: var(--space-md) 0;
}

.carousel-inner {
  padding: 20px 0;
}

.carousel-item {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   TESTIMONIAL CARDS
======================================== */

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  height: 320px;
  cursor: pointer;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--accent-copper)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 28px 68px rgba(12, 74, 154, 0.22);
}

/* Card Glow Effect */
.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(225, 154, 97, 0.12),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  border-radius: 24px;
}

.testimonial-card:hover .card-glow {
  opacity: 1;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* ========================================
   LEFT SIDE (Photo + Info) - 40%
======================================== */

.testimonial-left {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
  position: relative;
  z-index: 1;
}

/* Profile Image */
.testimonial-image {
  width: 150px;
  height: 200px;
  overflow: hidden;
  position: relative;
  /* border: 1px solid var(--white); */
  box-shadow: 0 10px 30px rgba(12, 74, 154, 0.18);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-image {
  border-color: var(--accent-copper);
  box-shadow: 0 16px 48px rgba(225, 154, 97, 0.35);
  transform: scale(1.1) rotate(3deg);
}

.testimonial-card:hover .testimonial-image img {
  transform: scale(1.2);
}

/* Image Overlay (appears on hover) */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 74, 154, 0.7),
    rgba(225, 154, 97, 0.7)
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial-card:hover .image-overlay {
  opacity: 1;
}

/* Testimonial Info */
.testimonial-info {
  text-align: center;
  margin-top: var(--space-md);
}

.testimonial-name {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin-bottom: 6px;
  font-weight: 700;
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-name {
  color: var(--accent-copper);
  transform: translateY(-2px);
}

.testimonial-program {
  font-size: 0.9rem;
  color: var(--gray-medium);
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  padding-top: 8px;
}

.testimonial-program::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--accent-copper);
  transition: width 0.4s ease;
}

.testimonial-card:hover .testimonial-program::before {
  width: 50px;
}

/* ========================================
   RIGHT SIDE (Quote) - 60%
======================================== */

.testimonial-right {
  width: 60%;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--white);
  transition: all 0.6s ease;
}

/* Glassmorphism Effect on Hover */
.testimonial-card:hover .testimonial-right {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 5rem;
  color: var(--accent-copper);
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
  transition: all 0.6s ease;
  pointer-events: none;
}

.testimonial-card:hover .quote-icon {
  opacity: 0.15;
  transform: scale(1.2) rotate(-8deg);
  color: var(--primary-blue);
}

/* Quote Text */
.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-dark);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin: 0;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--primary-blue),
    var(--accent-copper)
  );
  border-radius: 2px;
  transition: height 0.6s ease 0.2s;
}

.testimonial-card:hover .testimonial-quote {
  transform: translateY(-8px);
  color: var(--primary-blue);
  padding-left: 20px;
}

.testimonial-card:hover .testimonial-quote::before {
  height: 100%;
}

/* ========================================
   CAROUSEL NAVIGATION
======================================== */

.carousel-control-prev,
.carousel-control-next {
  width: 70px;
  height: 70px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.testimonial-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 3px solid var(--primary-blue);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--primary-blue);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.carousel-control-prev:hover .testimonial-nav-icon,
.carousel-control-next:hover .testimonial-nav-icon {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.15);
  box-shadow: 0 12px 32px rgba(12, 74, 154, 0.35);
  border-color: var(--accent-copper);
}

.testimonial-nav-prev {
  left: -28px;
}

.testimonial-nav-next {
  right: -28px;
}

/* ========================================
   CAROUSEL INDICATORS (DOTS)
======================================== */

.carousel-indicators {
  position: relative !important;
  margin: var(--space-lg) 0 0 0 !important;
  bottom: auto !important;
}

.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 8px;
}

.carousel-indicators [data-bs-target]:hover {
  background: var(--accent-copper);
  transform: scale(1.4);
}

.carousel-indicators .active {
  background: var(--primary-blue);
  width: 40px;
  border-radius: 8px;
}

/* ========================================
   STATS SECTION
======================================== */

.testimonial-stats {
  background: var(--white);
  border-radius: 24px;
  padding: var(--space-lg) var(--space-md);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.testimonial-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--accent-copper),
    var(--primary-blue)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.stat-item {
  padding: var(--space-sm);
  transition: transform 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--accent-copper)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray-medium);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  margin-top: var(--space-xs);
  font-family: var(--font-heading);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Large Desktop */
@media (min-width: 1400px) {
  .testimonial-card {
    height: 360px;
  }

  .testimonial-image {
    width: 160px;
    height: 160px;
  }

  .testimonial-quote {
    font-size: 1.125rem;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .testimonial-card {
    height: 300px;
  }

  .testimonial-image {
    width: 110px;
    height: 110px;
  }

  .testimonial-name {
    font-size: 1.125rem;
  }

  .testimonial-quote {
    font-size: 0.95rem;
  }

  .quote-icon {
    font-size: 4rem;
  }

  .testimonial-nav-prev {
    left: -20px;
  }

  .testimonial-nav-next {
    right: -20px;
  }

  .stat-number {
    font-size: 3rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    height: auto;
    min-height: 420px;
  }

  .testimonial-left {
    width: 100%;
    padding: var(--space-md);
  }

  .testimonial-right {
    width: 100%;
    padding: var(--space-md);
  }

  .testimonial-image {
    width: 120px;
    height: 120px;
  }

  .testimonial-nav-prev {
    left: 10px;
  }

  .testimonial-nav-next {
    right: 10px;
  }

  .testimonial-nav-icon {
    width: 44px;
    height: 44px;
  }

  .testimonial-nav-icon svg {
    width: 20px;
    height: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .testimonials-section {
    padding: var(--space-xl) 0;
  }

  .testimonial-card {
    min-height: 400px;
  }

  .testimonial-image {
    width: 100px;
    height: 100px;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }

  .quote-icon {
    font-size: 3rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ========================================
   ENTRANCE ANIMATIONS
======================================== */

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.carousel-item.active .testimonial-card {
  animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.carousel-item.active .testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}

.carousel-item.active .testimonial-card:nth-child(2) {
  animation-delay: 0.3s;
}

/* Smooth carousel transitions */
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
