body {
    background-color: #fff; /* Light Blue Background */
    font-family: Calibri;
}

/* Outer container for centering content */
.main-container {
    width: 100%;
    /*max-width: 1440px;*/
    margin: 0 auto;
    background-color: #A0D7D1;
}

.header-img {
    width: 100%;
    max-width: 1440px;
    height: 660px;
    object-fit: cover;
}

/* Positioning for menu */
.menu-list {
     position: relative;
    z-index: 10;
   /* margin-top: -95px;
    border-radius: 10px;
    border: 1px solid #000;
    padding: 20px;
    position: relative;
    z-index: 10;
    margin-top: -95px;
    background: #FFF1CC;*/
}

.logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.responsive-image {
    max-width: 100%;
    height: auto;
}

/* Footer Styles */
.footer {
    width: 100%;
    /*max-width: 1436px;*/
    height: 355px;
    background-color: #66999F;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.footer-left h5,
.footer-center h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-left p,
.footer-left a {
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-center .social-icons a {
    margin: 5px;
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
}

.footer-center .social-icons a:hover {
    color: #007BFF;
}

.footer-right {
    width: 500px;
    height: 400px;
    margin-top: 20px;
}

.footer-right iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Button styling */
.footer-center .contact-btn {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.footer-center .contact-btn:hover {
    background-color: #0056b3;
}

.textdiv p {
    font-size: 17px;
    font-weight: 500;
    line-height: 34px;
}

ul.list-unstyled li a {
    text-decoration: none;
    color: black;
    line-height: 37px;
}

section {
    max-width: 1436px;
}

/* Quick Links Menu */
.quick-links-container {
    position: relative;
    display: inline-block;
}

.quick-links-btn {
    background-color: #f0f8ff;
    color: #333;
    border: 2px solid #215b6f;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.quick-links-btn:hover {
    background-color: #d6f0f5;
}

.quick-links-btn svg {
    margin-left: 8px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #f0f8ff;
    border: 2px solid #215b6f;
    border-radius: 10px;
    min-width: 160px;
    z-index: 1;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown-menu a {
    color: #333;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    font-weight: bold;
}

.dropdown-menu a:hover {
    background-color: #d6f0f5;
}

.quick-links-container:hover .dropdown-menu {
    display: block;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1436px;
    }
}
/* Custom styles Sliders */
.video-slider-container {
    position: relative;
    /*max-width: 1440px;*/
    margin: 0 auto;
    padding-bottom: 50px; /* Space for dots */
}

.video-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    scroll-behavior: smooth;
}

.video-slider iframe {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.dots-container .dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dots-container .dot.active {
    background-color: #333;
}




.image-slider-container {
   /* max-width: 1440px;*/
    overflow: hidden;
    position: relative;
    margin: auto;
}

.image-slider {
    display: flex;
    gap: 15px; /* Space between images */
    transition: transform 0.5s ease;
}

.image-slider img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.dots-container {
    text-align: center;
    margin-top: 15px;
}

.dots-container .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #666;
    border-radius: 50%;
    cursor: pointer;
}

.dots-container .active {
    background-color: #333;
}

.slider_mobile{
    display: none;
}

.slider_desktop{
    display: block;
}


@media (max-width: 768px) {

    .slider_mobile{
        display: block;
    }

    .slider_desktop{
        display: none;
    }

.footer {
    width: 100%;
    /*max-width: 1436px;*/
    height: auto;
    background-color: #66999F;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

}


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 100%;
    }
  }

  @media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 100%;
    }
  }
  @media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 100%;
    }
  }
  @media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 100%;
    }
  }
  @media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 100%;
    }
  }
  @media (min-width: 576px) {
    .container, .container-sm {
        max-width: 100%;
    }
  }