:root {
  --primary-color: #374b5b;
  --secondary-color: #2a5298;
  --accent-color: #fbb241;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --text-light: #fff;
  --primary-blue: #2c469d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Montserrat", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- UNIVERSAL NAVBAR STYLING --- */
.navbar {
  /* This ensures the navbar has a background on mobile when it collapses */
  background: var(--primary-color);
  padding: 0.5rem 1rem; /* Adjusted padding for better mobile feel */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

.navbar.header-hidden {
  transform: translateY(-100%);
}

.navbar.header-visible {
  transform: translateY(0);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: white !important;
}

.navbar-toggler {
  border: none;
  color: white;
  font-size: 1.5rem; /* Makes the toggler icon larger */
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Style for the dropdown menu container on mobile */
.navbar-collapse {
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
  padding: 0.75rem 1rem; /* More tappable area on mobile */
  text-align: center; /* Center links in the dropdown */
  border-radius: 8px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
  background-color: rgba(255, 255, 255, 0.1); /* Subtle highlight */
}

/* Remove default background on the desktop .nav-container */
.nav-container {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

/* --- DESKTOP STYLES (Applies to screens 992px and wider) --- */
@media (min-width: 992px) {
  .navbar {
    /* Make the main navbar transparent so the inner "pill" is visible */
    background: transparent;
    padding: 1rem 0; /* Restore original padding */
  }

  .nav-container {
    /* This creates the pill effect on desktop */
    background: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .navbar-collapse {
    padding: 0; /* Remove mobile padding */
  }

  .navbar-nav .nav-link {
    /* Reset padding and text alignment for horizontal layout */
    padding: 0.5rem 1rem;
    text-align: left;
  }

  .navbar-nav .nav-link:hover {
    background-color: transparent; /* No background highlight on desktop hover */
  }
}
/* Hero Section */
.hero-section {
  /* The original background property has been removed to allow the video to show. */
  min-height: 40vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
   margin-top: 93px; 
  position: relative;
  overflow: hidden; /* Ensures video does not exceed section bounds */
}

/* New CSS for the video element */
.hero-section .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0; /* Places video behind content */
}

/* New CSS for an overlay on top of the video for text readability */
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(30, 60, 114, 0.75); Dark blue overlay */
  z-index: 1;
}

/* Ensure the hero content appears above the video and overlay */
.hero-section .container {
  position: relative;
  z-index: 2;
}

.btn-hero {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 14px 35px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.9s both;
  font-size: 1.1rem;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
  color: var(--primary-color);
}

/* Learn About Us Section */
.learn-section {
  /* padding: 5rem 0; */
  background: white;
}

.section-divider {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  height: 2px;
  background: var(--primary-color);
}

.section-divider::before {
  left: calc(50% - 150px);
}

.section-divider::after {
  right: calc(50% - 150px);
}

.section-divider span {
  background: white;
  padding: 0 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.learn-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.learn-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.learn-image img:hover {
  transform: scale(1.05);
}

.learn-text {
  flex: 1;
}

.learn-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: justify;
}

.btn-learn {
  background: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-learn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  color: white;
}

/* Stats Section */
.stats-section {
  background: var(--bg-light);
  padding: 4rem 0;
}

.stat-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-light);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* About Section */
.about-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 2rem 0 !important; */
  text-align: center;
}

.about-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.about-section p {
  font-size: 17px;
  /* line-height: 1.9; */
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.95;
  text-align: justify;
  hyphens: auto;
}

/* Events Section */
.events-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.event-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.event-card:hover {
  transform: translateY(-8px);
}

.event-card-body {
  padding: 2rem;
}

.event-category {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-card h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.event-meta {
  color: var(--text-light);
  font-size: 0.95rem;
}

.event-meta i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--secondary-color);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #ccc;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .learn-content {
    flex-direction: column;
    gap: 2rem;
  }

  .section-divider::before,
  .section-divider::after {
    width: 50px;
  }

  .section-divider::before {
    left: calc(50% - 100px);
  }

  .section-divider::after {
    right: calc(50% - 100px);
  }
}
/* --- ABOUT SECTION STYLES --- */
.about-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.about-section .section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  font-weight: 700;
}

/* Style for the text content on the left side */
.about-section .about-text h2 {
  font-size: 2rem; /* Adjusted for subsection heading */
  margin-bottom: 1.5rem;
  color: #262627;
}

.about-section .about-text p {
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.about-text {
  text-align: left;
}

/* --- HORIZONTAL FEATURE CARD (The core component) --- */
.feature-card-horizontal {
  display: flex;
  align-items: center; /* Aligns items to the top */
  padding: 0.5rem;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%; /* Ensures all cards have the same height in a row */
}

.feature-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.feature-card-horizontal .card-icon {
  margin-right: 1.25rem;
  flex-shrink: 0; /* Prevents the icon from shrinking */
}

/* Styling for both SVG and Font Awesome icons */
.feature-card-horizontal .card-icon svg,
.feature-card-horizontal .card-icon i {
  width: 50px;
  height: auto;
  color: var(
    --primary-color
  ); /* Ensures Font Awesome icon gets the correct color */
}

.feature-card-horizontal .card-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-align: left;
}

.feature-card-horizontal .card-content p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.5;
  text-align: justify;
}

/* Utility classes from Bootstrap used in your HTML */
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-md-0 {
  margin-bottom: 0 !important;
}
.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* --- STATS SECTION --- */
.stats-section {
  background-color: var(--primary-color);
  color: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  padding: 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.stat-item i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
}
.stat-label {
  font-size: 1rem;
  font-weight: 500;
}

/* RESPONSIVE DESIGN FOR STATS SECTION */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
}
/* Sustainability Section */
.sustainability {
  padding: 5rem 0;
  background: #f8f9fa;
  text-align: center;
}

.sustainability h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.sustainability p {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
}
.conference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.conference-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.conference-card img {
  max-width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.conference-card h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
  color: var(--primary-blue);
}

.conference-card p {
  font-size: 0.9em;
  color: #666;
}
.button-center {
  text-align: center;
  margin-top: 40px;
}
.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--text-light);
}
/* --- TWO COLUMN LAYOUT (Mobile First) --- */
.two-column {
  display: grid;
  /* Stacks into a single column on mobile by default */
  grid-template-columns: 1fr;
  gap: 30px; /* A smaller gap for vertical stacking */
  align-items: center;
}

/* 
  On mobile, the .reverse class uses flexbox to visually reverse the elements,
  so the text appears *before* the image when stacked.
*/
.two-column.reverse {
  display: flex;
  flex-direction: column-reverse;
}

.column-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Center-align text content on mobile for a cleaner look */
.column-text {
  text-align: center;
}
.column-text .section-title {
  text-align: center;
}

/* This is a visual pseudo-element; it may not be in your final code.
   If you have a line under your title, this will center it. */
.column-text .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.column-text h3 {
  margin-bottom: 15px;
}

.column-text p {
  margin-bottom: 15px;
  text-align: justify;
}

.column-text .btn {
  margin-top: 20px;
}

/* --- DESKTOP STYLES --- */
@media (min-width: 992px) {
  .two-column {
    display: grid; /* Revert to grid display */
    /* Two equal columns for desktop */
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* Restore larger desktop gap */
  }

  /* On desktop, use grid-template-areas to place the text on the left */
  .two-column.reverse {
    display: grid; /* Must be explicitly set back to grid */
    grid-template-areas: "text image";
  }

  .two-column.reverse .column-text {
    grid-area: text;
  }

  .two-column.reverse .column-image {
    grid-area: image;
  }

  /* Revert text alignment to left for desktop */
  .column-text,
  .column-text .section-title {
    text-align: left;
  }

  .column-text .section-title::after {
    left: 0;
    transform: none;
  }
}
/* --- LATEST NEWS SECTION --- */
.latest-news-section {
  background-color: var(--light-bg);
  overflow: hidden;
}

.subtitle {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #777;
}

.news-slider-wrapper {
  position: relative;
  padding: 0;
  overflow-x: hidden;
}

.news-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

/* Default (Mobile): Single card takes up most of the space */
.news-card {
  flex: 0 0 90%; /* Show one full card plus a peek of the next */
  margin-left: 5%; /* Center the first card initially */
  background: #fff; /* Use var(--white) if defined */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}
/* Center the very first card when slider is at the beginning */
.news-slider[style*="translateX(0px)"] .news-card:first-child {
  margin-left: 5%;
}
.news-slider:not([style*="translateX(0px)"]) .news-card:first-child {
  margin-left: 0;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 200px; /* Adjusted height for mobile */
  object-fit: cover;
}
.news-content {
  padding: 25px;
}
.news-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}
.news-date i {
  margin-right: 8px;
}
.news-card h4 {
  font-size: 1.2rem;
}

/* Slider buttons - smaller and positioned slightly differently on mobile */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}
.slider-btn:hover:not(:disabled) {
  background: var(--primary-color);
  color: #fff;
}
.slider-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.prev-btn {
  left: -10px;
}
.next-btn {
  right: -10px;
}

/* --- RESPONSIVE STYLES FOR SLIDER --- */

/* Tablet: Display two cards */
@media (min-width: 768px) {
  .news-card {
    flex: 0 0 calc(50% - 10px); /* 50% width minus half the gap */
    margin-left: 0; /* Reset mobile margin */
  }

  .news-slider[style*="translateX(0px)"] .news-card:first-child {
    margin-left: 0;
  }
}

/* Desktop: Display three cards */
@media (min-width: 992px) {
  .news-card {
    flex: 0 0 calc(33.333% - 14px); /* ~33.3% width minus weighted gap */
  }

  /* Add back the wrapper padding for buttons on desktop */
  .news-slider-wrapper {
    padding: 0 40px;
  }

  .prev-btn {
    left: 0;
  }
  .next-btn {
    right: 0;
  }
}
/* --- CTA SECTION --- */
.cta-section {
  background-color: var(--light-bg);
  padding: 0;
}
.cta-box {
  background-color: var(--white);
  text-align: center;
  padding: 50px;
  border-radius: 80px 80px 0 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  top: -60px; /* Pulls it up */
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.cta-box h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.cta-box p {
  margin-bottom: 25px;
}
/* --- FOOTER --- */
.main-footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
  margin-top: -60px; /* Overlap with CTA */
  z-index: -1;
  position: static;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.footer-col p {
  margin-bottom: 20px;
  /* text-align: justify;
   */
   padding: 12px;
}

.social-icons a {
  color: var(--white);
  font-size: 1.1rem;
  margin-right: 15px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.social-icons a:hover {
  transform: scale(1.2);
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.footer-col ul a:hover {
  color: var(--white);
  padding-left: 5px;
  text-decoration: none;
}
.footer-col i {
  margin-right: 8px;
}

.sub-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 20px;
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: var(--white);
}
/* --- FOOTER --- */
.main-footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
  margin-top: -60px; /* Overlap with CTA */
  z-index: -1;
  position: static;
}

/* Default (Mobile) Footer Grid: Stacks to a single column */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column for mobile */
  gap: 40px; /* Space between the stacked items */
  padding-bottom: 40px;
  text-align: center; /* Center-align content for a cleaner mobile look */
}

/* On mobile, center social icons and left-align list items */
.footer-col {
  text-align: center;
}
.footer-col ul {
  list-style: none;
  padding-left: 0; /* Remove default padding */
}
.footer-col h4 {
  display: inline-block;
}

/* Sub-Footer Default (Mobile): Stacked and centered */
.sub-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 0;
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center horizontally */
  gap: 1rem; /* Add space between copyright and links */
  font-size: 0.9rem;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem; /* Space between legal links */
}

/* --- RESPONSIVE STYLES FOR LARGER SCREENS --- */

/* Tablet layout (e.g., iPads, tablets): 2 columns */
.navbar-brand-logo {
  margin-left: 20px;
  width: 70%;
  border-radius: 5px;
}
.navbar-brand{
  width: 250px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    text-align: left; /* Revert text alignment */
  }

  .footer-col {
    text-align: left;
  }

  .sub-footer {
    flex-direction: row; /* Return to horizontal layout */
    justify-content: space-between; /* Space items out */
  }
}

/* Desktop layout: Restore original 4-column grid */
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Your original 4-column layout */
  }
}
.testimonials-section {
  background-color: var(--primary-color);
}
.hero-section {
    position: relative;
    width: 100%;
    /* height: 100vh;  */ */
    overflow: hidden;
}

.hero-fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.5rem;
    margin-top: 10px;
}
.main-about-section p{
  font-size: 1.2rem;
    max-width: none;
    opacity: 0.95;
    text-align: justify;
}



.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand-logo {
  max-height: 50px;   /* default desktop size */
  width: auto;
  height: auto;
}

/* Tablet view */
@media (max-width: 992px) {
  .navbar-brand-logo {
    max-height: 40px;
  }

  .navbar-brand-logo {
    margin-left: 20px;
    width: 242%;
    border-radius: 5px;
}
}

/* Mobile view */
@media (max-width: 576px) {
  .navbar-brand-logo {
    max-height: 35px;
  }
}


/* ── HERO SECTION ── */
.hero-section {
  width: 100%;
  overflow: hidden;
}

/* ── SLIDER WRAPPER ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 599px;        /* desktop — change to taste */
  overflow: hidden;
}

/* ── SLIDES ── */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── IMAGE fills the box perfectly ── */
.hero-slide img.hero-fallback-image {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* crops + fills — no stretch, no whitespace */
  object-position: center;
  display: block;
}

/* ── OVERLAY ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.10) 0%, rgba(0,0,0,.55) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 3rem;
}

/* ── CAPTION ── */
.hero-caption h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.hero-caption p {
  font-size: clamp(.9rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.88);
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* ── ARROWS ── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
  backdrop-filter: blur(4px);
  z-index: 10;
}
.hero-arrow:hover { background: rgba(255,255,255,.35); transform: translateY(-50%) scale(1.08); }
.hero-arrow--prev { left: 1rem; }
.hero-arrow--next { right: 1rem; }

/* ── DOTS ── */
.hero-dots {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  background: transparent;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.hero-dot.active { background: #fff; transform: scale(1.25); border-color: #fff; }

/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 1024px) { .hero-slider { height: 380px; } }
@media (max-width: 768px)  {
  .hero-slider  { height: 300px; }
  .hero-overlay { padding: 1.5rem; }
  .hero-arrow   { width: 36px; height: 36px; font-size: 1.5rem; }
}

@media (max-width: 480px)  {
  .hero-slider  { height: 240px; }
  .hero-overlay { padding: 1rem; }
  .hero-arrow   { width: 32px; height: 32px; font-size: 1.3rem; }
  .hero-dot     { width: 8px; height: 8px; }
}



@media (max-width: 768px) {
    .hero-section {
        min-height: 30vh;        /* give more height for smaller screens */
        margin-top: 75px;        /* reduce top spacing */
        padding: 2px;           /* add spacing inside */
        text-align: center;
    }

    .navbar {
   
    height: 78px;
    
}
    .navbar-brand-logo {
        max-height: 59px !important;
}
}



 .about-title {
      font-family: 'Playfair Display', Georgia, serif;
      color: #1e3c72;
    }
 
    .text-navy {
      color: #1e3c72 !important;
    }
 
    .text-gold {
      color: #c8a96e !important;
    }
 
    .border-gold {
      border-left: 3px solid #c8a96e !important;
    }
 
    .bg-light-navy {
      background-color: #eef2fa !important;
    }
 
    .divider-gold {
      width: 28px;
      height: 2px;
      background-color: #c8a96e;
      border-radius: 2px;
    }
 
    .fc-card {
      border: 1px solid #e8edf5;
      border-radius: 12px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      position: relative;
      overflow: hidden;
    }
 
    .fc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #1e3c72, #c8a96e);
      opacity: 0;
      transition: opacity 0.2s ease;
    }
 
    .fc-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(30, 60, 114, 0.12) !important;
    }
 
    .fc-card:hover::before {
      opacity: 1;
    }
 
    .icon-wrap {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      flex-shrink: 0;
    }
 
    .icon-wrap svg {
      width: 22px;
      height: 22px;
    }



     .travel-section {
      font-family: 'DM Sans', sans-serif;
      padding: 2rem 1rem;
      width: 100%;
      max-width: 1280px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 600;
      color: #1a1a2e;
      margin: 0 0 6px;
    }

    .section-header p {
      font-size: 14px;
      color: #666;
      margin: 0;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    @media (max-width: 1024px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 580px) {
      .cards-grid {
        grid-template-columns: 1fr;
      }

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

    .card {
      background: #ffffff;
      border: 1px solid #e0e4f0;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.25s ease;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-4px);
    }

    .card-img-wrapper {
      position: relative;
      height: 160px;
      overflow: hidden;
    }

    .card-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .card:hover .card-img-wrapper img {
      transform: scale(1.06);
    }

    .date-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #1a3a8f;
      color: #ffffff;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      line-height: 1.3;
      padding: 6px 10px;
      border-radius: 6px;
      text-align: center;
      min-width: 44px;
    }

    .date-badge .day {
      font-size: 18px;
      font-weight: 600;
      display: block;
    }

    .card-body {
      padding: 14px 16px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .destination {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 600;
      color: #1a3a8f;
      text-align: center;
      margin: 0;
      line-height: 1.4;
    }

    .view-btn {
      background: #1a3a8f;
      color: #ffffff;
      border: none;
      border-radius: 6px;
      padding: 8px 22px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.15s ease;
      letter-spacing: 0.3px;
    }

    .view-btn:hover {
      background: #0f266e;
      transform: scale(0.97);
    }

    .view-btn:active {
      transform: scale(0.94);
    }




    @media (max-width: 768px) {
  .navbar-nav.ms-auto {
    background-color: black;
  }
}



.speaker-card {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
    }
    
    .speaker-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .speaker-img {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid #ffffff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .card-body {
      padding: 1.75rem 1.5rem;
      text-align: center;
    }

    .speaker-name {
      color: #d32f2f;
      font-weight: 700;
      font-size: 1.35rem;
      margin-bottom: 0.5rem;
    }

    .speaker-title {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.4;
      min-height: 80px;
    }

    .testimonial {
      background: linear-gradient(135deg, #0288d1, #0277bd);
      color: white;
      padding: 1.5rem;
      font-size: 0.97rem;
      line-height: 1.5;
      min-height: 140px;
      display: flex;
      align-items: center;
      text-align: center;
    }

    /* Mobile Optimizations */
    @media (max-width: 576px) {
      .speaker-img {
        width: 110px;
        height: 110px;
      }
      
      .speaker-name {
        font-size: 1.2rem;
      }
      
      .card-body {
        padding: 1.4rem 1rem;
      }
      
      .testimonial {
        padding: 1.25rem;
        min-height: 130px;
        font-size: 0.93rem;
      }
    }

    @media (max-width: 768px) {
      .row.g-4 {
        gap: 1.5rem;
      }
    }