  /* hero */
/* Import Nunito Font */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

/* Global Font Styling */
body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Prevent horizontal scrolling caused by overflow */
html, body {
  overflow-x: hidden;
}



/* Navbar Styling */
header {
    border-bottom: 2px solid #f0f0f0;
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  .nav-link {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 10px;
    color: #333;
    transition: color 0.3s ease-in-out;
  }
  
  .nav-link:hover {
    color: #007bff;
  }
  
  .btn-orange {
    background-color: orange;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .btn-orange:hover {
    background-color: #e67e22;
  }
  
  .navbar-brand img {
    display: block;
   
  }


  .hero-section {
    background: url('../images/corald-about.webp') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color:white;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-section .content {
    position: relative;
    z-index: 2;
  }

  .hero-section .content h1 {
    font-size: 15px;
    font-weight: bold;
    /*color: #ff6600;*/
  }

  .hero-section p {
    font-size: 17px;
    margin-top: 10px;
  }

  .btn-hero {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .btn-hero:hover {
    transform: scale(1.1);
    background-color: #e55a00;
  }

  /* Mission, Vision, Values Section */
  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-title h2 {
    color: #ff6600;
    font-weight: bold;
  }

  .icon-box {
    font-size: 3rem;
    color: #ff6600;
    margin-bottom: 20px;
  }

  /* Gallery Section */
  .gallery-section {
    padding: 50px 20px;
    text-align: center;
  }

  .gallery-section h2 {
    color: #ffcc00;
    margin-bottom: 30px;
    font-size: 2.5rem;
  }

  .gallery-slider {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .gallery-slider img,
  .gallery-slider video {
    max-width: 300px;
    max-height: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gallery-slider img:hover,
  .gallery-slider video:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.7);
  }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .lightbox img,
  .lightbox video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
  }

  .lightbox .close {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #ff6600;
    font-weight: bold;
    cursor: pointer;
    z-index: 1100;
  }

  .lightbox .close:hover {
    color: #fff;
  }

  /* Footer */
  footer {
    background: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }