body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
    overflow-y:auto;
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    display: none;
  }

nav{
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: sticky;
    top: 0px;
    z-index: 10;
}
ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

li{
    display: inline;
    float: right;
}

li a{
    text-decoration: none;
    padding: 10px;
    color: #000000;
    font-family: 'ASAP';
}

li:has(> a.logo){
    float: left;
}

li a:hover, li a:focus{
    /* background-color: bisque; */
    color: #349BA4;
    border-bottom: 1px solid #349BA4;
}

.logo-container img{
    width: 250px;
    max-width: 100%;
    height: auto;
    min-width: 150px;
}

.contact-container button{
    border: 1px solid #349BA4;
    background-color: #ffffff;
    color: #349BA4;
    padding: 5px 10px;
    border-radius: 5px;
}

.contact-container button:hover{
    border: 1px solid #349BA4;
    background-color: #349BA4;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* dropdown css */
/* Minimal dropdown styling */
.dropdown {
  position: relative; /* needed for positioning dropdown below */
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 140%;
    left: 9px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 191px;
    z-index: 1000;
    border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  display: block;
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
  font-family: 'ASAP';
}

.dropdown-menu li a:hover {
  background-color: #f3f3f3;
}

/* Optional: down arrow */
.dropdown > a::after {
  content: " ▼";
  font-size: 0.6em;
  margin-left: 5px;
}


/* footer css*/

.footer {
    background-color: #f5f9fc;
    padding: 40px 20px 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
    border-top: 1px solid #e9e9e9;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-left {
    flex: 1 1 250px;
}

.footer-logo {
    width: 230px;
    margin-bottom: 8px;
    margin-left: -13px;
}

.footer-links {
    display: flex;
    flex: 2 1 500px;
    justify-content: space-between;
    gap: 40px;
}

.link-column h4 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.link-column a {
    display: block;
    margin-bottom: 6px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.link-column a:hover {
    color: #349ba4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-social a img {
    width: 20px;
    margin-left: 10px;
    transition: opacity 0.3s;
}

.footer-social a:hover img {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }
    .footer-links {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* preloader */

.preloader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0, 0.8);
    z-index: 999;
}

.spinner{
    /* border: 5px solid #ffffff; */
    border-radius: 50%;
    display: inline-block;
    position: absolute;
}

.spinner.s1{
    width: 50px;
    height: 50px;
    border-top: 3px solid #349BA4;
    animation: spin 1s ease infinite;
}

.spinner.s2{
    width: 40px;
    height: 40px;
    border-top: 3px solid #9d3029;
    animation: spin 1.1s ease infinite;

}

.spinner.s3{
    width: 30px;
    height: 30px;
    border-top: 3px solid #be817c;
    animation: spin 1.2s ease infinite;

}

/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* pages thumbnail */

.thumbnail{
    overflow: hidden;
    height: 530px;
}

.thumbnail img{
    width: 100%;
    height: -webkit-fill-available;
}

.thumbnail-container, .thumbnail{
    position: relative;
}

.thumbnail .thumbnail-title-container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0, 0.4);
}

.thumbnail-title-container .title{
    color: #ffff;
    font-size: 50px;
}

.thumbnail-title-container .tree{
    color: #cccc;
    font-size: 15px;
    display: flex;
    gap: 25px;
    position: absolute;
    bottom: 50px;
}

.thumbnail-title-container .tree .outline-bullet{
    display: list-item;
    list-style: circle;
}

.thumbnail-title-container .tree .fill-bullet{
    display: list-item;
    color: #ffff;
}
/*  */

/* image viewer */
.image-viewer{
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    background-color: rgb(0, 0, 0, 0.5);
}

.image-viewer img{
    height: 90%;
}

.image-viewer .close-btn, .image-viewer .left-btn, .image-viewer .right-btn{
    font-size: 30px;
    color: #ffff;
    position: absolute;
    cursor: pointer;
}

.image-viewer .close-btn{
    top: 10px;
    right: 10px;
}

.image-viewer .left-btn{
    top: 50%;
    left: 10px;
}

.image-viewer .right-btn{
    top: 50%;
    right: 10px;
}

/* icon backgrounds */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: aliceblue;
  border-radius: 50%;
  width: 40px;     
  height: 40px;
  padding: 5px;
}

.icon-circle img {
  width: 23px;   
  height: 23px;
}

/*  */

h2.section-heading{
    font-size: 32px;
    color: #000;
    text-align: center;
}
span.highlight{
    color: #099aa2;
}

section .description{
    color: #727272;
    text-align: center;
    margin: 0 50px;
}

/* slider container */
.slider-container{
    display: flex;
    /* margin: 10px 50px; */
    padding: 10px;
    border-radius: 5px;
    background-color: #e5f0f9;
}

.slider-thumbnail{
    transition: all ease 0.3s;
}

.slider-thumbnail, .slider-description{
    flex: 1;
}

.slider-thumbnail img{
    width: 100%;
    /* height: 371px; */
}

/* .slider-container .thumbnail img:hover{
    width: 50%;
} */

.slider-description{
    color: #3b4646;
    font-size: large;
    transition: all ease 0.3s;
    padding: 10px;
    display: flex;
    /* justify-content: center; */
    align-items: start;
}
/*  */