/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  /* background-image: url('images/back1.jpg');  */ 
  /* background-image: url('images/back3.jpg');  */
  /* background-size: cover; 
   background-position: center;  */
  /* background-image: url('images/back2.jpg');  */
   /* background-image: url('images/back4.jpeg');
   background-repeat: no-repeat;
  background-size: 100% 100%;  */
  position: relative;
  /* opacity: 0.5;
  background-blend-mode: lighten; */
  /* background-attachment: fixed;   */
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/back4.jpeg');
  background-size: cover;
  opacity: 0.8; 
  z-index: -1; 
}


/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  top: 0;
  left: 0;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 150px; 
}


.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 40px;
}

.nav-links li a {
  text-decoration: none;
  /* color: #fff; */
  color: #007bff;
  font-weight: bold;
  font-size: 1.3rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none; 
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
}

.mobile-menu {
  display: none; 
  flex-direction: column;
  align-items: left;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  /* height:50vh; */
  padding:15px;
  background-color: #0056b3; 
  /* z-index: 1; */
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
}

.mobile-nav-links li {
  margin: 20px 0;
}

.mobile-nav-links li a {
  text-decoration: none;
  /* color: #333; */
  color: white;
  font-weight: bold;
  font-size: 1rem;
}
.mobile-nav-links li a:hover{
  color: yellow; 
}
 .close-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 50px;
  font-size: 2rem;
  cursor: pointer;
  color:white;
} 



/* Media query for responsiveness */

@media (max-width: 1200px) {
  .logo img {
    max-height: 80px; 
  }
}

 @media (max-width: 992px) {
  .navbar {
    /* align-items: flex-start; */
    padding: 10px;
  }
  
  .logo img {
    max-height: 60px; 
  }

  .nav-links {
    display: none; 
  }

  .mobile-menu-toggle {
   display: flex; 
  }
  
  .close-btn {
    display: block;
  }

} 




/* Home page styles */


/*.home-container {*/
/*  background-image: url('images/home.jpeg');*/
/*  background-size: 100% 100%;*/
/*  background-position: center;*/
/*   height: 700px;*/
/*   width:100%; */
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  text-align: center; */
/*}*/
/*.content {*/
/*   max-width: 800px;*/
/*  padding: 20px;*/
/*  background-color: rgba(255, 255, 255, 0.7); */
/*  border-radius: 10px;*/
/*}*/

/*.content h2 {*/
/*  font-size: 3.5rem;*/
/*  margin-bottom: 20px;*/
/*  color:#005; */
/*}*/

/*.content p{*/
/*  font-size: 1.3rem;*/
/*  margin-bottom: 20px;*/
/*}*/

/*.content .btn {*/
/*  display: inline-block;*/
/*  padding: 10px 20px;*/
/*  background-color: #0056b3; */
/*  color: #fff; */
/*  text-decoration: none;*/
/*  border-radius: 5px;*/
/*  transition: background-color 0.3s;*/
/*}*/

/*.btn:hover {*/
/*  background-color: #f39c15;*/
/*}*/



/* Hero Container */
.home-container {
  position: relative;
  height: 700px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Background Image */
.bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Content Box */
.content {
  max-width: 800px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  z-index: 1;
}

/* Headline */
.content h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #005;
}

/* Paragraph */
.content p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* Button */
.content .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0056b3;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.content .btn:hover {
  background-color: #f39c15;
}


 @media (max-width: 992px) {

  .content {
    max-width: 80%;
  }

  .content h2 {
    font-size: 2.5rem; 
  }

  .content p {
    font-size: 20px; 
    text-align: center;
  }

  .btn {
    font-size: 16px; 
  }
} 

/* Media query for responsiveness */
@media (max-width: 768px) {
  .home-container {
    height: 350px;
  }

  .content {
    max-width: 80%;
    padding: 10px;
  }

   .content h2 {
    font-size: 16px; 
    margin-bottom: 10px;
  }

  .content p {
    font-size: 10px; 
    margin-bottom: 10px;
  } 

  .btn {
    padding: 8px 12px; 
    font-size: 12px; 
  }
}

/* About Us section styles */
.about-section {
  padding: 50px 20px;
}

h1{
  text-align: center;
  padding-bottom: 20px;
  font-size: 2.5rem; 
  color:brown;
}

.about-content {
  display: flex;
  flex-direction: row; /* Set flex direction to row */
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.image-container {
  flex: 1.5; /* Set flex-grow to 1 to allow the image container to grow */
  margin-right: 30px;
}

.image-container img {
  max-width: 100%;
  /* height:auto; */
  height: 450px;
  border-radius: 5px;
  cursor: pointer;
}
.image-container img:hover{
  transform: scale(1.1);
}

.text-container {
  flex: 1; /* Set flex-grow to 1 to allow the text container to grow */
  margin-left: 30px;
}

.text-container h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0056b3;
  color: #fff; 
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #f39c15;  
}

/* Popup styles */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* overflow: auto;  */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.popup-content {
  margin: auto;
  margin-top:150px;
  display: block;
  width: 100%;
  max-width: 800px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  h1{
    font-size: 25px;
  }
  .about-content {
    flex-direction: column; /* Set flex direction to column for smaller screens */
    align-items: flex-start; /* Align items to the start for smaller screens */
  }

  .image-container, .text-container {
    max-width: 100%; /* Set width to 100% for smaller screens */
    margin: 0; /* Remove margin for smaller screens */
    text-align: left;
  }
  .image-container{
  margin: 0 auto;
  }
 
  .image-container img {
    margin-bottom: 20px; /* Add margin to the bottom of the image for smaller screens */
    height:auto;
  }
  p {
    font-size: 14px;
  }
  .text-container h2 {
    font-size: 1.5rem;
  }
  .popup-content {
    margin-top:300px;
    width: 90%;
    /* max-width: 600px; */
  }
}



/* Gallery container styles */
 .gallery-container {
  padding:50px 100px;
  text-align: center;
  width: 100%;
  /* overflow-x: auto;  */
  /* white-space: nowrap;  */
  overflow: hidden;
  position: relative;
}

.gallery {
  /* display: inline-flex;  */
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  /* overflow: hidden; */
  scrollbar-width: none;
  -ms-overflow-style: none;
  /*background-color: rgb(241, 112, 112);*/
  /*background-color: blueviolet;*/
  background-color:#102a73;
}


.gallery-container::-webkit-scrollbar {
  display: none; /* Hide scroll bar for WebKit browsers */
}


.gallery-item {
  flex: 0 0 auto;
  /* margin-right: 15px;  */
  margin: 15px 10px 0px 15px; 
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Add a semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Initially hide the overlay */
  transition: opacity 0.3s ease; /* Add a transition for smooth appearance */
}

.gallery-item:hover .overlay {
  opacity: 1; /* Show the overlay on hover */
  text-decoration: underline;
  color:#fff;
}

.text {
  color: #fff; 
  font-size: 18px;
  text-align: center;
  padding: 10px;
}

.gallery-item img {
  /* max-width: 100%;  */
  max-width: 300px; 
   height: 200px; 
  border-radius: 5px; 
}

.caption {
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  color:#fff;
  max-width: 350px;
  text-wrap: wrap;
}
.caption h2{
  /* font-size: 1.5rem; */
  margin-bottom: 10px;
}
.arrow {
  position: absolute;
  /* position: relative; */
  top: 55%;
  transform: translateY(-50%);
  /* background-color: rgba(255, 255, 255, 0.5); */
  background-color: #eee;
  color: #000;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 20px;
  z-index: 1;
}

.left-arrow {
  left: 100px;
}

.right-arrow {
  right: 100px;
}


/* Adjustments for small screens */
 @media (max-width: 786px) {
  .gallery-container {
    overflow-x: scroll;
    padding: 20px;
  }

  .gallery-item {
    margin-right: 5px; 
    
  }
  .text {
    font-size: 16px;
  }
  
  .gallery-item img {
    max-width: 250px; 
    height: 150px; 
  }
  
  .caption {
    max-width: 250px;
    text-wrap: wrap;
  }
  .caption h2{
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .left-arrow {
    left: 20px;
  }
  
  .right-arrow {
    right: 20px;
  }

} 

/* contact page started */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 20px; */
  margin: 30px;
  gap: 30px;
}

.contact-item {
  margin: 10px 20px;
  height: 80px;
  width:auto;
  padding:10px;
  transition: opacity 0.3s, filter 0.3s;
}
.contact-item:hover {
  opacity: 0.8; 
}


.contact-item a {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Font Awesome icons */
.fab {
  font-size: 50px;
}

/* Default colors for icons */
.whatsapp-icon {
  /* color: #25D366; WhatsApp green */
  color: green;
}

.linkedin-icon {
  color: #0077B5; /* LinkedIn blue */
}

.facebook-icon {
  color: #3B5998; /* Facebook blue */
}


.whatsapp-icon:hover {
  color: #25D366; 
  transform: scale(1.2);
}

.linkedin-icon:hover {
  color: #007bff;
  transform: scale(1.2);
}

.facebook-icon:hover {
  color: #0077B5; 
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .contact-container {
    margin: 10px;
    gap: 10px;
  }
  
  .contact-item {
    margin: 10px; 
  }
  .fab {
    font-size: 40px;
  }
}

.footer {
  background-color: #333;
}

.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer .box-container .box {
  margin: 1rem;
  text-align: center;
  flex: 1 1 25rem;
  /* padding-left: 10rem; */
}

.footer .box-container .box li{
  list-style: none;
}
.footer .box-container .box h2 {
  font-size: 1.5rem;
  color: #fff;
  padding: 0.5rem 0;
}

.footer .box-container .box a {
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem 0;
  color: #eee;
  text-decoration: none;
}

.footer .box-container .box a:hover {
  text-decoration: underline;
}

.footer .credit {
  height: 50px;
  line-height: 50px;
  font-size: 1.5rem;
  color: #eee;
  background: #111;
  text-align: center;
  font-weight: normal;
}

.footer .credit a {
  /* color: #0077B5; */
  color: #f39c15;
}

@media (max-width: 768px) {
  
  .footer .box-container .box h2 {
    padding: 0;
  }
  .footer .box-container .box {
    text-align: center;
  }
  
  .footer .box-container .box a { 
    padding: 0.3rem 0;
  }
  .footer .credit {
    height: 40px;
    line-height: 40px;
    font-size: 1.1rem;
  }
}

/* footer contact us designing */
.c-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.c-item {
  height: 80px;
  width:auto;
  padding:10px;
  transition: opacity 0.3s, filter 0.3s;
}


.c-item a {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Font Awesome icons */
.c-item .fab {
  font-size: 30px;
}
.c-item .whatsapp-icon{
  color: #eee;
}

.c-item .linkedin-icon {
  color: #eee;
}

.c-item .facebook-icon {
  color: #eee;
}

.c-item .whatsapp-icon:hover{
  color: #25D366;
}

.c-item .linkedin-icon:hover{
  color: #0077B5;
  background-color: #fff;
}

.c-item .facebook-icon:hover{
  color: #3B5998;
  background-color: #fff;
  border-radius: 50%;
}



/* slick slider */

.slick-slide{
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
  padding: 40px 0;
}
.slick-slide img{
  /* max-width: 100%; */
  display: block; 
  width: 200px; 
  height: 250px;  
  border-radius: 5px; 
  transition: all 0.4s ease-in-out;
}
.slick-center{
  transform: scale(1.1);
}

.sslider {
  /* padding:50px 10px; */
  text-align: center;
  margin: 2rem 5rem;
  overflow: hidden;
  position: relative;
}
.sslider .item{
  flex: 0 0 auto;
  transition: transform 0.5s ease;
  margin: 15px 10px 0px 15px; 
  margin-right: 5rem; 
  position: relative;
}

.caption2 {
  text-align: center;
  align-items: center;
  margin-top: 5px;
  font-size: 20px;
  /* text-wrap: wrap; */
}

@media (max-width: 768px) {
  .slick-slide {
    padding: 20px 0;
  }
  .slick-slide img {
    width: 150px;
    height: 150px;
  }
  .caption2 {
    font-size: 16px;
  }
  .sslider {
    margin: 2rem 1rem;
  }
}

 @media (max-width: 620px) {
  .slick-slide {
    padding: 10px 0;
  }
  .slick-slide img {
    width: 120px;
    height: 150px;
  }
  .caption2 {
    font-size: 14px;
  }
  .sslider {
  margin: 1rem 2rem;
  }
} 

@media (max-width: 480px) {
  .slick-slide {
    padding: 10px 0;
  }
  .slick-slide img {
    width: 180px;
    height: 200px;
  }
  .caption2 {
    font-size: 14px;
  }
  .sslider {
    /* margin: 0.5rem; */
  margin: 1rem 2rem;
  }
}