header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding:10px 8px;
    background-color: white;
    color: black;
}

.logo h1 {
    font-size: 24px;
}

.nav-links ul {
    display: flex;
    list-style: none;
}

.nav-links ul li {
    margin: 0 15px;
}

.nav-links ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 600;
    transition: .5s all;
}
.nav-links ul li a:hover{
    color: #069ED3;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        z-index: 1000;
    }

    .nav-links ul {
        display: block;
    }

    .nav-links ul li {
        margin: 10px 0;
    }

    .menu-icon {
        display: block;
        text-align: end;
        color: black;
    }

    .nav-links.active {
        display: flex;
    }
    .nav-links ul li a{
      color: black;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
    }

    .nav-links ul {
        display: flex;
        list-style: none;
    }

    .nav-links ul li {
        margin: 0 45px;
    }
}





.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -50%;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0px ;
  min-width: 300px;
  z-index: 10;
}

.nav-links .dropdown-menu li {
  padding:  0px;
  margin: 0%;
}

.nav-links .dropdown-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
  font-size: 15px;
  padding: 10px;
  transition: color 0.3s ease;
}

.nav-links .dropdown-menu li a:hover {
  color: #069ED3;
  background-color: #f4f4f4;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

/* ----------------------------------------------end   Header---------------------------------------------------------- */
/* -----------------Call And Whatsapp Button--------------------- */
.quick_contact a {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 18px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 4;
  transition: transform 0.5s ease;
}
.qwhtsapp {
  bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #25d366;
}
.qcall {
  bottom: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2196f3;
}
.quick_contact_icon {
 
}
.quick_contact a:hover {
  transform: scale(1.1);
}

.my-float{
	margin-top:16px;
}

/* ---------------------------------------------Start Splide Slider----------------------------------------------------- */
.Container_height{
  height: 80px !important;
}
@media (max-width: 768px) {
.Container_height{
  height: 30px !important;
}
}


.splide__slide {
  position: relative;

}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.splide__slide img {
  width: 100%;
 background-size: cover;
}

/* ------------------------------------------------------------Start About Section---------------------------------- */
.About_card{
    padding: 40px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transition: .5s;
}
.about_title{
    color: black;
   
}
.About_card:hover{
 
  transform: translateY(-10px);
}

/* ------------------------------------------------------Services------------------------------------------------------ */

/* ---------------------------------------------------------Gallery---------------------------------------------------- */
/* Gallery Item Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
    width: 100%;
    height: auto;
}

/* Hover effect: Scale image */
.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Overlay */
.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(12, 18, 57, .5); /* Black overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Ensure overlay is above the image */
.gallery-item img {
    position: relative;
    z-index: 0;
}

/* ---------------------------------------------------------Client---------------------------------------------------- */
.Project_Section {
    background-image: url('assets/count-bg-1.jpg'); /* Replace with your background image path */
    background-attachment: fixed; /* Makes the background fixed */
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    padding:80px 50px; /* Adds spacing above and below the content */
  }
  @media (max-width: 768px) {
    .Project_Section{
      padding: 30px;
    }
  }
  .ProjecrCard{
    color: white;
  }
  .ProjecrCard h4{
    display: inline-block;
    background-color: red;
    color: white;
    padding:5px;
    font-weight: 400 !important;
    margin-top: 20PX;
  }
  /* ---------------------Branch-------------------------- */
  .icon_size{
    font-size: 10px;
    padding-right: 5px;
  }
/* ----------------------------------------------------Choose Section------------------------------------------------ */
.Choose_icon-container{
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.Choose_icon{
    color: black;
    transition: .5s;
}
.choose_card:hover .Choose_icon-container{
    background-color: #069ED3;
}
.choose_card:hover .Choose_icon{
    color: white;
}
.form-container{
  background-color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
.form-control{
  background-color: #f4f4f4;
  border-radius: 0%;
}
.form_btn {
    background-color: #069ED3;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border: none;
  }
  /* -------------------------------------------------Poster----------------------------------------------------------------------- */
  .poster {
    position: relative;
    overflow: hidden;
}

.poster img {
    display: block;
}


.poster_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 18, 57, .7); /* Semi-transparent black overlay */
    z-index: 1;
}

.poster_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff; /* Text color */
}

.poster_content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.poster_content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.poster_content .btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.3rem;
}
@media (max-width: 768px) {
    .poster img{
        width: 100%;
        height: 20vh;
    }
    .poster_content h1 {
        font-size:1rem !important;
        margin-bottom:10px;
    }
    
    .poster_content p {
        font-size:.6rem;
        margin-bottom:10px;
    }
}
.social-icons a {
  width: 3rem;
  height: 3rem;
  display: inline-block;
  text-align: center;
  background-color: #0D2C63;
  border-radius: 50%;
  padding: 10px;
  margin: 5px;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #069ED3; 
}



.footer{
    background-color: #141B2D;
    color: white;
}
.footer_list{
    list-style-type: none; 
    padding: 0%;
}
.footer_list li{
    margin-bottom: 1rem;
}
.footer_list li a{
    text-decoration: none;
    color: white;
}
.footer_btn{
    display: block;
    padding: 10px 50px;
    border: none;
    background-color: #e71b00;
    color: white;
    font-weight: 700;
}
/* --------------------------------------------About page---------------------------------------------------------- */
.service_Section {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    overflow: hidden;
  }
  
  .service_Section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
  }
  
  .service_Section_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(6, 158, 211, 0.5);
    /* Semi-transparent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service_Section_content {
    color: #fff;
    text-align: center;
  }
  
  .service_Section_content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
  }
  
  .service_Section_content p {
    background-color: white;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1.2rem;
    display:inline-block;
    
  }
  @media (max-width: 768px) {
    .service_Section {
      position: relative;
      width: 100%;
      height: 150px; /* Adjust height as needed */
      overflow: hidden;
    }
    .service_Section_content h2 {
      font-size: 2rem;
      font-weight: 700;
      margin: 0;
    }
    
    .service_Section_content p {
      background-color: white;
      margin-top: 15px;
      padding: 4px 10px;
      font-size: .8rem;
      
    }
  }
  .mission_Icon-conatiner{
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    display:inline-block;
    margin-bottom: 10px;
  }
  .mission_Icon-conatiner i{
    color: black;
  }
  .accordion-header .accordion-button {
    font-size: 1.25rem; /* Increase font size */
    font-weight: 500; /* Make it bold */
  }
  
  .accordion-item {
    border: 1px solid #ddd !important; /* Add a light border */
    border-radius: 5px; /* Add rounded corners */
    margin-bottom: 10px; /* Add spacing between accordion items */
  }
  
  .accordion-item:last-child {
    margin-bottom: 0; /* Remove margin for the last item */
  }
  .accordion-button:not(.collapsed) {
    background-color: white; /* Active background color */
    color: #069ED3; /* Active text color */
  }
  .accordion-button:focus {
    box-shadow: none !important; /* Remove focus outline */
    border-color: #069ED3 !important; /* Focus border color */
  }
  /* --------------------------------------------Service Page------------------------------------------------------- */
  .ser_Card{
    border: 1px solid #f4f4f4 ;
    background-color: #fff;
  }
  .ser_Card-title{
    color: black;
    transition: .5s;
  }
  .ser_Card:hover .ser_Card-title{
    color: #069ED3;
  }
  .Book-link{
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background-color: #069ED3;
   
  }
  .Book-link:hover{
    background-color: #069ED3 !important;
    color: white;
  }
  .ser_Card {
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Optional: for rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: .5s;
}

.ser_Card:hover {
  transform: translateY(-10px);
}

.ser_Card img {
    position: relative;
    z-index: 1;
    width: 100%;
    transition: transform 0.3s ease;
}
.img-container{
  overflow: hidden;
}
.ser_Card:hover img {
    transform: scale(1.1); 
}

.ser_Card img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.ser_Card:hover img::before {
    opacity: 1; /* Show the overlay on hover */
}

.ser_Card .p-4 {
    position: relative;
    z-index: 3; /* Ensure content stays above the overlay */
}
/* ----------------------Gallery --------------------- */
#lightgallery a {
  margin:10px;


}
#lightgallery{
  display: inline-block;
  text-align: center;
}

#lightgallery img {
  width: 250px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s ease;
  margin: 10px;
}

#lightgallery img:hover {
  transform: scale(1.1);
}
