  body {
      /* font-family: 'Georgia', serif; */
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      color: #000000;

    }

hr {
  width: 30%;
  margin-top: 50px;
  /* border: 1px solid black; */
  color: #000;
  height: 1px;
}


/* Transparent Navbar and Hero Section Background */
.navbar {
  background-color: transparent !important;
  transition: background-color 0.3s;
}

.navbar a {
  color: white;
  font-size: 20px;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.dropdown-menu a{
  color: #000;
  /* background-color: white; */
}

.navbar a:hover {
  color: #f0c040;
  /* Replace with any color you prefer */
}



/* Initially show white logo and hide black */
.white-logo {
  display: inline;
  width: 350px;
}
.black-logo {
  display: none;
  width: 350px;
}

/* On scroll: switch logos */
.navbar.scrolled .white-logo {
  display: none;
}
.navbar.scrolled .black-logo {
  display: inline;
}



/* Solid navbar after scroll */
.navbar.scrolled {
  background-color: #ffffffcc !important;
  /* Change to your desired color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 1.0s ease, box-shadow 1.0s ease;
  /* color: #000; */
}


.navbar.scrolled a{
 
  color: #000;
}


@media (max-width: 768px) {
  /* Mobile menu background color (applies after toggler is clicked) */
.navbar-collapse {
  background-color: #ffffff; /* Change this to your desired color */
  padding: 1rem;
  border-radius: 0 0 10px 10px; /* Optional: gives a nice rounded dropdown look */
}

/* Optional: text color inside the mobile menu */
.navbar-collapse .nav-link {
  color: #000 !important; /* Change to #fff for dark backgrounds */
}

.navbar-collapse .nav-link:hover {
  color: #f0c040 !important;
}

.white-logo {
  /* display: inline; */
  width: 250px;
}
.black-logo {
  /* display: none; */
  width: 250px;
}


}



.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  /* width: 100%;
  height: 100%; */
  object-fit: cover; 
  z-index: 0;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding-bottom: 3rem;
}

.text-content h1,
.text-content p {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  font-size: 50px;
}


/* animations for hero content  */
/* :start */


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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Base Styles */
.hero-content {
  opacity: 0;
  /* Start hidden */
  animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.animate-text {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.animate-button {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Delays */
.delay-1 {
  animation-delay: 0.8s;
}

.delay-2 {
  animation-delay: 0.8s;
}

/* Button-specific animation */
.animate-button {
  transition: all 0.3s ease;
}

.animate-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* end */



@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 60px 20px 40px;
    display: block;
    text-align: center;
  }

  .container.hero-content {
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 3rem;
    height: auto;
  }

  .text-content h1,
  .text-content p {
    font-size: 28px;
    text-align: center !important;
  }

  .text-content h1 {
    margin-bottom: 15px;
  }

  .text-content p {
    font-size: 24px;
  }

  .button-content {
    margin-top: 20px;
    text-align: center !important;
  }

  .btn.animate-button {
    font-size: 16px;
    padding: 10px 20px;
  }
  .navbar-toggler{
    background-color: rgba(255, 255, 255, 0.774);
  
  }


}






.dropdown-item img {
  vertical-align: middle;
  /* margin-right: 20px;
  margin-left: 20px; */

}


#about {
  background-color: #ffffff;
  color: #333;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c2c2c;
}

.about-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #6c757d;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}



/* mobile responsive about */

@media (max-width: 768px) {
  .about-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .about-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .about-text {
    font-size: 0.95rem;
    text-align: justify;
    margin-bottom: 1rem;
  }

  #about {
    padding: 40px 20px;
  }
}





/* team css */

.team-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  background-color: #fff;
  padding: 4px;
  border: 2px solid #555;
  /* Inner dark border */
  box-shadow: 0 0 0 4px #fff, 0 2px 6px rgba(0, 0, 0, 0.15);
  /* Outer white + shadow */
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.team-img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 4px #fff, 0 4px 12px rgba(0, 0, 0, 0.25);
}

.team-heading {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #333;
}

h6 {
  margin-top: 0.75rem;
  font-weight: 600;
}

.text-muted {
  font-size: 0.85rem;
}


/* animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-member {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in {
  animation: fadeUp 1.0s ease forwards;
  opacity: 1;
}


@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-text {
  opacity: 0;
}

/* Animation trigger classes */
.fade-in-left {
  animation: fadeLeft 1s ease forwards;
}

.fade-in-right {
  animation: fadeRight 1s ease forwards;
}

/* team mobile view */
@media (max-width: 768px) {
  .team-heading {
    font-size: 1.8rem !important;
    text-align: center;
  }

  .team-img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .team-member {
    text-align: center;
  }

  .team-member h6 {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .team-member .text-muted {
    font-size: 0.8rem;
  }

  #team .row {
    gap: 20px 0;
  }

  #team hr {
    margin-top: 30px !important;
  }
}



/* ===== SLIDER SECTION ===== */
.slider-section {
  max-width: 90%;
  margin: 0 auto;
  padding: 40px;
  position: relative;
  /* background-color: #dfadad; */
}

.section-title {
  text-align: left;
  margin-bottom: 30px;
  /* margin-left: 30px; */
  font-size: 3rem;
  color: #333;
  font-weight: bold;

}

/* ===== SLIDER CONTAINER ===== */
.slider-container {
  position: relative;
  overflow: hidden;
  /* border-radius: 8px; */
  width: 100%;
  /* background-color: yellow; */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

/* ===== SLIDER TRACK ===== */
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
    /* width: max-content; */

  /* Ensures proper flex behavior */
}


/* ===== INDIVIDUAL SLIDES ===== */
.slide {
  flex: 0 0 calc(100% / 4);
  /* Show 3 slides at once */
  min-width: 0;
  /* Prevents flexbox overflow */

  padding: 10px;
  box-sizing: border-box;
  text-align: left;
  background-color: #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Smooth transition */
  transform-origin: center center;
  /* Scales from center */
}




.slide:hover {
  transform: scale(1.02);
  /* Slightly enlarges the slide */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.664);
  /* Optional: Adds depth */
  z-index: 10;
  /* Brings hovered slide above others */
}

/* Slide Content Styling */
.slide-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
  /* margin-left: 20px; */
}

.slide-image {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 100%;
  height: 200px;
  /* Fixed height for uniform slides */
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
}

.slide-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.slide-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  max-width: 80%;
  /* margin: 0 auto; */
}





/* ===== NAVIGATION BUTTONS ===== */
.slider-controls {
  /* position: absolute; */
  /* bottom: 10px;
  right: 20px; */
  display: flex;
  gap: 10px;
  /* float: right; */
  float: right ;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: #333333b6;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-btn:hover {
  background-color: #000000;
}



.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.5s;
}

.learn-more:hover {
  transform: translateX(10px);
}

/* Font Awesome icon adjustment */
.learn-more .fa-arrow-right {
  font-size: 0.9em;
}


/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 900px) {
  .slide {
    flex: 0 0 50%;
    /* Show 2 slides on tablets */
  }
}

@media (max-width: 600px) {
  .slide {
    flex: 0 0 100%;
    /* Show 1 slide on mobile */
  }

  .slider-controls {
    position: static;
    /* Buttons below slider on mobile */
    justify-content: center;
    margin-top: 20px;
  }
}



.why-choose-us {
  /* padding: 80px 20px; */
  /* background-color: var(--light-bg); */
  /* text-align: center; */
  /* margin-top: 100px;
            margin-bottom: 50px; */
  margin: auto;
  width: 70%;
}

.section-title-wcu {
  font-size: 2.5rem;
  margin-bottom: 30px;
  /* margin-top: 20px; */
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  /* text-align: center; */
}

.section-title-wcu::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  /* background: white; */
  height: 600px;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Smooth transition */
  transform-origin: center center;
  /* Scales from center */
}

.benefit-card:hover {
  transform: scale(1.05);
  /* Slightly enlarges the slide */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.671);
  /* Optional: Adds depth */
  z-index: 10;
  /* Brings hovered slide above others */
}


.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  /* margin-bottom: 15px; */
  margin-top: 20px;
  position: relative;
  /* padding-bottom: 10px; */
}

.benefit-card h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.benefit-card p {
  font-size: 1rem;
  margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .benefits-container {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card {
    min-width: 100%;
  }
}


  /* hero-btm btm and partners */
.hero-btm {
  background: url('imgs/bookinsBG.png') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: flex-end; /* Align content to bottom */
  justify-content: flex-start; /* Align content to left */
  padding: 40px 40px;
  position: relative;
  width: 100%;
}


.hero-btm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.hero-btm-overlay {
  position: relative; 
  width: 100%;
  max-width: 600px;
  z-index: 2;
  animation: fadeUp-btm 1s ease-in-out forwards;
  opacity: 0;
  transform: translateY(20px);
  /* Removed margin:auto */
  padding-left:80px ;
}

.hero-btm h1 {
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 1.4;
  font-weight: bold;
  color: white;
}

.hero-btm a.button {
  padding: 12px 24px;
  border: 2px solid #fff;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-btm a.button:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.05);
}


@media (max-width: 768px) {
  .hero-btm {
    align-items: center; /* Center vertically for better mobile balance */
    justify-content: center; /* Center horizontally */
    padding: 40px 20px;
    text-align: center;
  }

  .hero-btm {
  position: relative;
  overflow: hidden;
}

  .hero-btm-overlay {
    padding-left: 0;
    max-width: 100%;
  }

  .hero-btm h1 {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .hero-btm a.button {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .hero-btm h1 {
    font-size: 20px;
  }

  .hero-btm a.button {
    padding: 8px 16px;
    font-size: 13px;
  }
}




    .partners {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      padding: 40px 20px;
      background: #fff;
      width: 90%;
      margin: auto;
      /* background-color: yellow; */
    }

    .partners a img {
      max-height: 60px;
      width: 150px;
      object-fit: contain;
      animation: zoomIn 1s ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
    }

    .partners a:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.205);
}



/* .partners img{
  width: 130px;
} */


    @keyframes fadeUp-btm {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes zoomIn {
      0% {
        opacity: 0;
        transform: scale(0.8);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    @media (max-width: 768px) {
      .hero-btm h1 {
        font-size: 28px;
      }

      .partners {
        gap: 20px;
      }
    }


    @media (max-width: 768px) {
  .partners img {
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .partners img {
    max-width: 80px;
  }
}


/* footr  */
footer {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000;
  padding: 40px 20px;
  border-top: 1px solid #ccc;
  background-color: #f9f9f9;
}

.footer-container {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left, .footer-center {
  flex: 1 1 1 300px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 50px;
}

.social-links p {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-center .ol {
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 15px;
}

.social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  margin-bottom: 5px;
}

.social-links a {
  color: #000;
  text-decoration: none;
}

.footer-heading {
  font-size: 30px;
  font-weight:500;
  margin-bottom: 50px;
}



.locations {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}

.location {
  flex: 1 1 0;
  min-width: 200px;
  height: 260px; /* Fixed height */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* This ensures top and bottom are spaced out */
  /* padding: 10px; */
  /* background-color: #db9595;/ */
  box-sizing: border-box;
}


.location p {
  line-height: 0.8 !important;
  /* margin: 2px 0 !important; */
}

.address{
  /* background-color: yellow; */
  
  min-width: 100px;
  height: 160px; /* Fixed height */
}

.contact{
  /* background-color: violet; */
  min-width: 100px;
  height: 100px; /* Fixed height */
}

.footer-hr{
  margin-top: 0;
  margin-bottom: 20px;
  /* width: 100%; */

}
.location h4 {
  font-style: italic;
  /* font-weight: bold; */
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-bottom {
  margin-top: 60px;
  text-align: center;
  font-size: 12px;
  color: #0f0000;
}

.disclaimer {
  margin-bottom: 10px;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
}

/* @media (max-width: 768px) {
  .location {
    flex: 1 1 1 100%;
  }
} */
/* 🌐 Mobile Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;     /* Center items horizontally */
    text-align: center;      /* Center all text */
    gap: 30px;
  }

  .locations {
    flex-direction: column;
    gap: 20px;
    align-items: center;     /* Center location items */
  }

  .location {
    height: auto;
    text-align: center;
  }

  .footer-hr{
    margin: auto;
    margin-bottom: 20px;
  }

  .footer-left,
  .footer-center {
    width: 100%;
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;     /* Center inside each block */
  }

  .footer-heading {
    font-size: 24px;
    text-align: center;      /* Center heading text */
  }

  .disclaimer {
    max-width: 100%;
    text-align: center;
  }

  .footer-bottom {
    font-size: 11px;
    text-align: center;
  }
}

