
    /* CSS for the photo gallery */
    body {
        font-family: Arial, sans-serif;
        /* background-color: #f4f4f4; */
        margin: 0;
        padding: 0;
        background: linear-gradient(120deg, #e0f7fa, #ffffff);
        position: relative;

    }

    body::before {
        content: "";
        position: absolute;
        top: -50px;
        left: -50px;
        width: 300px;
        height: 300px;
        background: rgba(23, 92, 211, 0.1);
        border-radius: 50%;
        z-index: -1;
    }

    body::after {
        content: "";
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 250px;
        height: 250px;
        background: rgba(0, 170, 255, 0.1);
        border-radius: 50%;
        z-index: -1;
    }


    .gallery-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 94px 20px;
        background: linear-gradient(180deg, #e0f0ff, #ffffff);
        border-radius: 16px;
    }

    .gallery-container h1 {
        text-align: center;
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 40px;
    }

    /* Carousel styling */
    .carousel-item {

        overflow: hidden;
    }

    .carousel-item img {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .carousel-caption {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(6px);
        border-radius: 12px;
        padding: 15px;
        color: #fff;
        animation: fadeInUp 0.8s ease-in-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .carousel-caption h5 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    /* Ensure carousel controls are visible */
    .carousel-control-prev,
    .carousel-control-next {
        z-index: 1000;
    }

    /* Responsive adjustments for carousel */
    @media (max-width: 768px) {
        .carousel-item {
            height: 350px;
        }

        .gallery-container h1 {
            font-size: 2rem;
        }

        .carousel-caption h5 {
            font-size: 1.5rem;
        }

        .carousel-caption p {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .carousel-item {
            height: 250px;
        }

        .carousel-caption {
            padding: 5px;
            bottom: 10px;
        }

        .carousel-caption h5 {
            font-size: 1.2rem;
        }

        .carousel-caption p {
            font-size: 0.9rem;
        }
    }

    /* Prevent header overlap */
    .fixed-top {
        z-index: 1030;
        /* Ensure header stays above other content */
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: rgba(23, 92, 211, 0.7);
        /* Blue shade */
        border-radius: 50%;
        padding: 20px;
        /* Size increase */
    }

    .carousel-control-prev-icon:hover,
    .carousel-control-next-icon:hover {
        background-color: rgba(23, 92, 211, 1);
        /* Darker on hover */
        transform: scale(1.1);
        transition: 0.3s;
    }

    /* Remove unwanted horizontal space */
    body,
    html {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    /* Fix gallery container */
    .lgx-page-wrapper,
    .lgx-page-wrapper-gform,
    .photo-gallery-section {
        max-width: 100% !important;
        overflow-x: hidden;
        margin: 0 auto;
        padding: 0;
    }

    /* Fix image scaling */
    .photo-gallery-section img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .summit-text {
  text-align: center; 
  padding: 20px;
}

.summit-text h5 {
  font-size: 28px;
  font-weight: 700;
  color: #222; /* dark black */
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #a2682a, #f8c346, #a4692a); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  position: relative;
}

.summit-text h5::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f8c346;
  margin: 8px auto 0;
  border-radius: 2px;
}

.summit-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 500px;
  margin: 10px auto 0;
  font-style: italic;
}

