/* assets/css/styles.css */

/* Import Google Fonts - Easy to change later */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

/* CSS Variables */
:root {
  --navy-blue: #293850;
  --primary-blue: #003d7c;
  --primary-red: #c60c30;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #f5f5f5;
  --light-white: #f5f5f5;
  --white: #ffffff;
  --black: #000000;
  --text-dark: #293850;
  --hover-gold: #d9b263;
  --text-gold: #d9b263;
  --light-gold: #f2e4c0;
  --dark-green: #01362d;
  --dark-green-80: #001713;
  --light-green: #a4e6b4;
  --secondary-green: #02352a;
  --tertiary-green: #00614d;
  --dark-green-gradient: linear-gradient(45deg, #161d1c, #00654c);
  --dark-green-gradient2: linear-gradient(135deg, #00604c, #00634e);
  --gradient-text-gold: linear-gradient(
    135deg,
    #fff5c6,
    #e0c080,
    #b88f4a,
    #7d5930
  );

  /* Font Variables - Easy to change later */
  --primary-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  --secondary-font: var(--primary-font);

  /* Font Sizes */
  --fs-1: clamp(0.875rem, 0.9rem + 0.3vw, 1rem);
  --fs-2: clamp(1.1rem, 1rem + 0.5vw, 1.333rem);
  --fs-3: clamp(1.4rem, 1.2rem + 0.8vw, 1.777rem);
  --fs-4: clamp(1.8rem, 1.4rem + 1.2vw, 2.369rem);
  --fs-5: clamp(2.4rem, 1.6rem + 2vw, 3.157rem);
  --fs-small: clamp(0.7rem, 0.6rem + 0.3vw, 0.75rem);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--primary-font);
  color: var(--dark-gray);
  padding-top: 80px;
  line-height: 1.6;
}

hr {
  margin-block: 1rem;
}

/* Remove underline from all links */
a {
  text-decoration: none;
  color: inherit;
}

/* Container System */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* Column alignment utilities */
.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.w-100 {
  width: 100%;
}

/* Extra small devices (phones, 576px and down) */
.col-1 {
  width: 8.333333%;
}
.col-2 {
  width: 16.666667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.333333%;
}
.col-5 {
  width: 41.666667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.333333%;
}
.col-8 {
  width: 66.666667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.333333%;
}
.col-11 {
  width: 91.666667%;
}
.col-12 {
  width: 100%;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  padding: 0 15px;
  margin-bottom: 30px;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .col-sm-1 {
    width: 8.333333%;
  }
  .col-sm-2 {
    width: 16.666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.333333%;
  }
  .col-sm-5 {
    width: 41.666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.333333%;
  }
  .col-sm-8 {
    width: 66.666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.333333%;
  }
  .col-sm-11 {
    width: 91.666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .col-md-1 {
    width: 8.333333%;
  }
  .col-md-2 {
    width: 16.666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.333333%;
  }
  .col-md-5 {
    width: 41.666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.333333%;
  }
  .col-md-8 {
    width: 66.666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.333333%;
  }
  .col-md-11 {
    width: 91.666667%;
  }
  .col-md-12 {
    width: 100%;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .col-lg-1 {
    width: 8.333333%;
  }
  .col-lg-2 {
    width: 16.666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.333333%;
  }
  .col-lg-5 {
    width: 41.666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.333333%;
  }
  .col-lg-8 {
    width: 66.666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.333333%;
  }
  .col-lg-11 {
    width: 91.666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .col-xl-1 {
    width: 8.333333%;
  }
  .col-xl-2 {
    width: 16.666667%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.333333%;
  }
  .col-xl-5 {
    width: 41.666667%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.333333%;
  }
  .col-xl-8 {
    width: 66.666667%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.333333%;
  }
  .col-xl-11 {
    width: 91.666667%;
  }
  .col-xl-12 {
    width: 100%;
  }
}

/* Display utilities */
.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

/* Section Padding */
section {
  padding: 80px 0;
}

/* Navigation */

.navbar {
  background-color: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar-brand {
  position: relative;
  flex-shrink: 0;
  z-index: 1002;
  top: 0.25rem;
  transform: translateX(40%);
}

.navbar-brand img {
  height: 70px;
  transition: height 0.3s ease;
  transform: scale(1.5);
  transform-origin: center;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 240px);
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.navbar-nav-center {
  flex-grow: 1;
  justify-content: center;
}

.navbar-search {
  padding-top: 3px;
  flex-shrink: 0;
}

.nav-item {
  position: relative;
  margin: 0 20px;
}

.nav-link {
  color: var(--secondary-green);
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 0;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
}

.nav-link:hover {
  color: var(--hover-gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--hover-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Search icon styling */
.search-link {
  padding: 12px 8px;
}

.fa-search {
  font-size: 1.2rem;
  color: var(--secondary-green);
  transition: color 0.3s ease;
}

.fa-search:hover {
  color: var(--hover-gold);
}

.navbar-toggle {
  display: flex;
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  flex-direction: column;
  z-index: 1001;
  margin-left: 1rem;
}

.navbar-toggle-icon {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-green);
  margin: 3px 0;
  transition: 0.3s;
}

/* Responsive Navigation */
@media (max-width: 1200px) {
  .nav-item {
    margin: 0 15px;
  }
}

@media (max-width: 1100px) {
  .navbar-collapse {
    width: calc(100% - 220px);
  }

  .nav-item {
    margin: 0 12px;
  }

  .nav-link {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px;
    transform: none;
    width: 100%;
  }

  .navbar-collapse.active {
    display: flex;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
  }

  .navbar-nav-center {
    justify-content: flex-start;
  }

  .nav-item {
    margin: 8px 0;
    width: 100%;
    text-align: left;
  }

  .nav-link::after {
    display: none;
  }

  .navbar-brand img {
    height: 65px;
  }
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 3rem;
  }

  .navbar {
    padding: 12px 0;
  }
}

/* Mega Menu Styles */
#mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mega-menu-container {
  width: 100%;
  height: 100vh;
  background-color: white;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  position: relative;
}

.mega-menu-sidebar {
  width: 100%;
  max-width: 250px;
  background-color: #006b4f;
  color: white;
  padding: 30px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 100%;
  transition: transform 0.3s ease;
  z-index: 2;
}

.mega-menu-sidebar::-webkit-scrollbar {
  width: 6px;
}

.mega-menu-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.mega-menu-sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.mega-menu-sidebar {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.mega-menu-content {
  flex-grow: 1;
  padding: 30px;
  background-color: #f8f9fa;
  overflow-y: auto;
  max-height: 100%;
  transition: transform 0.3s ease;
  transform: translateX(100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.mega-menu-content.open {
  transform: translateX(0);
}

.mega-menu-sidebar {
  transition: transform 0.3s ease;
}

.mega-menu-container .mega-menu-content.open ~ .mega-menu-sidebar {
  transform: translateX(-100%);
}

.close-button {
  position: relative;
  top: 0;
  left: 0;
  background: #006b4f;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding-bottom: 15px;
  text-align: left;
  z-index: 10;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.back-button {
  background: none;
  border: none;
  color: #006b4f;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  margin-bottom: 20px;
  display: none;
}

.main-nav,
.secondary-nav,
.footer-section {
  padding: 0 0 10px 0;
}

.main-nav a,
.secondary-nav a,
.footer-section a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 12px 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #00a67c;
}

.divider {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 20px 0;
}

.section-content {
  display: none;
}

.section-content.active {
  display: block;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.content-column h3 {
  color: #006b4f;
  margin-bottom: 10px;
}

.content-column p {
  margin: 8px 0;
}

.mega-menu-sidebar .social-links {
  display: grid;
  gap: 20px;
  padding-block: 10px;
}

/* Mobile View: Full Screen Slide */
@media (max-width: 768px) {
  .mega-menu-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .mega-menu-sidebar {
    width: 100%;
    max-width: 250px;
    height: 100%;
  }

  .mega-menu-content {
    width: 100%;
    min-width: 0;
  }

  .back-button {
    display: block;
  }

  .close-button {
    display: block;
  }
}

/* Tablet and Desktop */
@media (min-width: 769px) {
  .mega-menu-container {
    width: 80%;
    max-width: 1280px;
    height: 80vh;
    border-radius: 8px;
  }

  .mega-menu-sidebar {
    width: 250px;
    position: relative;
    transform: none;
  }

  .mega-menu-content {
    position: static;
    transform: none;
    width: calc(100% - 250px);
    margin-left: 0;
  }

  .mega-menu-content.open {
    transform: none;
  }

  .back-button {
    display: none;
  }

  .mega-menu-content .content-column:not(:last-child) {
    border-right: #0000006e 1px solid;
  }
}

/* Hero Section */
.hero {
  padding: 0;
  margin-bottom: 0;
  position: relative;
}

.carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.carousel-inner {
  position: relative;
  width: 600%; /* Width for 6 images (3 original + 3 duplicates) */
  height: 100%;
  display: flex;
  animation: infiniteSlide 45s linear infinite; /* Linear for smooth continuous scroll */
}

@keyframes infiniteSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* Move exactly half the width */
}

.carousel-item {
  position: relative;
  display: block;
  height: 100%;
  width: 16.666%; /* Each item takes 1/6 of the container */
  flex-shrink: 0;
}

.carousel-item.active {
  display: block;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.carousel-caption {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 1000px;
  padding: 0;
  z-index: 10;
}

.hero-content {
  width: 100%;
}

.hero-content h1 {
  font-size: 9.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  white-space: nowrap;
}

.hero-content p {
  font-size: 3.2rem;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 400;
  white-space: nowrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  color: var(--text-gold);
  font-weight: 600;
  text-decoration: none;
  padding: 15px 40px;
  border: 2px solid var(--text-gold);
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-hero:hover {
  background-color: var(--text-gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .carousel {
    height: 500px;
  }

  .hero-content h1 {
    font-size: 4rem;
    white-space: normal;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.4rem;
    white-space: normal;
  }
}

/* Section Titles */
.section-title {
  color: var(--secondary-green);
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  font-size: 2.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #00000045;
}

/* Mission Banner Section */
.mission-banner {
  background-color: var(--white);
  padding: 60px 20px;
  text-align: center;
}
.mission-banner h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}
.mission-banner p {
  font-size: 1.8rem;
  color: var(--white);
  margin-top: 10px;
  line-height: 1.6;
}

/* Story Section */
.story-text {
  font-size: 1.2rem;
}
.story-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
}

.story-feature {
  position: relative;
  width: 100%;
  max-width: 350px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-feature-image {
  height: 200px;
  overflow: hidden;
}

.story-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-feature:hover .story-feature-image img {
  transform: scale(1.05);
}

.story-feature-content {
  padding: 25px;
  position: relative;
  z-index: 2;
  background: var(--dark-green-gradient);
}

.story-feature h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.story-feature p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.story-link {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.story-link::after {
  content: "→";
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.story-link:hover {
  color: var(--hover-gold);
}

.story-link:hover::after {
  transform: translateX(4px);
}

/* Responsive design */
@media (max-width: 992px) {
  .story-features {
    gap: 20px;
  }

  .story-feature {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .story-features {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .story-feature {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .story-features {
    padding: 30px 15px;
  }

  .story-feature-content {
    padding: 20px;
  }

  .story-feature h3 {
    font-size: 1.3rem;
  }
}

/* Specializations Section */

.specializations-section {
  padding: 80px 0;
  background-color: var(--white);
}

.specializations-section .section-title::after {
  content: none !important;
}

.specializations-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin: 0;
}

.specializations-header {
  text-align: left;
  margin: 0 auto 50px;
  width: 100%;
}

.section-overline {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 5px;
  font-weight: 500;
}

.specializations-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-top: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}

.specializations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 auto;
  width: 100%;
}

.specialization-item {
  display: flex;
  align-items: center;
  width: calc(50% - 12px);
  margin: 15px 0;
  padding: 15px;
  background-color: var(--white);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialization-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.specialization-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #705ded;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.specialization-item:nth-child(2) .specialization-icon {
  background-color: #f1644c;
}

.specialization-item:nth-child(3) .specialization-icon {
  background-color: #fe9f11;
}

.specialization-item:nth-child(4) .specialization-icon {
  background-color: #0f4089;
}

.specialization-title {
  color: var(--black);
  font-weight: 600;
  font-size: 1.3rem;
  padding-left: 16px;
  margin: 0;
  line-height: 1.4;
}

/* Specializations Section with Larger Container */
.specializations-section .container {
  max-width: 1280px; /* Increased from default 1140px */
  padding: 0 20px;
}

/* Responsive Styles for Specializations Section */
@media (max-width: 1200px) {
  .specializations-wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .specializations-list {
    width: 100%;
    gap: 20px;
  }

  .specialization-item {
    width: calc(50% - 10px);
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .specializations-section {
    padding: 60px 0;
  }

  .specializations-header {
    margin-bottom: 40px;
    text-align: center;
  }

  .specializations-list {
    gap: 16px;
  }

  .specialization-item {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
  }

  .specialization-title {
    font-size: 1.1rem;
  }

  .specializations-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .specializations-section {
    padding: 50px 0;
  }

  .specialization-icon {
    width: 35px;
    height: 35px;
  }

  .specialization-title {
    font-size: 1rem;
    padding-left: 12px;
  }

  .specializations-subtitle {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .specializations-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .specializations-header {
    width: 46%;
    margin: 0;
    text-align: left;
  }

  .specializations-list {
    width: 54%;
    margin: 0;
  }

  .section-title {
    text-align: left;
    margin: 20px 0px;
  }

  .section-title::after {
    left: 0;
    transform: none;
  }
}

/* Programmes Section */
.programmes-section {
  padding: 80px 0;
  background-color: var(--white);
}

.programmes-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.programmes-header {
  text-align: left;
  margin-bottom: 60px;
  margin-left: 0;
  margin-right: auto;
}

.programmes-description {
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin: 20px 0 30px;
  line-height: 1.6;
}

/* Explore Button */
.btn-explore {
  display: inline-flex;
  align-items: center;
  color: var(--text-gold);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid var(--text-gold);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background-color: var(--text-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.icon-arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-explore:hover .icon-arrow {
  transform: translateX(4px);
}

/* Programme Cards */
.programmes-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.programme-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border-top-left-radius: 60px;
}

.programme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-bottom-right-radius: 60px;
  border-bottom-left-radius: 8px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.programme-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px 24px;
  flex-grow: 1;
  background-color: var(--white);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  transition: all 0.3s ease;
}

.card-title {
  color: var(--black);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.card-description {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 6px 12px;
  background-color: var(--c-secondary-green-40);
  border-radius: 4px;
  min-width: 60px;
  justify-content: center;
}

.card-link:hover {
  color: var(--hover-gold);
}

.card-link .icon-arrow {
  margin-left: 5px;
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .programmes-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card-content {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .programmes-section {
    padding: 60px 0;
  }

  .programmes-header {
    margin-bottom: 40px;
  }

  .programmes-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-content {
    padding: 16px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .programmes-description {
    font-size: 1.1rem;
  }

  .card-link {
    bottom: 12px;
    right: 12px;
    padding: 4px 8px;
  }
}

@media (max-width: 576px) {
  .programmes-section {
    padding: 50px 0;
  }

  .btn-explore {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .card-image {
    height: 200px;
  }

  .card-content {
    padding: 12px;
  }

  .card-link {
    bottom: 8px;
    right: 8px;
    padding: 2px 6px;
  }
}

/* Admission Section */
.admission-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.admission-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

/* Section Titles */
.admission-section .section-title {
  color: var(--black);
  font-weight: 700;
  margin-bottom: 0px;
  font-size: 2.2rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--white);
  padding-bottom: 10px;
}

/* Accordion Item */
.accordion-item {
  margin-bottom: 0px;
  font-size: 1.2rem;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--white);
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--white);
}

.accordion-header:hover {
  color: var(--hover-gold);
}

.icon-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-header.active .icon-toggle {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 20px 0;
  border-top: 1px solid var(--light-gray);
}

.accordion-content.active {
  display: block;
}

/* Image in Content */
.bild img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .admission-section {
    padding: 60px 0;
  }
  .admission-wrapper {
    padding: 0 20px;
  }
  .accordion-header {
    font-size: 1rem;
  }
  .accordion-content {
    padding: 15px 0;
  }
  .bild img {
    height: 120px;
  }
}

/* Discover Programmes Section */
.discover-section {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
}

.discover-wrapper {
  display: flex;
  gap: 128px;
  max-width: 1340px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

/* New flex wrapper for image + description */
.discover-info {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.discover-image-container {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  max-height: 40rem;
  height: 40rem;
}

.discover-image-container:hover {
  transform: scale(1.02);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0)
  );
  z-index: 1;
}

.discover-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.discover-image-container:hover img {
  transform: scale(1.05);
}

/* Right Side: Text Content */
.discover-content {
  flex: 1;
  padding: 20px;
}

.discover-text {
  flex: 1;
}

.discover-description {
  color: var(--medium-gray);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.programme-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
}

.programme-list li {
  margin-bottom: 15px;
}

.programme-link {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.programme-link::after {
  content: "→";
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.programme-link:hover {
  color: var(--hover-gold);
}

.programme-link:hover::after {
  transform: translateX(4px);
}

.help-links,
.event-links {
  margin-top: 30px;
  font-size: 1.2rem;
}

.help-text,
.event-text {
  color: var(--medium-gray);
  font-size: 1rem;
  margin-bottom: 8px;
}

.help-link,
.event-link .news-link {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.help-link::after,
.event-link::after,
.news-link::after {
  content: "→";
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.help-link:hover,
.event-link:hover {
  color: var(--hover-gold);
}

.help-link:hover::after,
.event-link:hover::after {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .discover-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .discover-info {
    flex-direction: column;
    gap: 20px;
  }

  .discover-image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .discover-content {
    padding: 20px;
    text-align: center;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .discover-section {
    padding: 60px 0;
  }

  .discover-image-container {
    max-width: 400px;
  }

  .discover-description {
    font-size: 1rem;
    text-align: left;
  }

  .programme-link,
  .help-link,
  .event-link {
    font-size: 0.95rem;
  }

  .discover-text {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .discover-section {
    padding: 50px 0;
  }

  .discover-image-container {
    max-width: 350px;
  }

  .section-title {
    font-size: 2.2rem;
    text-align: left;
  }
}

/* By default: show desktop layout, hide mobile */
.desktop-layout {
  display: block;
  padding: 0;
}
.mobile-layout {
  display: none;
  padding: 0;
}

/* On mobile: hide desktop, show mobile */
@media (max-width: 992px) {
  .desktop-layout {
    display: none;
  }
  .mobile-layout {
    display: block;
  }
}

/* Stats/Achievements Section */
.stats-section {
  padding: 80px 0;
  background-color: var(--white);
}

.stats-content {
  text-align: center;
  margin: 0;
  margin-bottom: 60px;
}

.stats-content .section-title {
  margin-bottom: 0;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.stats-card {
  background: var(--white);
  border-radius: 8px;
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stats-card-image {
  width: 110px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 15px;
  background-color: transparent;
}

.stats-card-data {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 10px 0;
  color: var(--primary-blue);
}

.stats-card:nth-child(3) .stats-card-data {
  color: #0f4089;
}

.stats-card:nth-child(4) .stats-card-data {
  color: #fe9f0f;
}

.stats-card-desc {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.stats-card-subtext {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin: 0;
  font-style: italic;
}

/* Responsive Design */
@media (min-width: 768px) {
  .stats-cards {
    gap: 25px;
  }

  .stats-card {
    padding: 30px 25px;
    min-height: 180px;
  }

  .stats-card-data {
    font-size: 3.2rem;
  }

  .stats-card-desc {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  .stats-cards {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
  }

  .stats-card-data {
    font-size: 3.5rem;
  }
}

@media (min-width: 1200px) {
  .stats-card {
    padding: 35px 30px;
    min-height: 200px;
  }

  .stats-card-data {
    font-size: 4rem;
  }

  .stats-card-desc {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 0;
  }

  .stats-content {
    margin-bottom: 40px;
  }

  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stats-card {
    min-height: 200px;
    padding: 20px 15px;
  }

  .stats-card-data {
    font-size: 2.5rem;
  }

  .stats-card-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .stats-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 400px;
  }
}

/* Career Support Section */
.career-support-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.career-support-header {
  margin-bottom: 60px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.header-content .section-title {
  flex: 1;
  margin: 0;
  max-width: 600px;
}

.hiring-partner-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  flex-shrink: 0;
  width: 280px;
  text-align: center;
}

.partner-count {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
  line-height: 1;
}

.partner-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin: 10px 0 5px;
}

.partner-disclaimer {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin: 0;
  font-style: italic;
}

.career-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.career-feature {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.career-feature:hover .feature-image img {
  transform: scale(1.05);
}

.feature-desc {
  padding: 20px 15px;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  text-align: center;
  line-height: 1.4;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-support-section {
  .section-title::after {
    background-color: #ffffff45;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .career-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .header-content {
    flex-direction: column;
    gap: 30px;
  }

  .hiring-partner-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .partner-count {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .career-support-section {
    padding: 60px 0;
  }

  .career-support-header {
    margin-bottom: 40px;
  }

  .career-features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 20px;
  }

  .hiring-partner-card {
    padding: 20px;
  }

  .partner-count {
    font-size: 2.8rem;
  }

  .feature-desc {
    min-height: auto;
    padding: 15px 12px;
  }
}

@media (max-width: 576px) {
  .career-support-section {
    padding: 50px 0;
  }

  .partner-count {
    font-size: 2.5rem;
  }

  .partner-title {
    font-size: 1.1rem;
  }

  .feature-image {
    height: 140px;
  }
}

@media (min-width: 1200px) {
  .career-features {
    gap: 30px;
  }

  .feature-desc {
    font-size: 1.1rem;
    padding: 25px 20px;
  }

  .feature-image {
    height: 180px;
  }
}

/* Events Section */

.events-header {
  margin-bottom: 60px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.event-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.event-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover .event-image {
  transform: scale(1.05);
}

.event-date-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--dark-green);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.date-month {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.date-day {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.event-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
  min-height: 72px; /* Force 2 rows for all cards */
  align-content: flex-start; /* Align tags to top of container */
}

.event-tag {
  background: var(--dark-green-gradient);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 28px; /* Fixed height for consistent tag size */
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.event-title {
  color: var(--black);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 15px;
  min-height: 72px;
  display: flex;
  align-items: center;
}

.event-description-container {
  flex-grow: 1;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.event-description {
  color: var(--medium-gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.event-link {
  display: block;
  align-items: center;
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.event-link .icon-arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.event-link:hover .icon-arrow {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .event-tags {
    min-height: 64px; /* Adjusted for tablet */
  }

  .event-title {
    min-height: 66px;
  }
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
  }

  .event-content {
    padding: 20px;
  }

  .event-tags {
    min-height: 60px; /* Adjusted for mobile */
  }

  .event-title {
    font-size: 1.2rem;
    min-height: 60px;
  }

  .event-image-container {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .event-date-tag {
    top: 10px;
    left: 10px;
    padding: 8px 10px;
  }

  .date-month {
    font-size: 0.8rem;
  }

  .date-day {
    font-size: 1.2rem;
  }

  .event-tags {
    min-height: 56px; /* Adjusted for small mobile */
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .event-tag {
    font-size: 0.75rem;
    height: 26px;
  }

  .event-title {
    min-height: 54px;
  }
}

/* News Section */
.news-card {
  margin: 1rem;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  background: var(--dark-green-gradient);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  color: var(--light-green);
  font-size: 0.9rem;
  font-weight: 500;
}

.news-title {
  color: var(--white);
  font-weight: 700;
  margin: 10px 0;
  font-size: 1.25rem;
}

.news-excerpt {
  color: var(--white);
  margin-bottom: 15px;
  flex-grow: 1;
}

.news-link {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  margin-top: auto;
}

.news-link:hover {
  color: var(--hover-gold);
}

/* Companies Section */
.companies-section {
  padding: 80px 0;
  padding-bottom: 6.5rem;
  background-color: var(--white);
}

.companies-header {
  margin-bottom: 60px;
}

.companies-scroll-container {
  overflow: hidden;
  width: 100%; /* full width of screen */
  position: relative;
}

.companies-scroll-track {
  display: flex;
  animation: scroll-left 30s linear infinite;
  width: calc(200%);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 160px;
  min-width: 250px;
  margin-right: 30px;
  flex-shrink: 0;
}

.company-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.companies-scroll-track:hover {
  animation-play-state: paused;
}

.company-logo img {
  max-width: 100%;
  height: inherit;
  object-fit: contain;
}

.company-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .companies-section {
    padding: 60px 0;
  }

  .companies-header {
    margin-bottom: 40px;
  }

  .company-logo {
    height: 140px;
    padding: 15px;
    min-width: 200px;
    margin-right: 20px;
  }

  .companies-scroll-track {
    animation-duration: 25s;
  }
}

@media (max-width: 576px) {
  .companies-section {
    padding: 50px 0;
  }

  .company-logo {
    height: 120px;
    min-width: 180px;
    margin-right: 15px;
  }

  .companies-scroll-track {
    animation-duration: 20s;
  }
}

/* Executive Banner Section */

.executive-banner {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.executive-banner-content {
  background: var(--dark-green-gradient);
  padding: 50px 0;
  position: relative;
  text-align: center;
}

.executive-banner-text {
  position: relative;
  z-index: 2;
}

.executive-banner-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

.executive-cta-btn {
  display: inline-block;
  background: #d9b263;
  color: #01342a;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.executive-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.6s ease;
}

.executive-cta-btn:hover {
  background: #e6c67c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.executive-cta-btn:hover::before {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .executive-banner-text h2 {
    font-size: 2rem;
  }

  .executive-cta-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .executive-banner-content {
    padding: 40px 0;
  }

  .executive-banner-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .executive-cta-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .executive-banner-content {
    padding: 30px 0;
  }

  .executive-banner-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .executive-cta-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

/* Footer Section */
.site-footer {
  margin-top: auto;
}

.footer-main {
  background-color: var(--dark-green-80);
  color: var(--white);
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 20px;
  flex-basis: content;
}

.footer-description {
  color: rgba(255, 255, 255);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-main h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 22px;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-main h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--text-gold);
}

.footer-main ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-main ul li {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
}

.footer-main ul li:last-child {
  margin-bottom: 0;
}

.footer-main ul li a {
  color: rgba(255, 255, 255);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-main ul li a:hover {
  color: var(--hover-gold);
  transform: translateX(5px);
}

.footer-main i {
  margin-right: 12px;
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-contact ul li {
  align-items: center;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.8);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.social-icons i {
  margin: 0;
}

.social-icons a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--hover-gold);
  transform: translateY(-3px);
}

.newsletter-signup {
  margin-top: 20px;
}

.newsletter-signup h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
}

.newsletter-form button {
  background-color: var(--text-gold);
  color: var(--black);
  border: none;
  padding: 12px 15px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e6c67c;
}

.footer-bottom {
  width: 100%;
  background: var(--white);
  padding: 20px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: var(--black);
  margin-inline: 3rem;
}

.partners-section {
  display: inline;
  align-items: center;
  gap: 15px;
}

.partners-label {
  color: inherit;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0; /* prevents shrinking */
}

.partners-logos {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0;
  width: 100%;
  min-width: 0;
  min-height: 60px;
  /* overflow: hidden; */
}

@supports (-webkit-touch-callout: none) {
  .partners-logos {
    min-width: -webkit-fill-available;
  }
}

/* Each group is stacked */
.logo-group {
  position: absolute;
  display: flex;
  gap: 20px; /* spacing between logos */
  opacity: 0;
  animation: fadeCycle 12s infinite;
  justify-content: center; /* align logos left */
  width: 100%;
}
.logo-group:nth-child(1) {
  animation-delay: 0s;
}
.logo-group:nth-child(2) {
  animation-delay: 4s;
}
.logo-group:nth-child(3) {
  animation-delay: 8s;
}

@keyframes fadeCycle {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.partner-logo {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo:hover {
  opacity: 1;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-bottom a:hover {
  color: var(--hover-gold);
}

.separator {
  color: rgba(255, 255, 255, 0.4);
}

.growth-partner {
  display: flex;
  flex-direction: column;
  float: inline-end;
  margin-left: -16rem;
}

.growth-partner h4 {
  text-align: right;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  margin-top: 0px;
  margin-bottom: 0px;
  background: -webkit-linear-gradient(
    144deg,
    rgb(153 0 244) 0%,
    rgb(243 141 43) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Crimson Pro", serif;
  margin: 10px 0;
  color: #2a3e48;
}

.growth-partner img {
  width: 165px;
  height: auto;
}

/* Responsive Footer */

@media (max-width: 1024px) {
  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-main {
    padding: 60px 0 40px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-main {
    padding: 50px 0 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .partners-section {
    order: 2;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    order: 3;
  }

  .copyright {
    order: 1;
  }
}

@media (max-width: 576px) {
  .footer-main {
    padding: 40px 0 25px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-main h4 {
    text-align: center;
  }

  .footer-main h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .partners-section {
    flex-direction: column;
    gap: 10px;
  }

  .partner-logo {
    max-width: 80px;
    max-height: 30px;
  }

  .partners-logos {
    min-height: 40px; /* keeps logos visible */
  }
}

/* Custom CSS */

.bg-color-green-gradient {
  background: linear-gradient(45deg, #161d1c, #00654c);
}

.bg-color-green-gradient {
  .section-title {
    color: #fff;
  }
}

.bg-color-light-white {
  background-color: #f5f5f5; /* fallback */
  background-image: var(--light-white);
}

/* Add these new styles for the gold gradient text */
/* changed to black for now */
/*
  .gradient-text-gold {
  font-weight: 600;
  background: linear-gradient(135deg, #fff5c6, #e0c080, #b88f4a, #7d5930);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*/
