/*******************************/
/********* General CSS *********/
/*******************************/
 body {
      margin: 10px;
      padding: 0;
      background-color: #0e1730;
      color: #c1c1c1;
      font-family: "Poppins", sans-serif;
      font-size: 16px;
    }
/*******************************/
/********* navbar  *********/
/*******************************/


.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background-color: #25d366;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: bounce 1.5s infinite;
}
.whatsapp-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
}
.whatsapp-container img {
    width: 30px;
    margin-right: 10px;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}





.navbar {
  position: fixed; /* Fix the navbar at the top */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0e1730;
  z-index: 10;
  padding: 20px 40px 10px 40px;
}


.navbar .navbar-brand img {
    height: 70px;
}

/*.navbar-toggler {
  border: none;
  background-color: transparent; /* Optional: Match your theme *
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}*/


.navbar-nav .nav-item {
    position: relative; /* Ensure relative positioning for nav-item */
    margin-right: 15px; /* Add spacing between nav-links */
}

.navbar-nav .nav-item .nav-link {
    font-family: Jost, sans-serif;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    text-decoration: none; /* No underline by default */
    position: relative; /* Required for the pseudo-element */
    transition: color 0.3s;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: #ffffff;
}

/* Smooth underline effect */
.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    left: 8px;
    bottom: 5px; /* Gap between text and underline */
    width: 0;
    height: 0.1px; /* Thickness of the underline */
    background-color: #ffffff;
    transition: width 0.9s ease; /* Smooth transition for underline */
}

/* Expand underline only to word width */
.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
    width: 80%; /* Match the text width */
}

/* Dropdown styles with underline effect */
.navbar-nav .nav-item.dropdown {
    position: relative;
    margin-right: 15px; /* Add spacing between dropdowns */
}

/* Dropdown underline effect */
.navbar-nav .nav-item.dropdown .dropdown-toggle {
    font-family: Jost, sans-serif;
    font-weight: 400;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    text-decoration: none; /* No underline by default */
    position: relative; /* Required for the underline pseudo-element */
    transition: color 0.3s ease;
}

.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    content: '';
    position: absolute;
    left: 5px;
    bottom: 5px; /* Gap between text and underline */
    width: 0;
    height: 0.1px; /* Thickness of the underline */
    background-color: #ffffff;
    transition: width 0.9s ease; /* Smooth underline transition */
}

.navbar-nav .nav-item.dropdown .dropdown-toggle:hover::after,
.navbar-nav .nav-item.dropdown:hover .dropdown-toggle::after {
    width: 80%; /* Match the text width */
}

/* Keep dropdown menu visible on hover */
.navbar-nav .nav-item.dropdown:hover .dropdown-menu,
.navbar-nav .nav-item.dropdown .dropdown-menu:hover {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Smooth animation */
}

/* Dropdown menu styling */
.navbar-nav .nav-item .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%; /* Position below the nav item */
    left: 0;
    background-color: #0e1730; /* Dropdown background */
    border: 1px solid #ccc; /* Remove default border */
    border-radius: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
    transform: translateY(10px); /* Dropdown animation */
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

/* Dropdown items */
.navbar-nav .nav-item .dropdown-item {
    font-family: Jost, sans-serif;
    font-size: 12px;
    color: #c1c1c1;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none; /* Remove fixed underline in dropdown links */
}

/* Dropdown item hover */
.navbar-nav .nav-item .dropdown-item:hover {
    color: #ffffff;
    background-color: #007bff;
}

/* Active dropdown item */
.navbar-nav .nav-item .dropdown-item.active {
    color: #ffffff;
    background-color: #007bff;
}




.btn.book-now  {
            background-color: transparent;
            color: #c1c1c1;
            border: 1px solid #c4a671;
            padding: 14px 40px;
            font-size: 12px;
            cursor: pointer;
            border-radius: 0px;
            transition: background-color 0.3s, color 0.3s;
        }

/*******************************/
/********* HERO INDEX *********/
/*******************************/ 
    .service-img-wrapper {
      position: relative;
      width: 100%; /* Makes sure the container adapts to column width */
      height: 500px; /* Fixed height */
      overflow: hidden;
      margin-top: 50px;
    }

    .service-img {
      width: 100%;
      height: 500px;
      object-fit: cover; /* Ensures the image fills the container without distortion */
    }

    /* Border radius for different images */
    .radius-first {
      border-radius: 0 250px 0 0;
    }

    .radius-second {
      border-radius: 250px 250px 0 0;
    }

    .radius-third {
      border-radius: 250px 250px 0 0;
    }

    .radius-fourth {
      border-radius: 250px 0 0 0;
    }

    /* Styling for section and text */
    .services-section {
      padding-top: 75px;
    }

    .services-desc {
      font-size: 16px;
      color: #ccc;
    }

    .services-title {
      font-size: 18px;
      color: #c1c1c1;
    }

    .services-link {
      text-decoration: none;
      color: #0e1730; /* Keep the text color the same as the title */
    }

    .services-link:hover {
      color: #0e1730; /* Change color on hover */
    }
    /* Small Screen Styles */
@media (max-width: 576px) {
  .service-img-wrapper {
    margin-top: 50px; /* Reduced margin for smaller screens */
    height: 300px; /* Smaller fixed height */
  }

  .service-img {
    height: 300px; /* Matches the container's height */
    object-fit: cover;
  }

  /* Adjusting border-radius for small screens */
  .radius-first {
    border-radius: 0 150px 0 0;
  }

  .radius-second {
    border-radius: 150px 150px 0 0;
  }

  .radius-third {
    border-radius: 150px 150px 0 0;
  }

  .radius-fourth {
    border-radius: 150px 0 0 0;
  }

  /* Typography adjustments for small screens */
  .services-desc {
    font-size: 12px; /* Smaller font size for descriptions */
  }

  .services-title {
    font-size: 16px; /* Smaller font size for titles */
  }

  .services-link {
    font-size: 12px; /* Smaller font size for links */
  }
}
.styled-title-section {
  text-align: center;
  padding: 50px 20px;
}

.styled-title-section .icon-img {
  width: 120px; /* Default size for large screens */
  margin-bottom: 30px;
  padding-top: 100px;
  max-width: 100%; /* Ensures the image does not overflow */
}

.styled-title-section .main-title {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  font-weight: 100;
  color: #ccc;
  font-size: 26px;
  line-height: 1.39286em;
  letter-spacing: 0.12em;
  word-wrap: break-word;
  margin-bottom: 15px;
}

.styled-title-section .subtitle {
  font-family: 'Brush Script MT', cursive;
  font-size: 45px;
  color: #C49871;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .styled-title-section .icon-img {
    width: 80px; /* Adjust icon size for mobile */
  }

  .styled-title-section .main-title {
    font-size: 22px; /* Smaller font for the main title on mobile */
    letter-spacing: 0.1em;
    line-height: 1.3em;
  }

  .styled-title-section .subtitle {
    font-size: 36px; /* Adjust subtitle size for mobile */
  }
}

@media (max-width: 480px) {
  .styled-title-section .icon-img {
    width: 60px; /* Even smaller icon size on very small screens */
  }

  .styled-title-section .main-title {
    font-size: 18px; /* Reduce font size even more for smaller screens */
    letter-spacing: 0.08em;
    line-height: 1.25em;
  }

  .styled-title-section .subtitle {
    font-size: 30px; /* Further reduce subtitle size */
  }

  .styled-title-section {
    padding: 30px 10px; /* Reduce padding for small screens */
  }
}


/*******************************/
/********* HERO ABOUT *********/
/*******************************/
/* Base styles for the content wrapper */
.responsive-content-wrapper {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap on smaller screens */
  padding: 40px 20px;
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px; /* Limit the content width */
}

.text-container {
  flex: 1;
  max-width: 600px; /* Restricts text content width */
  padding: 20px;
  color: #c1c1c1;
  background-color: #0e1730;
  border-radius: 10px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 60px;
  letter-spacing: 4px;
  color: rgba(218, 165, 32, 0.5); /* Goldenrod with 50% opacity */

  margin-bottom: 20px;
}

.section-heading {
  font-size: 36px;
  font-weight: bold;
  color: #c4a671;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.section-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
  padding-right: 150px;
}

.action-btn {
  background-color: transparent;
  color: #c1c1c1;
  border: 1px solid #c4a671;
    padding: 18px 40px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.action-btn:hover {
  border: 1px double #c4a671;
  background-color: #c4a671;
  color: #0e1730;
}

.image-container {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.event-image {
  width: 100%;
  height: auto;
  max-height: 600px; /* Ensures the image doesn't become too tall */
}

/* Responsive Design */
@media (max-width: 768px) {
  .responsive-content-wrapper {
    flex-direction: column; /* Stacks content vertically on smaller screens */
    align-items: center;
  }

  .text-container {
    width: 100%;
    padding: 20px;
    text-align: center;
    max-width: 100%;
  }

  .section-title {
    font-size: 40px;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
    padding-right: 0; /* Remove padding on small screens */
  }

  .action-btn {
    font-size: 12px;
    padding: 10px 30px;
  }

  .image-container {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
  }

  .event-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .responsive-content-wrapper {
    padding: 20px 10px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-heading {
    font-size: 24px;
  }

  .section-description {
    font-size: 14px;
  }

  .action-btn {
    font-size: 10px;
    padding: 8px 20px;
  }

  .image-container {
    width: 100%;
    max-width: 300px;
  }
}

/*******************************/
/*****VISION AND MISSION *******/
/*******************************/
.vision {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 20px; /* Adjusted padding for better responsiveness */
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px; /* Maximum width to keep content from stretching too far */
}

.vision__image-section {
  position: relative;
  width: 50%;
}

.vision__main-image {
  width: 100%;
  height: auto;
  max-height: 600px; /* Ensures the image doesn't become too tall */
}

.vision__side-image-container {
  position: absolute;
  bottom: 10%;
  right: -50px;
  border-radius: 10px;
  padding: 5px;
}

.vision__side-image {
  width: 100%;
  height: auto;
  max-width: 190px; /* Controls side image width */
  border-radius: 250px 250px 0 0;
}

.vision__text-content {
  width: 40%;
  padding: 40px;
  border-radius: 10px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #c1c1c1;
      font-family: 'Cormorant', serif;
}

.vision__content-title {
  font-size: 60px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.0);
  margin-bottom: 20px;
}

.vision__content-subtitle {
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.vision__content-description {
  line-height: 1.8;
  margin-bottom: 20px;
  margin-top: 20px;
  font-family: "Jost", sans-serif;
  font-size: 17px;
  padding-right: 70px;
}

.vision__action-button {
  background-color: transparent;
  color: #c1c1c1;
  border: 1px solid #c1c1c1;
  padding: 16px 22px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.vision__action-button:hover {
  background-color: #c1c1c1;
  color: #0c1e1e;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vision {
    padding: 60px 20px;
    gap: 40px;
  }

  .vision__image-section {
    width: 50%;
  }

  .vision__text-content {
    width: 45%;
  }

  .vision__main-image {
    max-height: 500px;
  }

  .vision__side-image {
    max-width: 150px;
    max-height: 150px;
  }
}

@media (max-width: 768px) {
  .vision {
    flex-direction: column; /* Stack content vertically on smaller screens */
    align-items: center;
    padding: 40px 20px;
  }

  .vision__image-section {
    width: 100%;
    text-align: center;
  }

  .vision__main-image {
    max-width: 350px;
    max-height: 250px;
    height: auto; /* Maintains aspect ratio */
  }

  .vision__side-image-container {
    position: static;
    margin-top: 20px;
    text-align: center;
  }

  .vision__side-image {
    max-width: 120px;
    height: auto;
  }

  .vision__text-content {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .vision__content-title {
    font-size: 36px;
  }

  .vision__content-subtitle {
    font-size: 24px;
  }

  .vision__content-description {
    font-size: 16px;
    padding-right: 0;
  }

  .vision__action-button {
    font-size: 14px;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .vision {
    padding: 30px 10px;
  }

  .vision__main-image {
    max-width: 300px;
    max-height: 200px;
  }

  .vision__side-image {
    max-width: 90px;
    max-height: 70px;
  }

  .vision__content-title {
    font-size: 28px;
  }

  .vision__content-subtitle {
    font-size: 18px;
  }

  .vision__content-description {
    font-size: 14px;
  }

  .vision__action-button {
    font-size: 12px;
    padding: 6px 18px;
  }
}
/*******************************/
/********* HERO GALLERY ********/
/*******************************/
/* Explicit height for Large Image 3 */
.gallery-img-large {
  height: 800px; /* Fixed height */
  object-fit: cover; /* Ensures the image fills the container without distortion */
}

/* Adjust height for medium screens (tablets) */
@media (max-width: 768px) {
  .gallery-img-large {
    height: 250px;
  }
}

/* Adjust height for small screens (mobile) */
@media (max-width: 576px) {
  .gallery-img-large {
    height: 250px;
  }
}
/*******************************/
/********* SERVICE CSS *********/
/*******************************/
.service-image-container {
  position: relative;
  width: 100%; /* Makes sure the container adapts to column width */
  height: 450px; /* Fixed height */
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 450px;
  object-fit: cover; /* Ensures the image fills the container without distortion */
}

/* Border radius for different images */
.radius-one {
  border-radius: 0 250px 0 0;
}

.radius-two {
  border-radius: 250px 250px 0 0;
}

.radius-three {
  border-radius: 250px 250px 0 0;
}

.radius-four {
  border-radius: 250px 0 0 0;
}

/* Styling for section and text */
.main-service {
  padding-top: 75px;
}

.service-page-description {
  font-size: 16px;
  color: #ccc;
  line-height: 1.8em;
  padding-bottom: 20px;
}

.service-title {
  font-size: 30px;
  color: #c1c1c1;
  padding-top: 20px;

}

.service-title-link {
  text-decoration: none;
  color: #0e1730; /* Keep the text color the same as the title */
}

.service-title-link:hover {
  color: #0e1730; /* Change color on hover */
}

/* Responsive styling */
@media (max-width: 768px) {
  .service-image-container {
    height: 450px; /* Reduced height for medium screens */
  }

  .service-image {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .service-image-container {
    height: 350px; /* Reduced height for smaller screens */
  }

  .service-image {
    height: 350px;
  }
}
/*******************************/
/******** BOOKING FORM CSS******/
/*******************************/
.form-section {
  background-color: #0e1730;
  color: #c1c1c1;
  padding: 100px 20px; /* Adjusted for vertical alignment */
  height: 100vh; /* Full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*.form-section h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}*/

.form-section p, .form-section a {
  color: #b5b5b5;
  font-size: 0.9rem;
  margin-bottom: 30px;
  text-decoration: none;
}

.form-section form input, 
.form-section form textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #c1c1c1;
  color: #c1c1c1;
  margin-bottom: 20px;
  border-radius: 0;
}

.form-section form input:focus, 
.form-section form textarea:focus {
  box-shadow: none;
  outline: none;
}

.form-control::placeholder {
  color: #888888;
  opacity: 1;
}

.form-section .btn-submit {
  background-color: transparent;
  border: 1px solid #c1c1c1;
  color: #c1c1c1;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.form-section .btn-submit:hover {
  background-color: #c1c1c1;
  color: #0f3a3a;
}

.form-divider {
  border-right: 1px solid #505050;
}

a {
  color: #00aaff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/*******************************/
/******* BOOKING FORM IMAGE ****/
/*******************************/

.img-form {
  width: 100%; /* Default width */
  height: 800px;
  border-radius: 200px 0 0 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
  .form-section {
    padding: 60px 20px;
  }

  .img-form {
    width: 80%; /* Image width increases to 80% of container width */
    height: auto;
    max-width: 700px; /* Ensure the image doesn't exceed max width */
    margin-left: auto; /* Center the image */
    margin-right: auto; /* Center the image */
  }

  .form-divider {
    display: none; /* Hide divider on smaller screens */
  }

  .col-lg-4 {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .form-section {
    padding: 40px 10px;
  }

  .img-form {
    width: 90%; /* Image width increases to 90% of container width */
    height: auto;
    max-width: 500px; /* Ensure the image doesn't exceed max width */
  }
}
/*******************************/
/********* TESTIMONIAL CSS *****/
/*******************************/
    .testimonial-container {
      text-align: center;
      padding: 30px 20px;
    }

    .testimonial-heading {
      font-family: 'Brush Script MT', cursive;
  font-size: 2.5rem;
  color: #c4a671;
  margin-bottom: 20px;
    }

    .testimonial-quote {
      font-size: 18px;
  margin-bottom: 15px;
  color: #d6d6d6;
  line-height: 1.6; /* Adjust line spacing for better readability */
    }

    .testimonial-author {
       font-size: 0.9rem;
  font-style: italic;
  color: #c4a671;
    }

    .rating i {
      color: #ffcc00;
      font-size: 20px;
    }

    /* Styling the diamond buttons */
    .diamond-indicators button {
      width: 30px;
      height: 30px;
      font-size: 20px;
      background-color: transparent;
      border: none;
      color: #ccc;
      text-align: center;
      line-height: 30px;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .diamond-indicators .active {
      color: #007bff;
      font-weight: bold;
    }

    .diamond-indicators {
      margin-top: 15px;
    }

    @media (max-width: 768px) {
      .testimonial-container {
        padding: 20px 15px;
      }
      .testimonial-heading {
        font-size: 20px;
      }
      .testimonial-quote {
        font-size: 16px;
      }
      .testimonial-author {
        font-size: 14px;
      }
    }

/*******************************/
/******** HERO & EVENT PAGE ****/
/*******************************/

.event-gallery-row {
  margin-bottom: 20px;
  display: flex; /* Use Flexbox for layout */
  flex-wrap: wrap; /* Allow wrapping of items */
  gap: 20px; /* Gap between each card */
}

.event-gallery-item {
  flex: 1 1 calc(33.333% - 20px); /* 3 items per row on medium screens, adjusted for gap */
  margin-bottom: 20px; /* Space between rows */
  padding: 0; /* Optional: Space between columns */
  display: flex;
  flex-direction: column;
}

.event-gallery-item img {
  width: 100%;
  height: 400px; /* Set a fixed height for images to ensure consistency */
  object-fit: cover; /* Ensure images fill the area */
  border-radius: 10px; /* Optional: border-radius for rounded corners */
  align-items: center;
}

/* Event Gallery Item Image with Small Radius */
.event-gallery-item img.radius-small {
  border-radius: 10px; /* Optional: Adjust border radius */
}

/* Event Gallery Item Image with Medium Radius */
.event-gallery-item img.radius-medium {
  border-radius: 250px 250px 0 0; /* Optional: Adjust border radius */
}

/* Hover Effect Overlay */
.event-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}


.overlay {
  position: absolute;
  inset: 0;              /* ✅ FULL width & height */
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  transition: opacity 0.3s ease;
}


/* Hover Effect on Gallery Item */
.event-gallery-item:hover .overlay {
  opacity: 1;
}

/* Overlay Text */
.overlay p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #c1c1c1;
}

/* Overlay Button */
.overlay .btn {
  margin-top: 10px;
  background-color: #0e1730; /* Adjust button color */
  border: none;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.overlay .btn:hover {
  background-color: #c4a671; /* Hover color for the button */
}

/* Event Info */
.event-info {
  text-align: center;
  margin-top: 10px;
}

.event-info p {
  margin: 0;
  color: #c1c1c1;
  font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .event-gallery-item img {
    height: 250px; /* Adjust height for medium screens */
  }

  .event-gallery-item {
    flex: 1 1 calc(50% - 20px); /* 2 items per row on smaller screens */
  }
}

@media (max-width: 768px) {
  .event-gallery-item img {
    height: 200px; /* Adjust height for small screens */
  }

  .event-gallery-item {
    flex: 1 1 calc(50% - 20px); /* 2 items per row */
  }

  .event-info p {
    font-size: 0.9rem; /* Make the text a bit smaller on small screens */
  }
}

@media (max-width: 576px) {
  .event-gallery-item img {
    height: 180px; /* Even smaller for very small screens */
  }

  .event-gallery-item {
    flex: 1 1 calc(100% - 20px); /* 1 item per row on very small screens */
  }

  .overlay p {
    font-size: 16px; /* Smaller font size for the overlay text */
  }

  .overlay .btn {
    padding: 8px 16px; /* Adjust button padding */
  }

  .event-info p {
    font-size: 0.8rem; /* Even smaller text */
  }
}
/*******************************/
/*********HERO BLOG CSS *********/
/*******************************/
/* Blog Section General Styles */
.blog-section {
    padding: 60px 20px;
}


.blog-card {
    background-color: #0e1730;
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-content {
    padding: 20px;
}

.blog-content h5 {
    font-size: 20px;
    font-weight: bold;
    color: #c1c1c1;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #c1c1c1;
}

.blog-date {
    font-size: 14px;
    color: #c1c1c1;
    margin-bottom: 10px;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    color: #0e1730;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .blog-content h5 {
        font-size: 18px;
    }
    .blog-content p {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .blog-card img {
        height: 220px;
    }
    .blog-content h5 {
        font-size: 17px;
    }
    .blog-content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .blog-card img {
        height: 200px;
    }
    .blog-content h5 {
        font-size: 16px;
    }
    .blog-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 40px 10px;
    }
    .blog-card img {
        height: 180px;
    }
    .blog-content h5 {
        font-size: 15px;
    }
    .blog-content p {
        font-size: 12px;
    }
}

/*******************************/
/********* FOOTER CSS *********/
/*******************************/
.footer {
  background-color: #04162a;
  color: #d1d1d1;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  text-align: left;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-section p, .footer-section li {
  font-size: 16px;
  margin: 5px 0;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section a, .footer-bottom .bottom-links a {
  color: inherit;
  text-decoration: none;
}

.footer-section a:hover, .footer-bottom .bottom-links a:hover {
  color: inherit;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.footer-bottom .bottom-links a {
  margin: 0 10px;
  font-size: 16px;
}

.footer-bottom p {
  font-size: 12px;
  margin: 10px 0;
}

.footer-bottom .social-icons a {
  display: inline-block;
  margin: 0 8px;
  font-size: 20px;
  color: #d1d1d1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-bottom .bottom-links {
    margin-top: 15px;
  }

  .footer-bottom .social-icons a {
    font-size: 18px;
  }

  .footer-section ul li {
    font-size: 14px;
  }

  .footer-bottom p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .footer-section h4 {
    font-size: 18px; /* Slightly bigger heading for readability */
  }

  .footer-section p, .footer-section li {
    font-size: 14px; /* Adjust text size */
  }

  .footer-bottom .bottom-links a {
    font-size: 14px;
  }

  .footer-bottom .social-icons a {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-bottom .bottom-links {
    margin-top: 15px;
    text-align: center;
  }

  .footer-bottom .social-icons {
    text-align: center;
  }

  .footer-bottom .social-icons a {
    font-size: 18px;
    margin: 0 10px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .logo-row {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    max-width: 80px;
    margin-bottom: 10px; /* Adds spacing between logos */
  }
}

@media (max-width: 576px) {
  .footer-container {
    padding: 0 10px; /* Adds padding for small screens */
  }

  .footer-section h4 {
    font-size: 16px;
  }

  .footer-section p, .footer-section li {
    font-size: 12px;
  }

  .footer-bottom .bottom-links a {
    font-size: 12px;
  }

  .footer-bottom .social-icons a {
    font-size: 16px;
  }

  .logo-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .logo {
    max-width: 70px; /* Smaller logos on small screens */
  }
}



/*******************************/
/********* GALLERY PAGE *********/
/*******************************/       
 .gallery-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      text-align: center;
      font-size:30px;
    }

   

    .service-title span {
      color: green;
    }

    .gallery-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    /* Row 1 */
    .gallery-grid .wide-image {
      flex: 2 1 calc(66.66% - 10px); /* Combines two columns */
      height: 300px;
      animation: fadeInLeft 1s ease-in-out;
    }

    .gallery-grid .third-column {
      flex: 1 1 calc(33.33% - 10px);
      height: 300px;
      animation: fadeInRight 1s ease-in-out;
    }

    /* Row 2 */
    .gallery-grid .small-image {
      flex: 1 1 calc(33.333% - 10px);
      height: 300px;
      animation: fadeInUp 1s ease-in-out;
    }

    .gallery-grid img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 5px;
    }

    /* Media Queries for Responsiveness */
    @media (max-width: 768px) {
      .gallery-grid .wide-image,
      .gallery-grid .third-column,
      .gallery-grid .small-image {
        flex: 1 1 100%;
      }
    }
    .video-section {
      margin-top: 40px;
    }


/*******************************/
/******** EVENT PAGINATION *****/
/*******************************/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center; /* Ensures vertical centering if needed */
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 20px auto; /* Ensures the pagination is horizontally centered */
    border-radius: 5px;
}

.page-item {
    margin: 5px; /* Adjust margin for better spacing between items */
}

.page-link {
    display: block;
    padding: 10px 15px; /* Add spacing inside each link */
    color: #c1c1c1; /* Font color */
    background-color: #0e1730; /* Match container background */
    border: 1px solid #c1c1c1; /* White border around items */
    text-decoration: none; /* Remove underline from links */
    border-radius: 3px; /* Rounded corners for buttons */
    font-size: 14px; /* Slightly smaller font for better fit */
}

.page-link:hover {
    background-color: #c1c1c1; /* Invert colors on hover */
    color: black; /* Font color on hover */
    text-decoration: none; /* Keep hover text clean */
}

.page-item.active .page-link {
    background-color: grey; /* Highlight active page */
    color: black; /* Active page font color */
    cursor: pointer;
}

@media (max-width: 576px) {
    .pagination {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
    }

    .page-item {
        margin: 5px 0; /* Reduce horizontal margin for vertical layout */
    }

    .page-link {
        padding: 8px 10px; /* Smaller padding for compact buttons */
        font-size: 12px; /* Reduce font size for smaller screens */
    }
}


/*******************************/
/********* GALLERY PAGE *********/
/*******************************/       
 .gallery-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      text-align: center;
    }

   

    .service-title span {
      color: green;
    }

    .gallery-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    /* Row 1 */
    .gallery-grid .wide-image {
      flex: 2 1 calc(66.66% - 10px); /* Combines two columns */
      height: 300px;
      animation: fadeInLeft 1s ease-in-out;
    }

    .gallery-grid .third-column {
      flex: 1 1 calc(33.33% - 10px);
      height: 300px;
      animation: fadeInRight 1s ease-in-out;
    }

    /* Row 2 */
    .gallery-grid .small-image {
      flex: 1 1 calc(33.333% - 10px);
      height: 300px;
      animation: fadeInUp 1s ease-in-out;
    }

    .gallery-grid img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 5px;
    }

    /* Media Queries for Responsiveness */
    @media (max-width: 768px) {
      .gallery-grid .wide-image,
      .gallery-grid .third-column,
      .gallery-grid .small-image {
        flex: 1 1 100%;
      }
    }
    .video-section {
      margin-top: 40px;
    }


/*******************************/
/********* BLOG CSS *********/
/*******************************/
    .blog {
    position: relative;
    padding: 45px 0;
}

.blog .blog-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.blog .blog-content img {
    margin-bottom: 20px;
    width: 100%;
    height: 500px;
}


.blog .blog-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.blog .blog-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.blog .blog-tags a:hover {
    color: #F7CAC9;
    background: #343148;
}

.blog .blog-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.blog .blog-bio-img {
    width: 100%;
    max-width: 100px;
}

.blog .blog-bio-img img {
    width: 100%;
}

.blog .blog-bio-text {
    padding-left: 30px;
}

.blog .blog-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.blog .blog-bio-text p {
    margin: 0;
}

.blog .blog-related {
    margin-bottom: 45px;
}

.blog .blog-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blog .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.blog .related-slider .blog-item {
    margin: 0 15px;
}

.blog .blog-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.blog .blog-item .blog-img {
    width: 100%;
    max-width: 100px;
}

.blog .blog-item .blog-img img {
    width: 100%;
    height: 80px;
}

.blog .blog-item .blog-text {
    padding-left: 15px;
}

.blog .blog-item .blog-text a {
    font-size: 16px;
    font-weight: 400;
}

.blog .blog-item .blog-meta {
    display: flex;
    margin-top: 8px;
}

.blog .blog-item .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
}

.blog .blog-item .blog-meta p a {
    margin-left: 5px;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
}

@media (max-width: 768px) {
    .blog .blog-content img {
        height: 300px; /* Adjust the height for small screens */
        object-fit: cover; /* Ensures the image looks good with the reduced height */
    }
}

@media (max-width: 576px) {
    .blog .blog-content img {
        height: 200px; /* Further reduce height for extra small screens */
        object-fit: cover;
    }
}
/*******************************/
/********* BLOG FILTER CSS *********/
/*******************************//*
 *  Sidebar Section Styling */
.sidebar-section {
    margin-bottom: 15px;
    padding: 10px 15px;
}

/* Filter Buttons Container */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Adjusted spacing between buttons */
    align-items: center;
}

/* Filter Buttons Styling */
.filter-buttons .filter-btn {
    font-size: 13px;
    padding: 6px 10px; /* Slightly reduced padding for a compact look */
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f8f9fa; /* Light background */
    color: #333;
    transition: background-color 0.3s ease;
}

.filter-buttons .filter-btn:hover,
.filter-buttons .filter-btn.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Date Input Styling */
.filter-buttons #dateFilter {
    font-size: 13px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 150px; /* Adjusted width */
    transition: border-color 0.3s ease;
}

.filter-buttons #dateFilter:focus {
    border-color: #007bff;
    outline: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column; /* Stack buttons vertically on smaller screens */
    }

    .filter-buttons .filter-btn,
    .filter-buttons #dateFilter {
        width: 100%; /* Full-width elements on smaller screens */
    }
}

/*******************************/
/****** CONTACT PAGE CSS *******/
/*******************************/

        .contact-section {
      background-color: #0e1730;
      color: #c1c1c1;
      padding: 50px 20px;
    }

    .contact-section h2 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      font-weight: 500;
      text-transform: uppercase;
    }

    .contact-section p, .contact-section a {
      color: #b5b5b5;
      font-size: 0.9rem;
      margin-bottom: 10px;
      text-decoration: none;
    }

    .contact-section form input, 
    .contact-section form textarea {
      background-color: transparent;
      border: none;
      border-bottom: 1px solid #c1c1c1;
      color: #c1c1c1;
      margin-bottom: 20px;
      border-radius: 0;
    }

    .contact-section form input:focus, 
    .contact-section form textarea:focus {
      box-shadow: none;
      outline: none;
    }

    .form-control::placeholder {
  color: #888888; /* Replace with your desired color */
 /* font-style: italic; /* Optional: Style the placeholder text */
  opacity: 1; /* Ensures full color visibility */
}


    .contact-section .btn-submit {
      background-color: transparent;
      border: 1px solid #c1c1c1;
      color: #c1c1c1;
      padding: 10px 20px;
      text-transform: uppercase;
      font-size: 0.9rem;
    }

    .contact-section .btn-submit:hover {
      background-color: #fff;
      color: #0f3a3a;
    }

    .footer-divider {
      border-right: 1px solid #505050;
    }

/* Text Overlay (if re-enabled) */
.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.text-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

.text-overlay p {
  font-size: 1.25rem;
  margin: 5px 0;
}


/*******************************/
/********* SERVICE PAGE ******/
/*******************************   
.service-section {
      margin-bottom: 20px; /* Adds a gap below each section */
    }

    .image-text-section {
      display: flex;
      align-items: center;
      gap: 20px; /* Adds a 20px gap between the image and text section */
      padding-bottom: 20px;
    }

    .image-section {
      flex: 1; /* Makes the image section take equal space */
    }

    .image-section img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 0 200px 0 0;
    }

    .text-section {
      flex: 1; /* Makes the text section take equal space */
      padding: 20px; /* Adjust padding for better spacing */
      font-family: 'Georgia', serif;
      font-size: 16px;
      color: #adbab9;
      border: 1px solid rgba(201, 165, 129, 0.4);
      height: 630px;
    }

    .text-section h2 {
      font-size: 28px;
      font-family: 'Roboto Condensed', sans-serif;
      text-transform: uppercase;
      color: #fff;
      font-weight: 300;
      line-height: 1.2em;
      letter-spacing: .10em;
    }

    @media (max-width: 768px) {
      .image-text-section {
        flex-direction: column; /* Stacks content vertically on smaller screens */
      }

      .text-section {
        padding: 20px;
        font-size: 16px;
      }
    }

    @media (max-width: 576px) {
      .image-text-section {
        flex-direction: column;
        text-align: center;
      }

      .text-section {
        padding: 10px;
        font-size: 16px;
        height: 300px;
        margin-top: 15px;
      }

      .text-section h2 {
        font-size: ;
      }

      .image-section img {
        width: 100%;
        height: 300px;
        border-radius: 0;
      }
    }

    .read-more {
      border: 1px solid rgba(201, 165, 129, 0.4);
      background-color: transparent;
      color: #adbab9;
      padding: 5px 10px;
      font-size: 16px;
      transition: border-color 0.3s ease, color 0.3s ease;
    }

    .read-more:hover,
    .read-more:focus {
      border-color: rgba(201, 165, 129, 0.7);
      color: #ffffff;
    }
.card-body-exhibition {
        background-color: #0e1730;
        padding: 15px;
    border-radius: 0 0 8px 8px;
    text-align: center;
    }
    .card-img-top{
      border-radius: 250px 250px 0 0;
      height: 420px;
    }
    .shadow{
      background-color: #0e1730;
            border-radius: 250px 250px 0 0;

    }


   /* .hero-section {
      text-align: center;
      padding: 40px 20px;
    }
    .hero-title {
      font-size: 4rem;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .hero-subtitle {
      font-size: 1.2rem;
    }
.image-row img {
  width: 100%;
  height: 500px;
  object-fit: cover;

}*/

.image-card h5,
.image-card p {
  margin: 0;
}

.image-card .image-overlay h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.image-card .image-overlay p {
  font-size: 0.9rem;
}

.image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.image-card:hover img {
  transform: scale(1.1); /* Zoom effect on hover */
}

.image-card:hover .image-overlay {
  opacity: 0.8; /* Optional hover effect */
}
.image-card {
  position: relative;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 400px;
  display: block;
  transition: transform 0.3s ease;
}

.image-card:hover img {
  transform: scale(1.1); /* Slight zoom-in effect on hover */
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-card:hover .image-overlay {
  opacity: 1;
}

.image-overlay h5,
.image-overlay p {
  margin: 0;
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(10px); /* Blurred background */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  border-radius: 10px; /* Rounded corners */
  width: 80%; /* Adjust width if needed */
}

.image-overlay h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.image-overlay p {
  font-size: 0.9rem;
}
/* General Styles */
.text-section p {
  text-align: justify;
  line-height: 1.6;
  color: #adbab9;
}

/* Desktop and larger screens */
@media (min-width: 768px) {
  .image-section img {
    height: 620px;
    object-fit: cover;
    border-radius: 0 200px 0 0;
  }

  .text-section h2 {
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
  }

  .text-section h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .text-section p {
    padding: 20px 120px;
    font-size: 16px;
  }
}

/* Tablets and smaller screens */
@media (max-width: 768px) {
  .image-text-section {
    flex-direction: column;
  }

  .image-section img {
    height: 400px;
    border-radius: 0; /* Remove rounded corners for better fit */
  }

  .text-section {
    padding: 15px;
  }

  .text-section h2 {
    font-size: 24px;
  }

  .text-section h5 {
    font-size: 16px;
  }

  .text-section p {
    padding: 15px 30px;
    font-size: 14px;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .text-section {
    padding: 10px;
  }

  .text-section h2 {
    font-size: 20px;
  }

  .text-section h5 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .text-section p {
    padding: 10px;
    font-size: 12px;
    line-height: 1.5;
  }

  .image-section img {
    height: 250px;
  }
}


/*******************************/
/********* UPCOMING EVENT ******/
/*******************************/
.card-body-exhibition {
  position: relative;
  padding: 20px;
  border-radius: 0 0 15px 15px; /* Rounded bottom corners to match card design */
  color: white; /* Text color */
}

.card-exhibition-title {
  font-size: 12px; /* Larger font for title */
  font-weight: bold; /* Emphasize the title */
  margin-bottom: 10px; /* Spacing below the title */
  text-transform: uppercase; /* Uppercase text for titles */
}

.card-exhibition-text {
  font-size: 14px; /* Regular font size for location and date */
  margin: 5px 0; /* Spacing between the paragraphs */
  line-height: 1.5; /* Better line spacing */
  opacity: 0.9; /* Slight transparency for a softer look */
}

/*******************************/
/********* NEWSLETTER CSS ******/
/*******************************/
.newsletter-section {
  background-color: #0b112b; /* Fallback for older browsers */
  background-blend-mode: overlay;
  padding: 80px 0;
}

.newsletter-title {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.newsletter-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
}

.newsletter-input {
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.newsletter-input::placeholder {
  color: #ffffff;
  opacity: 0.8;
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.social-links a {
  text-decoration: none;
  font-size: 1rem;
}

.social-links span {
  color: #ffffff;
  font-weight: bold;
}


/*******************************/
/********* HERO INDEX *********/
/*******************************/ 
    .service-img-wrapper {
      position: relative;
      width: 100%; /* Makes sure the container adapts to column width */
      height: 500px; /* Fixed height */
      overflow: hidden;
      margin-top: 50px;
    }

    .service-img {
      width: 100%;
      height: 500px;
      object-fit: cover; /* Ensures the image fills the container without distortion */
    }

    /* Border radius for different images */
    .radius-first {
      border-radius: 0 250px 0 0;
    }

    .radius-second {
      border-radius: 250px 250px 0 0;
    }

    .radius-third {
      border-radius: 250px 250px 0 0;
    }

    .radius-fourth {
      border-radius: 250px 0 0 0;
    }

    /* Styling for section and text */
    .services-section {
      padding-top: 75px;
    }

    .services-desc {
      font-size: 16px;
      color: #ccc;
    }

    .services-title {
      font-size: 18px;
      color: #c1c1c1;
    }

    .services-link {
      text-decoration: none;
      color: #0e1730; /* Keep the text color the same as the title */
    }

    .services-link:hover {
      color: #0e1730; /* Change color on hover */
    }
    /* Small Screen Styles */
@media (max-width: 576px) {
  .service-img-wrapper {
    margin-top: 50px; /* Reduced margin for smaller screens */
    height: 300px; /* Smaller fixed height */
  }

  .service-img {
    height: 300px; /* Matches the container's height */
    object-fit: cover;
  }

  /* Adjusting border-radius for small screens */
  .radius-first {
    border-radius: 0 150px 0 0;
  }

  .radius-second {
    border-radius: 150px 150px 0 0;
  }

  .radius-third {
    border-radius: 150px 150px 0 0;
  }

  .radius-fourth {
    border-radius: 150px 0 0 0;
  }

  /* Typography adjustments for small screens */
  .services-desc {
    font-size: 12px; /* Smaller font size for descriptions */
  }

  .services-title {
    font-size: 16px; /* Smaller font size for titles */
  }

  .services-link {
    font-size: 12px; /* Smaller font size for links */
  }
}



/*******************************/
/******** SCROLLING IMAGE ******/
/*******************************/
.connect-section {
    background-color: #0e1730;
    padding: 40px 20px;
    overflow: hidden;
}

.connect-section h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee {
    display: flex;
    animation: scroll 10s linear infinite;
}

.gallery-item {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Unique border-radius for each image */
.img-1 {
    border-radius: 20px 0 0 0;
}

.img-2 {
    border-radius: 0 20px 0 0;
}

.img-3 {
    border-radius: 0 0 20px 0;
}

.img-4 {
    border-radius: 0 0 0 20px;
}

.img-5 {
    border-radius: 20px 20px 0 0;
}

/* Keyframes for smooth, continuous scrolling */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.connect-section {
    background-color: #0e1730;
    padding: 40px 20px;
}

.connect-section h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%; /* Ensure it occupies the full width */
}

.marquee {
  display: flex;
  animation: scroll 30s linear infinite; /* Adjusted duration to fit all images */
}

.gallery-item {
  flex: 0 0 auto; /* Prevent items from shrinking */
  width: 250px; /* Adjust width of each item */
  height: 250px;
  margin-right: 15px; /* Space between images */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keyframes for smooth, continuous scrolling */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%); /* Scroll the entire width of the gallery */
  }
}

/* Unique border-radius for each image */
.img-1 {
    border-radius: 250px 250px 0 0;
}

.img-2 {
    border-radius: 0px;
}

.img-3 {
    border-radius: 50px 0 50px 0;
}

.img-4 {
    border-radius: 250px 0 0 20px;
}

.img-5 {
    border-radius: 0 0 250px 250px;
}

/* Animation for scrolling *
@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}*/


/*******************************/
/********* INDEX CSS *****/
/*******************************/
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 10px; 
  margin-top: 10px; 
}

/* Styling for individual logos */
.logo {
  max-width: 100px; 
  height: auto; 
  transition: transform 0.3s ease; 
}
/* Cover Section */
.cover-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full height of the viewport */
  overflow: hidden;
}

.cover-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container */
  object-position: center; /* Keeps the image centered */
  z-index: -1; /* Ensures the image stays in the background */
}

/* Optional: If you want to add an overlay for text or other elements */
.cover-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black overlay with opacity */
  z-index: 0;
}

    /* Style for the section title */
.section-title{
  font-weight: 500;   /* Make the title bold */
  color: #c4a671;       /* Set the text color */
  letter-spacing: 2px; /* Optional: Add spacing between letters */
      font-family: 'Great Vibes', cursive;
  font-size: 200px;
}

/*******************************/
/********* HERO GALLERY ********/
/*******************************/
/* Explicit height for Large Image 3 */
.gallery-img-large {
  height: 800px; /* Fixed height */
  object-fit: cover; /* Ensures the image fills the container without distortion */
}

/* Adjust height for medium screens (tablets) */
@media (max-width: 768px) {
  .gallery-img-large {
    height: 250px;
  }
}

/* Adjust height for small screens (mobile) */
@media (max-width: 576px) {
  .gallery-img-large {
    height: 250px;
  }
}