/* ===== POPUP CONTACT FORM ===== */
.popup-contact-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  padding: 0;
}
.popup-contact-box {
  background: #fff;
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  min-height: 340px;
  padding: 24px 18px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  animation: popupIn 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.popup-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}
.popup-contact-content {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}
.popup-contact-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-contact-img img {
  max-width: 180px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.popup-contact-form {
  flex: 2;
}
.popup-contact-form .section-label {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.popup-contact-form .section-subtext {
  font-size: 15px;
  color: #888;
  margin-bottom: 18px;
}
.popup-contact-form .submit-btn {
  background: #E8402A;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 0;
  width: 100%;
  margin-top: 18px;
  transition: background 0.2s;
}
.popup-contact-form .submit-btn:hover {
  background: #A70000;
}
@media (max-width: 768px) {
  .popup-contact-box {
    padding: 16px 6px;
    max-width: 98vw;
  }
  .popup-contact-content {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .popup-contact-img {
    justify-content: center;
    margin-bottom: 12px;
  }
  .popup-contact-img img {
    max-width: 120px;
    margin: 0 auto;
  }
  .popup-contact-form {
    flex: unset;
  }
  .popup-close {
    top: 8px;
    left: 8px;
    font-size: 22px;
  }
}

/* ===== SMALL HORIZONTAL POPUP CONTACT FORM ===== */
.popup-contact-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  padding: 0;
}
.popup-contact-box {
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  min-height: 220px;
  padding: 18px 12px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  animation: popupIn 0.3s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.popup-contact-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.popup-contact-img {
  display: none;
}
.popup-contact-form {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.popup-contact-form .submit-btn {
  width: 100%;
}
@media (max-width: 768px) {
  .popup-contact-box {
    max-width: 98vw;
    min-height: unset;
    padding: 8px 2px;
    flex-direction: column;
  }
  .popup-contact-content {
    flex-direction: column;
    gap: 8px;
  }
  .popup-contact-form {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== GLOBAL ===== */
body {
  font-family: 'Hubot Sans', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
}

p, span, a, li, td, th, label, input, textarea, select, button {
  font-family: 'Hubot Sans', sans-serif;
}

.btn, .badge, .card-title, .section-title, .stat-item h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #E8402A;
  color: #FFFFFF;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar i {
  margin-right: 6px;
}

.top-right a {
  color: #FFFFFF;
  margin-left: 12px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.top-right a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
/* lock navbar height */
.main-navbar {
  background: #F7F6EC;
  height: 80px;              /* navbar fixed height */
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}/* keep container full height */
.main-navbar .container-fluid {
  height: 100%;
  display: flex;
  align-items: center;
}


.main-navbar.scrolled {
  /* padding: 12px 0; */
  background: rgba(247,246,236,0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* increase logo size without increasing navbar */
.navbar-brand img {
  height: 120px;              /* increase logo size */
  width: auto;
  object-fit: contain;
}
/* remove extra spacing */
.navbar-brand {
  padding: 0;
  margin: 0;
}
/* keep menu vertically centered */
.navbar-nav {
  align-items: center;
}
.navbar-brand strong {
  font-size: 20px;
  letter-spacing: 1px;
}

.navbar-brand small {
  font-size: 12px;
  letter-spacing: 2px;
  color: #000000;
}

.nav-link {
  color: #000000;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-bottom: 3px solid transparent;
}

.nav-link:hover {
  color: #E8402A;
  border-bottom-color: #E8402A;
}

.nav-link.active {
  color: #E8402A;
  font-weight: 600;
  border-bottom-color: #E8402A;
}

.nav-link:hover {
  color: #000000;
}

.btn-apply {
  background: #E8402A;
  color: #FFFFFF;
  border-radius: 30px;
  padding: 10px 22px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-apply:hover {
  background: #A70000;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(232,64,42,0.4);
}

/* ===== DROPDOWN MENU ===== */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  background: white;
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-radius: 0;
  padding: 0;
  margin-top: 0;
  display: none;
  min-width: 250px;
  animation: fadeIn 0.3s ease;
}

.dropdown-item {
  padding: 12px 25px;
  transition: all 0.3s ease;
  color: #000000;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid #F7F6EC;
  position: relative;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25px;
  right: 25px;
  height: 2px;
  background: #E8402A;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.dropdown-item:hover {
  background: #FAEBD7;
  color: #E8402A;
}

.dropdown-item:hover::after {
  transform: scaleX(1);
}

.dropdown-item.active {
  color: #E8402A;
  font-weight: 600;
}

.dropdown-item.active::after {
  transform: scaleX(1);
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  content: "";
  border-top: 5px solid;
  border-right: 4px solid transparent;
  border-bottom: 0;
  border-left: 4px solid transparent;
}

.nav-item.dropdown:hover .nav-link {
  border-bottom: 3px solid #E8402A;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: none;
}

.hero-section .carousel,
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item,
.hero-section img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 40, 0.45),
    rgba(10, 15, 40, 0.65)
  );
}

.hero-content {
  position: relative;
  color: #FFFFFF;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,64,42,0.25);
  padding: 10px 22px;
  border-radius: 30px;
  margin-bottom: 30px;
  font-size: 15px;
  animation: fadeIn 1.2s ease-out 0.3s both;
  border: 1px solid rgba(240,140,28,0.4);
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.2s both;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #F08C1C;
}

.hero-subheading {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.95;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-intro {
  margin-top: 20px;
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content p {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-dark-primary {
  background: #E8402A;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.btn-dark-primary:hover {
  background: #A70000;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(232,64,42,0.4);
}

.btn-outline-light {
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.6);
  color: #FFFFFF;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .navbar-brand small {
    display: none;
  }
}
/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 100px 0;
  background: #FAEBD7;
}

.trust-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.trust-desc {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* FEATURES GRID */
.trust-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.icon-box {
  width: 46px;
  height: 46px;
  background: #F7F6EC;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #E8402A;
  border: 2px solid #E8402A;
}

.feature-item h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  color: #000000;
  margin: 0;
}

/* IMAGE BLOCK */
.trust-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  padding-left: 40px;
}

.trust-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.5s ease;
  overflow: hidden;
}

.trust-image-wrapper:hover img {
  transform: scale(1.05);
}

/* BADGE */
.trust-badge {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: linear-gradient(135deg, #E8402A, #F08C1C);
  color: #FFFFFF;
  padding: 24px 26px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(232,64,42,0.5);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

.trust-badge h3 {
  font-size: 32px;
  margin-bottom: 4px;
  font-weight: 700;
}

.trust-badge span {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.8;
  text-transform: uppercase;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .trust-title {
    font-size: 30px;
  }

  .trust-features {
    grid-template-columns: 1fr;
  }

  .trust-image-wrapper {
    padding-left: 20px;
  }
  
  .trust-badge {
    left: 0;
    bottom: 16px;
  }
}
/* ===== PROGRAMS SECTION ===== */
.programs-section {
  padding: 100px 0;
  background: #F7F6EC;
}

/* HEADER */
.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 50px;
}

.programs-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.programs-header p {
  max-width: 600px;
  color: #000000;
  font-size: 16px;
}

.view-all {
  font-weight: 600;
  color: #E8402A;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.view-all:hover {
  color: #A70000;
}

.view-all i {
  margin-left: 6px;
}

/* CARD */
.program-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  border: 1px solid #F7F6EC;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15,18,32,0.02) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.program-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-8px);
  border-color: rgba(15,18,32,0.1);
}

.program-card:hover::before {
  opacity: 1;
}

/* CARD TOP */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.tag {
  background: #FAEBD7;
  color: #E8402A;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.duration {
  font-size: 14px;
  color: #000000;
}

/* CONTENT */
.program-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.program-card p {
  font-size: 15px;
  color: #000000;
  line-height: 1.7;
}

.program-card h6 {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
}

/* LIST */
.program-card ul {
  padding-left: 18px;
  margin-top: 12px;
  margin-bottom: 30px;
}

.program-card ul li {
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
}

/* LINK */
.details-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E8402A;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.details-link:hover {
  background: #A70000;
  transform: translateX(5px);
  gap: 14px;
  color: white;
}

.details-link i {
  transition: transform 0.3s ease;
}

.details-link:hover i {
  transform: translateX(4px);
}

/* MOBILE */
@media (max-width: 768px) {
  .programs-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .programs-header h2 {
    font-size: 30px;
  }
}
/* ===== LEARNING ENVIRONMENT SECTION ===== */
.learning-section {
  padding: 100px 0;
  background: #FFFFFF;
}

/* HEADER */
.learning-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.learning-header p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 50px;
}

/* CARDS WRAPPER */
.learning-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.learning-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.learning-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.15)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: background 0.4s ease;
}

.card-overlay h5 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.card-overlay p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* HOVER */
.learning-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.learning-card:hover img {
  transform: scale(1.1);
}

.learning-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.4)
  );
}

.learning-card:hover .card-overlay h5 {
  transform: translateY(-5px);
}

.learning-card:hover .card-overlay p {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .learning-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .learning-header h2 {
    font-size: 30px;
  }

  .learning-cards {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .learning-card {
    min-width: 260px;
    height: 240px;
    flex-shrink: 0;
  }
}
/* ===== VOICES SECTION ===== */
.voices-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
  color: #ffffff;
}

/* HEADER */
.voices-header h2 {
  color: black;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.voices-header p {
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* CARDS WRAPPER */
.voices-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.voice-card {
  background: #ffffff;
  color: #000000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  max-width: 550px;
  margin: 0 auto;
  transition: all 0.4s ease;
  border: 2px solid #F7F6EC;
  display: flex;
  flex-direction: column;
}

.voice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(232,64,42,0.2);
  border-color: #E8402A;
}

/* IMAGE */
.voice-image {
  width: 100%;
  height: 380px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.voice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.voice-card:hover .voice-image img {
  transform: scale(1.1);
}

/* CONTENT */
.voice-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.voice-content h5 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 8px;
  color: #000000;
}

.voice-content small {
  display: block;
  color: #E8402A;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 13px;
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #E8402A, #F08C1C);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
}

.badge i {
  font-size: 13px;
}

/* QUOTE */
.quote {
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
  font-style: italic;
  margin: 0;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #E8402A;
}

/* MOBILE */
@media (max-width: 992px) {
  .voices-cards {
    grid-template-columns: 1fr;
  }
  
  .voices-header h2 {
    font-size: 30px;
  }

  .voice-image {
    height: 380px;
  }

  .voice-content {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .voice-image {
    height: 380px;
  }

  .voice-content h5 {
    font-size: 19px;
  }

  .quote {
    font-size: 14px;
  }
}
/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: #FAEBD7;
}

.cta-wrapper {
  background: #F7F6EC;
  border-radius: 40px;
  padding: 70px;
}

/* LEFT */
.cta-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 16px;
  color: #000000;
  max-width: 520px;
  margin-bottom: 34px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-cta,
.btn-outline-cta {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-cta:hover,
.btn-outline-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-primary-cta {
  background: #E8402A;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(232,64,42,0.4);
}

.btn-primary-cta:hover {
  background: #A70000;
}

.btn-outline-cta {
  background: #ffffff;
  border: 1px solid #F7F6EC;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  color: #000000;
}

/* RIGHT */
.cta-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cta-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.cta-card i {
  font-size: 26px;
  margin-bottom: 14px;
  color: #E8402A;
}

.cta-card h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-card p {
  font-size: 14px;
  color: #000000;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-wrapper {
    padding: 40px 24px;
    border-radius: 28px;
  }

  .cta-title {
    font-size: 30px;
  }

  .cta-cards {
    grid-template-columns: 1fr;
  }
}
/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #000000, #000000);
  color: #FFFFFF;
  padding: 90px 0 40px;
}

/* BRAND */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 55px;
}

.footer-brand span {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

/* TEXT */
.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
}

/* TITLES */
.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #FFFFFF;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

/* CONTACT */
.footer-contact {
  font-size: 14px;
  margin-bottom: 12px;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 50px 0 30px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #FFFFFF;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    gap: 16px;
    flex-wrap: wrap;
  }
}

/* ===== WHY VIJETHA SECTION ===== */
.why-vijetha-section {
  padding: 100px 0;
  background: white;
}

.section-heading {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.why-card {
  background: #F7F6EC;
  padding: 40px 25px;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./assets/img/home/why/why-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.col-lg-3:nth-child(1) .why-card::before {
  background-image: url('./assets/img/home/why/why-1.jpg');
}

.col-lg-3:nth-child(2) .why-card::before {
  background-image: url('./assets/img/home/why/why-2.jpg');
}

.col-lg-3:nth-child(3) .why-card::before {
  background-image: url('./assets/img/home/why/why-3.jpg');
}

.col-lg-3:nth-child(4) .why-card::before {
  background-image: url('./assets/img/home/why/why-4.jpg');
}

.col-lg-3:nth-child(5) .why-card::before {
  background-image: url('./assets/img/home/why/why-5.jpg');
}

.col-lg-3:nth-child(6) .why-card::before {
  background-image: url('./assets/img/home/why/why-6.jpg');
}

.col-lg-3:nth-child(7) .why-card::before {
  background-image: url('./assets/img/home/why/why-7.jpg');
}

.col-lg-3:nth-child(8) .why-card::before {
  background-image: url('./assets/img/home/why/why-8.jpg');
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232,64,42,0.85), rgba(240,140,28,0.85));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.why-card > * {
  position: relative;
  z-index: 3;
  transition: color 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #E8402A;
  box-shadow: 0 15px 40px rgba(232,64,42,0.15);
}

.why-card:hover::before,
.why-card:hover::after {
  opacity: 1;
}

.why-card:hover h5,
.why-card:hover p {
  color: #FFFFFF;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E8402A, #F08C1C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-icon i {
  font-size: 32px;
  color: white;
}

.why-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.4;
}

.why-card p {
  font-size: 14px;
  color: #000000;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .section-heading {
    font-size: 32px;
  }
  
  .why-vijetha-section {
    padding: 70px 0;
  }
  
  .why-card {
    min-height: 250px;
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .why-card {
    min-height: auto;
    margin-bottom: 20px;
  }
}

/* ===== VIJETHA REIMAGINED SECTION ===== */
.reimagined-section {
  padding: 100px 0;
  background: #F7F6EC;
}

.reimagined-content .section-badge {
  display: inline-block;
  background: rgba(232,64,42,0.1);
  color: #E8402A;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(232,64,42,0.2);
}

.reimagined-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

.reimagined-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 40px;
}

.reimagined-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.reimagined-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.reimagined-feature i {
  font-size: 28px;
  color: #E8402A;
  min-width: 40px;
  margin-top: 5px;
}

.reimagined-feature h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000000;
}

.reimagined-feature p {
  font-size: 15px;
  color: #000000;
  margin: 0;
}

.reimagined-visual {
  position: relative;
  padding-left: 40px;
}

.reimagined-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.reimagined-stat-box {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: white;
  padding: 30px 35px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border-left: 4px solid #E8402A;
}

.reimagined-stat-box h3 {
  font-size: 48px;
  font-weight: 800;
  color: #E8402A;
  margin: 0;
}

.reimagined-stat-box p {
  font-size: 14px;
  color: #000000;
  margin: 5px 0 0 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .reimagined-visual {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .reimagined-content h2 {
    font-size: 32px;
  }
  
  .reimagined-stat-box {
    bottom: 20px;
    left: 20px;
    padding: 20px 25px;
  }
  
  .reimagined-stat-box h3 {
    font-size: 36px;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 100px 0;
  background: #FAEBD7;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 35px 30px;
  border-radius: 20px;
  height: 100%;
  border: 2px solid #F7F6EC;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #E8402A;
  box-shadow: 0 15px 40px rgba(232,64,42,0.15);
}

.testimonial-quote {
  margin-bottom: 20px;
}

.testimonial-quote i {
  font-size: 36px;
  color: #E8402A;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 25px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 2px solid #F7F6EC;
}

.author-image {
  flex-shrink: 0;
}

.author-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #E8402A;
  object-fit: cover;
}

.author-info h6 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 13px;
  color: #000000;
  margin-bottom: 8px;
  opacity: 0.7;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
}

.testimonial-rating i {
  font-size: 12px;
  color: #F08C1C;
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 50px 0;
  }
}
