* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
}
body {
  font-family: "Times New Roman", Times, serif;
  overflow-x: hidden;
  background: white;
}

.banner {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(1, 1, 1, 0.8), rgba(1, 1, 1, 0.4)),
    url(Images/1.png);
  background-size: cover;
  background-position: center;
}

/* Navbar Styling */
.navbar {
  width: 100%;
  height: 80px; /* Ensure navbar has a defined height */
  /* Ensure visibility */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.4s ease-in-out; /* Smooth movement */
  background-color: #3a5a789c;
}
img.logo {
  max-width: 100px; /* Adjust as needed */
  height: auto;
  padding-top: 10px;
  padding-left: 10px;
}

/* Adjusted Logo to the Left */
.logo {
  width: 170px;
  cursor: pointer;
  margin-left: 20px; /* Ensures spacing from left */
  transition: top 0.3s ease-in-out;
}

/* Navigation Links */
.navbar ul {
  display: flex;
  margin-left: auto;
}

.navbar ul li {
  list-style: none;
}

.navbar ul li a {
  color: whitesmoke;
  font-size: 16px;
  text-transform: capitalize;
  padding: 10px 15px;
  font-weight: 300;
  transition: color 0.3s ease;
}

/* Fix for Hover Effect */
.navbar ul li a:hover {
  color: #7fb3d5;
}
/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  /* Navbar container adjustments */
  .navbar {
    position: relative;

    /* backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
    z-index: 1000;
  }

  /* Navigation menu (hidden by default) */
  .navbar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; /* Below the navbar */
    left: 0;
    width: 100%;
    color: #1d3851;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 10px 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
  }

  /* Active state — menu visible */
  .navbar ul.active {
    display: flex;
    animation: fadeInMenu 0.4s ease-in-out;
  }

  /* Menu links styling */
  .navbar ul li a {
    display: block;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
    transition: background 0.3s, color 0.3s;
  }

  .navbar ul li a:hover {
    color: #7fb3d5;
  }
  /* Hamburger menu button */
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.8rem;
    color: #fff;
    background: none;
    border: none;
    outline: none;
    transition: transform 0.3s ease;
  }

  .menu-toggle:hover {
    transform: scale(1.1);
  }

  /* Simple fade-in animation for smoother appearance */
  @keyframes fadeInMenu {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Center Content */
.div1 {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Centers vertically */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Perfect center */
  text-align: center;
  color: white;
  z-index: 999; /* Ensures it stays above other elements */
}
.text1 {
  font-size: 50px;
  text-align: center;
  font-family: poppins, sans-serif;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease-in-out forwards;
  text-transform: uppercase;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text2 {
  font-size: 20px;
  text-align: center;
}
.explore {
  padding: 15px 25px;
  margin: 20px;
  font-size: 16px;
  letter-spacing: 1px;
  border: 2px solid #ffc107;
  color: white;
  cursor: pointer;
  background: linear-gradient(to right, transparent 50%, #ffc107 50%);
  background-size: 200%;
  background-position: left;
}
.explore:hover {
  background-position: right;
  color: black;
  transform: scale(0.8);
  transition: 0.2s ease-in-out;
}
.about-us {
  padding: 60px;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #3a5a78;
  padding: 30px;
  border-radius: 10px;
}

/* Image Styling */
.image-box {
  border: 10px solid #2c3e50;
  max-width: 45%;
  border-radius: 10px;
}

.image-box img {
  width: 100%;
  height: 40vh;
  display: block;
  border-radius: 10px;
}

/* Text Styling */
.text-box {
  max-width: 50%;
  padding: 20px;
}

.title {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
@keyframes appear {
  from {
    opacity: 0;
    clip-path: inset(100% 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.highlight {
  background-color: #2c3e50;
  color: white;
  padding: 3px 8px;
  border-radius: 5px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
@keyframes appear {
  from {
    opacity: 0;
    clip-path: inset(100% 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.subtitle {
  color: white;
  font-size: 24px;
  margin-top: 10px;
  line-height: 50px;
}

.text7 {
  font-size: 20px;
  margin-bottom: 40px;
  color: white;
  text-align: justify;
  transform: translateY(250px);
  animation: slideUp 3s ease-in-out forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 75%;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(250px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Social Media Icons */
.social-icons {
  display: flex;
  margin-top: 15px;
}

.icon {
  display: inline-block;
  font-size: 20px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 45px;
  margin-right: 10px;
  background: #555;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  transition: 0.3s;
  margin: 10px;
}

.icon:hover {
  background: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .image-box,
  .text-box {
    max-width: 90%;
  }
}

/*text slider*/
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d3d3d3; /* Softer transparency */
  backdrop-filter: blur(10px); /* Glass effect */
  background-image: url(Images/image\ 1.jpeg);
  background-size: cover; /* Ensures it fully covers */
  background-position: center;
  background-repeat: no-repeat;
  padding: 45px;
  border-radius: 80px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  width: 50%;
  height: 45vh;
  font-family: Arial, sans-serif;
  color: black;
  margin: auto;
  transition: transform 0.3s ease-in-out;
  top: 1vh;
}

.slider-container:hover {
  transform: scale(1.02); /* Slight zoom effect */
}

.arrow {
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  color: grey;
  transition: color 0.3s, transform 0.2s;
  padding: 0 20px;
}

.arrow:hover {
  color: black;
  transform: scale(1.2);
}

.slider {
  width: 100%;
  max-width: 800px;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 20px;
  /* background: blue; */
}
@media (max-width: 768px) {
  .arrow {
    display: none !important;
  }
}

/* Each slide fills the whole slider */
.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  top: -26px;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}
.text3 {
  color: black;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 600;
  border-bottom: 2px solid black; /* Adds an underline effect */
  display: inline-block;
  padding-bottom: 5px;
  margin-top: 10px;
}
.text4 {
  color: black;
  line-height: 1.4;
  text-align: justify;
}
.list {
  list-style: none; /* Remove default bullets */
  padding: 0;
  text-align: left; /* Center-align the list */
}

.list li {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0; /* Add spacing between points */
  position: relative;
  padding-left: 30px;
}

.list li::before {
  content: "➤"; /* Change this to any symbol */
  color: black; /* Adjust color */
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

/* Active slide */
.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* Make the slider responsive */
@media (max-width: 768px) {
  .slider-container {
    width: 90%;
    height: auto;
    padding: 30px;
  }
  .buton {
    padding: 10px 20px;
    font-size: 16px;
  }
  .arrow {
    font-size: 30px;
  }

  .slider {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box; /* ensures padding doesn’t overflow */
  }
}

.services {
  text-align: center;
  padding: 50px 20px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
@keyframes appear {
  from {
    opacity: 0;
    clip-path: inset(100% 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.service-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.service-box {
  width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: 0.3s;
}
.service-box:hover {
  transform: scale(1.05);
}
.service-content {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 20px;
  width: 100%;
  text-align: center;
  border-radius: 0 0 10px 10px;
}
.service-content i {
  font-size: 30px;
  margin-bottom: 10px;
}

.text9 {
  font-size: 22px;
  margin-bottom: 10px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
@keyframes appear {
  from {
    opacity: 0;
    clip-path: inset(100% 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
.text10 {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 15px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
@keyframes appear {
  from {
    opacity: 0;
    clip-path: inset(100% 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.btn {
  display: inline-block;
  background: white;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
.btn:hover {
  background: BLACK;
  color: white;
}
@media (max-width: 768px) {
  .service-container {
    flex-direction: column; /* Stack services vertically */
    align-items: center; /* Center-align items */
    gap: 15px; /* Reduce space between services */
  }

  .service-box {
    width: 90%; /* Make boxes take up most of the screen */
    height: auto; /* Allow height to adjust dynamically */
  }

  .service-content {
    padding: 15px; /* Reduce padding for better fit */
  }

  h2 {
    font-size: 24px; /* Reduce heading size */
  }

  .text9 {
    font-size: 18px; /* Adjust service title size */
  }

  .text10 {
    font-size: 20px; /* Adjust description size */
  }

  .btn {
    padding: 8px 16px; /* Reduce button size */
  }
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #fafafa;
  padding: 80px;
}
.heading {
  font-size: 3em;
  margin: 25px;
  border-bottom: 2px solid black; /* Adds an underline effect */
  display: inline-block;
  padding-bottom: 5px;
}
.content-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1000px;
  margin-top: 30px;
}
.card {
  min-height: 180px;
  width: 320px;
  padding: 30px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
  margin: 10px 4px;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}

.text8 {
  margin-bottom: 12px;
  font-weight: 400;
  text-align: left;
  font-family: "Times New Roman", Times, serif;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
@keyframes appear {
  from {
    opacity: 0;
    clip-path: inset(100% 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.card:hover h3,
.card:hover button {
  font-weight: 600;
  color: #fff;
}
.card:nth-child(1):hover {
  background: linear-gradient(
      45deg,
      rgba(205, 223, 230, 0.8) 0%,
      /* Light pastel blue */ rgba(65, 98, 102, 0.8) 100%
    ),
    url("Images/bg\ 1.jpeg");
  background-size: cover;
}
.card:nth-child(2):hover {
  background: linear-gradient(
      45deg,
      rgba(205, 223, 230, 0.8) 0%,
      /* Light pastel blue */ rgba(65, 98, 102, 0.8) 100%
    ),
    url("Images/bg\ 2.jpeg");
  background-size: cover;
}
.card:nth-child(3):hover {
  background: linear-gradient(
      45deg,
      rgba(205, 223, 230, 0.8) 0%,
      /* Light pastel blue */ rgba(65, 98, 102, 0.8) 100%
    ),
    url("Images/bg\ 3.jpeg");
  background-size: cover;
}
.card:nth-child(4):hover {
  background: linear-gradient(
      45deg,
      rgba(205, 223, 230, 0.8) 0%,
      /* Light pastel blue */ rgba(65, 98, 102, 0.8) 100%
    ),
    url("Images/bg\ 4.jpeg");
  background-size: cover;
}
.card:nth-child(5):hover {
  background: linear-gradient(
      45deg,
      rgba(205, 223, 230, 0.8) 0%,
      /* Light pastel blue */ rgba(65, 98, 102, 0.8) 100%
    ),
    url("Images/bg\ 5.jpeg");
  background-size: cover;
}
.card:nth-child(6):hover {
  background: linear-gradient(
      45deg,
      rgba(205, 223, 230, 0.8) 0%,
      /* Light pastel blue */ rgba(65, 98, 102, 0.8) 100%
    ),
    url("Images/bg\ 6.jpeg");
  background-size: cover;
}
.card:nth-child(7):hover {
  background: linear-gradient(
      45deg,
      rgba(205, 223, 230, 0.8) 0%,
      /* Light pastel blue */ rgba(65, 98, 102, 0.8) 100%
    ),
    url("Images/bg\ 7.jpeg");
  background-size: cover;
}
.card:nth-child(8):hover {
  background: linear-gradient(
      45deg,
      rgba(205, 223, 230, 0.8) 0%,
      /* Light pastel blue */ rgba(65, 98, 102, 0.8) 100%
    ),
    url("Images/bg\ 8.jpeg");
  background-size: cover;
}
.card:nth-child(9):hover {
  background: linear-gradient(
      45deg,
      rgba(205, 223, 230, 0.8) 0%,
      /* Light pastel blue */ rgba(65, 98, 102, 0.8) 100%
    ),
    url("Images/bg\ 9.jpeg");
  background-size: cover;
}
.card:nth-child(10):hover {
  background: linear-gradient(
      45deg,
      rgba(205, 223, 230, 0.8) 0%,
      /* Light pastel blue */ rgba(65, 98, 102, 0.8) 100%
    ),
    url("Images/bg\ 10.jpeg");
  background-size: cover;
}
.card:nth-child(11):hover {
  background: linear-gradient(
      45deg,
      rgba(205, 223, 230, 0.8) 0%,
      /* Light pastel blue */ rgba(65, 98, 102, 0.8) 100%
    ),
    url("Images/bg\ 11.jpeg");
  background-size: cover;
}
.card:nth-child(12):hover {
  background: linear-gradient(
      45deg,
      rgba(205, 223, 230, 0.8) 0%,
      /* Light pastel blue */ rgba(65, 98, 102, 0.8) 100%
    ),
    url("Images/bg\ 12.jpeg");
  background-size: cover;
}
.contactyz {
  margin-left: 5px;
  color: white;
}

@media (max-width: 991px) {
  .wrapper {
    padding: 25px;
  }
  .wrapper h1 {
    font-size: 2.5em;
    font-weight: 600;
  }
  .content-box {
    flex-direction: column;
    width: 100%;
  }
  .card {
    min-width: 300px;
    margin: 10px auto;
  }
}

.slideshow-container {
  max-width: 1200px;
  position: relative;
  margin: auto;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
  animation-delay: 10s;
}
@keyframes appear {
  from {
    opacity: 0;
    clip-path: inset(100% 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.text6 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  font-size: 3em;
  text-decoration: underline;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
@keyframes appear {
  from {
    opacity: 0;
    clip-path: inset(100% 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 70px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text5 {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 140px;
}
.circle {
  text-align: center;
}
/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active1,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.container1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #333;
  padding: 30px;
  border-radius: 10px;
  background-image: linear-gradient(rgba(1, 1, 1, 0.65), rgba(0, 0, 0, 0.65)),
    url(Images/1.png);
  background-size: cover;
  background-position: center;
}
.contact-details {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #ddd; /* Soft white for contrast */
  text-align: left;
  margin-top: 15px;
}
.contact-details a {
  color: #ddd; /* Soft white for contrast */
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  margin-top: 0px;
  border-top: 1px solid #3a5a78;
  padding-top: 5px;
  font-size: 14px;
  color: black;
  background: #fafafa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .text7,
  .text4 {
    text-align: center;
    margin-bottom: 30px;
    text-align: justify;
  }
  .container {
    flex-direction: column;
    text-align: center;
  }

  .image-box,
  .text-box {
    max-width: 100%;
  }
  .about-us {
    padding: 30px;
  }
  .title {
    text-wrap: nowrap;
  }
  .container1 {
    padding: 0;
  }
  .contact-details {
    font-size: 15px;
  }
}

@media (min-width: 769px) {
  .navbar {
    background-color: transparent;
  }
}


