@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


body{
  overflow-x: hidden;
  background: rgba(248, 250, 255, 0.83);
 }

.main {
  margin-left: 40px;
  margin-right: 40px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(248, 250, 255, 0.65);
  padding: 15px 30px;
  position: sticky;
  gap: 20px; /* Adjust spacing between elements */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  top: 0;
}

/* Logo Styling */
.logo img {
  height: 80px; /* Adjust the height as needed */
  width: auto;
  display: block;
}

/* Center logo in navigation */
.logo {
  display: flex;
  align-items: center;
  margin-left: -200px; /* Move the logo a bit to the left */
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  position: relative;
  margin: 0 15px;
}

.nav-links a {
  font-family: "Raleway";
  color: rgba(23, 25, 62, 1);
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
  line-height: 19.5px;
  font-weight: 500;
}

.nav-links a:hover {
  color: rgba(55, 114, 255, 1);
  text-decoration: underline;
  text-underline-offset: 10px;
}

.nav-button {
  background: rgba(28, 40, 86, 1);
  color: rgba(255, 255, 255, 1);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 30px;
  transition: 0.3s;
  height: 60px;
  width: 163px;
  line-height: 34px;
  font-weight: 600;
  font-family: "Raleway";
}

.nav-button:hover {
  background: rgba(55, 114, 255, 1);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  width: 230px;
  padding: 10px 0;
  border-radius: 0px 0px 30px 30px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

.dropdown-menu li {
  padding: 10px;
  text-align: left;
}

.dropdown-menu a {
  color: #1f3a67;
  font-size: 20px;
  text-decoration: none;
  display: block;
  padding: 8px 15px;
}

.dropdown-menu a:hover {
  background: #1f3a67;
  color: #fff;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 24px;
  color: #1f3a67;
  cursor: pointer;
}

/* Style for dividers */
.divider {
  border-top: 1px solid #888; /* Line color */
  margin: 2px 0; /* Spacing above and below */
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.nav-links a.active {
  font-weight: bold;
  color: rgba(23, 25, 62, 1); /* Same as hover effect */
  text-decoration: underline;
  text-underline-offset: 10px;
}

@media (max-width: 768px) {

  
body{
  overflow-x: hidden;
 }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    width: 100%;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    background: #fff;
    margin-top: 10px;
  }

  .dropdown-menu a {
    padding: 10px;
  }

  .hamburger {
    display: block;
  }
  .logo img {
    height: 50px; /* Adjust the height as needed */
    width: auto;
    display: block;
    margin-left: 190px;
  }
  .main {
    margin-left: 20px;
    margin-right: 20px;
  }

  .nav-button {
    background: #1f3a67;
    color: white;
    padding: 2px 15px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 30px;
    transition: 0.3s;
    height: 40px;
    width: 130px;
    margin-left: 30px;
  }
}

/*home page*/

.slider {
  position: relative;
  width: 100%;
  background-color: rgba(248, 250, 255, 0.65);
  height: 100vh; /* Adjust height */
  overflow: hidden;
  margin-top: 30px;

  border-radius: 20px;
  margin-bottom: 30px;
  z-index: 1;
}

.slides {
  display: flex;
  width: 100%;
  animation: slideAnimation 40s infinite;
  transition: transform 0.5s ease-in-out; /* Smooth animation */
}

.slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: zoomEffect 5s infinite;
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  height: 100vh; /* Adjust height */
  object-fit: cover;
  transition: transform 1.5s ease-in-out;
}

/* 🚀 SLIDE BUTTONS */
.prev,
.next {
  position: absolute;
  left: 20px; /* Position both buttons on the left */
  /* background-color: rgba(0, 0, 0, 0.5); */
  color: black;
  border: none;
  padding: 15px;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
  z-index: 1000;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
}

/* Left Button */
.prev {
  top: 43%; /* Adjust position */
}

/* Position Next Button (➡️) */
.next {
  top: 53%; /* Below the prev button */
}

/* Hover Effect */
.prev:hover,
.next:hover {
  /* background-color: orange; */
}

/* Responsive */
@media (max-width: 768px) {
  .slider {
    height: 250px;
  }

  .slide img {
    height: 250px;
  }
  .prev,
  .next {
    width: 20px;
    height: 20px;
    padding: 10px;
    font-size: 14px;
    left: 10px; /* Adjust for smaller screens */
  }
}

/* 🚀 Image on Bottom Right of Slider */
.bottom-right-img {
  position: absolute;
  bottom: -5px; /* Distance from the bottom */
  right: -1px; /* Distance from the right */
  width: 280px; /* Adjust size as needed */
  height: auto;
  z-index: 1000; /* Ensure it's above the slider */
  transition: transform 0.3s ease-in-out;
}

/* Add Hover Effect (Optional) */
/* .bottom-right-img:hover {
    transform: scale(1.1); 
} */

/* Responsive: Adjust Size for Small Screens */
@media (max-width: 768px) {
  .bottom-right-img {
    width: 100px; /* Smaller image for mobile */
    bottom: -1px;
    right: 0px;
  }
}

/* 🚀 Slide Content Styling */
.slide {
  position: relative; /* Make sure each slide is positioned correctly */
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-content {
  position: absolute; /* Ensures text moves with the slide */
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;

  width: 100%; /* Prevents text from being too wide */
  max-width: 800px;
  z-index: 10;
  /* Optional dark background for readability */

  border-radius: 10px;
  text-align: left;
}

/* Heading Style */
.slide-content h2 {
  font-family: "Raleway";
  font-size: 3.5rem;
  color: rgba(248, 248, 248, 1);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 70px;
}
.slide-content h4 {
  font-family: "Open Sans";
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 10px 30px; /* Adjust padding for better spacing */
  border: 2px solid #fff;
  border-radius: 30px;
  display: inline-block; /* Ensures the border wraps around the text only */
  text-align: center;
  width: auto;
  line-height: 21px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Paragraph Style */
.slide-content p {
  font-family: "Raleway";
  font-size: 1.5rem;
  line-height: 34px;
  margin-bottom: 20px;
  margin-top: 30px;
  font-weight: 600;
  color: rgba(248, 248, 248, 1);
}

.slide-content1 {
  position: absolute; /* Ensures text moves with the slide */
  top: 50%;

  transform: translateY(-50%);
  color: white;

  width: 100%; /* Prevents text from being too wide */
  max-width: 1200px;
  z-index: 10;
  /* Optional dark background for readability */

  border-radius: 10px;
  text-align: center;
}

/* Heading Style */
.slide-content1 h2 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 70px;
  font-family: "Raleway";
  color: rgba(248, 248, 248, 1);
  margin-left: 7%;
}
.slide-content1 h4 {
  font-family: "Open Sans";
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 10px 30px; /* Adjust padding for better spacing */
  border: 2px solid #fff;
  border-radius: 30px;
  display: inline-block; /* Ensures the border wraps around the text only */
  text-align: center;
  width: auto;
  line-height: 21px;
  letter-spacing: 1px;
  color: rgba(248, 250, 255, 1);
  margin-left: 4%;
}

/* Paragraph Style */
.slide-content1 p {
  font-family: "Raleway";
  font-size: 1.5rem;
  line-height: 34px;
  margin-bottom: 20px;
  margin-top: 30px;
  font-weight: 600;
  color: rgba(248, 248, 248, 1);
  margin-left: 10%;
}

/* Button Style */
.slide-btn {
  display: inline-block;
  padding: 12px 20px;
  font-size: 18px;
  color: white;
  background-color: #ff9800;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}

.slide-btn:hover {
  background-color: #e68900;
}

/* 🌟 Responsive Adjustments */
@media (max-width: 1024px) {
  
body{
  overflow-x: hidden;
 }

  .slide-content {
    left: 5%;
    width: 50%;
    text-align: left;
  }

  .slide-content h2 {
    font-size: 18px;
  }

  .slide-content p {
    font-size: 12px;
  }
  .slide-content h4 {
    font-size: 12px;
  }

  .slide-content1 {
    left: 5%;
    width: 50%;
  }

  .slide-content1 h2 {
    font-size: 30px;
  }

  .slide-content1 p {
    font-size: 16px;
  }
  .slide-content1 h4 {
    font-size: 14px;
  }

  .slide-btn {
    font-size: 16px;
    padding: 10px 18px;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .slide-content {
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: left;
  }

  .slide-content h2 {
    font-size: 12px;
    margin-top: -15px;
    line-height: 17px;
  }

  .slide-content p {
    font-size: 9px;
    margin-top: -5px;
    line-height: 14px;
  }

  .slide-btn {
    font-size: 14px;
    padding: 8px 12px;
  }
  .slide-content h4 {
    font-size: 8px;
    padding: 5px 10px;
  }

  .slide-content1 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
  }

  .slide-content1 h2 {
    font-size: 13px;
    margin-top: 2%;
    line-height: 120%;
    margin-left: -2%;
  }

  .slide-content1 p {
    font-size: 9px;
    margin-top: 2%;
    line-height: 120%;
    margin-left: 2%;
  }
  .slide-content1 h4 {
    font-size: 7px;
    padding: 2px 6px;
    margin-top: 2%;
    margin-bottom: 5px;
    /* margin-right: 8%; */
    margin-left: -1%;
  }
}

/* 🚀 Style for the Two Side-by-Side Images */
.slide-images {
  display: flex;
  justify-content: left; /* Center images */
  gap: 20px; /* Space between images */
  margin-top: 50px; /* Space from the text */
}

.slide-images img {
  width: 230px; /* Adjust the width as needed */
  height: auto;
  text-align: left;
  transition: transform 0.3s ease-in-out;
}

.slide-images img:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .slide-images {
    flex-direction: row; /* Stack images on small screens */
    align-items: center;
    margin-top: -10px;
  }

  .slide-images img {
    width: 70px; /* Reduce size for small screens */
  }
}

.slide-images1 {
  display: flex;
  justify-content: left; /* Center images */
  gap: 20px; /* Space between images */
  margin-top: 50px; /* Space from the text */
  margin-left: 33%;
}

.slide-images1 img {
  width: 230px; /* Adjust the width as needed */
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.slide-images1 img:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .slide-images1 {
    flex-direction: row; /* Stack images on small screens */
    align-items: center;
    margin-top: -10px;
    margin-right: 30%;
  }

  .slide-images1 img {
    width: 70px; /* Reduce size for small screens */
  }
}

/****page2***/

.slider1 {
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  height: 100%;
  overflow: hidden;
  margin: 40px auto;
}

.slides1 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide1 {
  flex: 0 0 calc(100% / 3);
  position: relative;
}

.slide1 img {
  width: 91.5%;
  height: 99.2%;
  object-fit: cover;
  margin-left: 40px;
  flex-direction: column;
}

.slide-content2 {
  position: absolute;
  top: 60%;
  left: 58%;
  transform: translateX(-60%);
  color: #1f3a67;
  padding: 10px 20px;
  text-align: left;
  border-radius: 8px;
  width: 80%;
  height: 30%;
}

.slide-content2 h4 {
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(55, 114, 255, 1);
}

.slide-content2 h2 {
  font-size: 18px;
  margin-bottom: 18px;
  font-family: "Raleway";
  font-weight: 600;
  line-height: 32px;
  color: rgba(0, 24, 55, 1);
}

.slide-content2 p {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgba(106, 115, 145, 1);
  /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; */
}
.divider1 {
    border-top: 1px solid #888; 
    margin: 2px 0; 
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.slide-content2 img {
  width: 60px;
  height: 70%;
  margin-bottom: -78px;
  margin-left: 480px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider1 {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    height: 100%;
    overflow: hidden;
    margin: 40px auto;
  }

  .slides1 {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slide1 {
    flex: 0 0 calc(100% / 2);
  }

  .slide1 img {
    width: 100%;
    height: 50%;
  }

  .slide-content2 {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .slide-content2 h2 {
    font-size: 22px;
  }

  .slide-content2 p {
    font-size: 16px;
  }
  .slide-content2 img {
    max-width: 40px;
    height: 30px;
    margin-bottom: -30px;
    margin-left: 290px;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .slide-content2 img {
    max-width: 40px;
    height: 30px;
    margin-bottom: -30px;
    margin-left: 290px;
    margin-top: 30px;
  }
}

.main1 {
  position: relative; /* Establish a positioning context for child elements */
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 50px;
}

/* Flexbox to Align Content */
.content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
/* Image Styling */
.image-content img {
  width: 80px; /* Adjust size as needed */
  max-width: 100%;
  height: auto;
  margin-bottom: 50px;
  border-radius: 10px; /* Optional rounded corners */
}
.image-content1 img {
  width: 100px; /* Adjust size as needed */
  margin-left: -150px;
  height: auto;
  border-radius: 10px; /* Optional rounded corners */
  margin-top: 50px;
}

.image-content2 img {
  width: 100px; /* Adjust size as needed */
  margin-left: 90%;
  height: auto;
  border-radius: 10px; /* Optional rounded corners */
  margin-top: -20px;
}

.image-content4 img {
  width: 100px; /* Adjust size as needed */
  margin-left: 90%;
  height: auto;
  border-radius: 10px; /* Optional rounded corners */
  margin-top: -20px;
}

.image1 {
  display: block;
}

/* Content Styling */
.slide-content12 {
  max-width: 800px; /* Restrict width for readability */
  margin: 0 auto 30px; /* Center content and add spacing */
  flex: 1;
}

/* Heading Styling */
.slide-content12 h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 24, 55, 1); /* Highlight color */
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 2px solid #1f3a67;
  border-radius: 20px;
  padding: 5px 20px;
  display: inline-block; /* Ensures the border wraps around the text only */
  text-align: center;
  width: auto;
  line-height: 22px;
  font-family: "Open Sans";
}

/* Main Title */
.slide-content12 h2 {
  font-size: 50px;
  font-weight: 600;
  color: rgba(0, 24, 55, 1); /* Dark blue */
  margin-bottom: 15px;
  font-family: "Open Sans";
  line-height: 60px;
}

/* Paragraph Styling */
.slide-content12 p {
  font-size: 24px;
  color: rgba(0, 24, 55, 1) 3; /* Dark gray */
  line-height: 100%;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide-content12 h2 {
    font-size: 28px; /* Reduce size for tablets */
  }

  .slide-content12 p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .slide-content12 h2 {
    font-size: 24px; /* Further reduce size for mobiles */
  }

  .slide-content12 p {
    font-size: 14px;
  }

  
body{
  overflow-x: hidden;
 }
}

/* MOBILE VIEW (For screens up to 480px) */
@media (max-width: 480px) {
  /* Make the container stack elements vertically */
  .content-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Adjust text content */
  .slide-content12 {
    max-width: 100%;
    padding: 10px;
  }

  .slide-content12 h2 {
    font-size: 24px;
  }

  .slide-content12 p {
    font-size: 14px;
  }

  /* Reduce heading size */
  .slide-content12 h4 {
    font-size: 16px;
    padding: 3px 15px;
  }

  /* Make images responsive */
  .image-content img,
  .image-content1 img {
    width: 70px;
    margin-left: 0;
    display: block;
    margin: auto;
    padding-left: 10px;
    margin-top: -20px;
  }

  .image-content2 img {
    width: 50px;
    margin-left: 82%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
  }

  .image-content4 img {
    width: 70px;
    margin-left: 0;
    display: block;
    margin: auto;
    padding-left: 10px;
    margin-top: -20px;
  }

  /* Ensure the image block is centered */
  .image1 {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  /* SLIDER SETTINGS */
  .slider1 {
    height: auto;
    margin: 20px auto;
  }

  .slides1 {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  /* Display only 1 slide per row on mobile */
  .slide1 {
    flex: 0 0 100%;
    /* margin-left: 100px; */
    margin-right: 15px;
    /* padding-left: 20px; */
    /* margin-right: 20px; */
    padding-right: 50px;
    margin-left: -15px;
  }

  /* Make slide images full width */
  .slide1 img {
    width: 100%;
    height: auto;
  }

  /* Adjust text overlay */
  .slide-content2 {
    position: absolute;
    bottom: 31%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: left;
    padding: 10px;
  }

  /* Adjust text sizes */
  .slide-content2 h4 {
    font-size: 10px;
    margin-bottom: 20px;
    margin-left: 30px;
  }

  .slide-content2 h2 {
    font-size: 13px;
    margin-left: 30px;
    line-height: 2px;
    margin-top: -10px;
  }

  .slide-content2 p {
    font-size: 11px;
    line-height: 15px;
    margin-left: 28px;
    margin-top: 30px;
  }

  /* Reduce divider width */
  .divider1 {
    width: 80%;
    margin-left: 30px;
    margin-bottom: -1px;
  }
}

/* Container for 4 images */
.image-container {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* Space between images */
  padding: 20px;
  flex-wrap: wrap; /* Ensures responsiveness */
  background-color: #d9e2f2;
  margin-top: 50px;
  margin-bottom: 50px;
}

/* Individual Image Box */
.image-box {
  flex: 1; /* Equal space distribution */
  max-width: 22%; /* Each takes approx. 25% width */
  text-align: center;

  padding: 15px;
  border-radius: 10px;

  transition: transform 0.3s ease-in-out;
}

.image-box h2 {
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 240%;
  line-height: 100%;
  vertical-align: middle;
  color: rgba(0, 0, 0, 1);
  /* width: 185%;
    height: 35%; */
  /* margin-left: -20%; */
}

/* Hover effect */
.image-box:hover {
  transform: translateY(-3px);
}

/* Image Styling */
.image-box img {
  width: 25%;
  height: 30px; /* Fixed height */
}

/* Content inside each box */
.image-content11 {
  margin-top: 10px;
}

.image-content11 h4 {
  font-size: 18px;
  font-weight: bold;
  color: #1f3a67;
}

.image-content11 p {
  font-family: "Raleway";
  font-weight: 600;
  font-size: 24px;
  color: rgba(0, 0, 0, 1);
  margin-top: 20px;
  line-height: 125%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .image-box {
    max-width: 45%; /* 2 images per row */
  }

  .image-box h2 {
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
    width: 185px;
    height: 42px;
  }
}

@media (max-width: 600px) {
  .image-container {
    flex-direction: column;
    align-items: center;
  }

  .image-box h2 {
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
    width: 185px;
    height: 42px;
  }

  .image-box {
    max-width: 80%; /* Full width on small screens */
  }
}

@media (max-width: 480px) {
  .image-box h2 {
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
    width: 185px;
    height: 42px;
  }

  .image-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px; /* Reduce space between items */
    padding: 10px;
    margin-top: 0;
    margin-bottom: 50px;
  }

  /* Adjust image box to take full width */
  .image-box {
    max-width: 50%; /* Makes it occupy most of the screen */
    padding: 10px;
    border-radius: 8px;
  }

  /* Reduce image size */
  .image-box img {
    width: 50%; /* Reduce width */
    height: 40px; /* Adjust height */
  }

  /* Adjust text size */
  .image-content11 p {
    font-size: 16px; /* Reduce text size */
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .image-box h2 {
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 25px;
    line-height: 100%;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
    width: 185px;
    height: 42px;
    margin-left: -2%;
  }

  .image-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px; /* Reduce space between items */
    padding: 10px;
    margin-top: 0;
    margin-bottom: 10px;
  }

  /* Adjust image box to take full width */
  .image-box {
    max-width: 50%; /* Makes it occupy most of the screen */
    padding: 10px;
    border-radius: 8px;
  }

  /* Reduce image size */
  .image-box img {
    width: 50%; /* Reduce width */
    height: 40px; /* Adjust height */
  }

  /* Adjust text size */
  .image-content11 p {
    font-size: 16px; /* Reduce text size */
    margin-top: 10px;
  }
}

/* MOBILE VIEW (For screens up to 600px) */
@media (max-width: 600px) {
  /* Stack images vertically on smaller screens */
  .image-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px; /* Reduce space between items */
    padding: 10px;
    margin-top: 0;
    margin-bottom: 50px;
  }

  /* Adjust image box to take full width */
  .image-box {
    max-width: 50%; /* Makes it occupy most of the screen */
    padding: 10px;
    border-radius: 8px;
  }

  /* Reduce image size */
  .image-box img {
    width: 50%; /* Reduce width */
    height: 40px; /* Adjust height */
  }

  /* Adjust text size */
  .image-content11 p {
    font-size: 16px; /* Reduce text size */
    margin-top: 10px;
  }
}

/**page 3***/

.slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100vh; /* Fixed height */
  overflow: hidden;
  margin-bottom: 2%;
}
.slider-container h1 {
  font-family: "Raleway";
  font-weight: 600;
  text-align: center;
  font-size: 3.4rem;
  color: rgba(0, 24, 55, 1);
  line-height: 60px;
}

/* Wrap all slides */
.slides13 {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Individual Slide */
.slide13 {
  display: flex;
  flex: 1;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  background: none;
  padding: 20px;
  opacity: 0;
  transition: left 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.slide13.active {
  left: 0;
  opacity: 1;
}

/* Image Styling */
.slide-image13 {
  flex: 1;
  padding: 20px;
}

.slide-image13 img {
  width: 130%;
  height: auto;
  border-radius: 10px;
}

/* Content Styling */
.slide-content13 {
  flex: 1;
  padding: 20px;
}

.slide-content13 h2 {
  font-family: "Raleway";
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 50px;
  line-height: 100%;
  color: rgba(0, 24, 55, 1);
}

.slide-content13 p {
  font-family: "Raleway";
  font-weight: 400;
  font-size: 26px;
  line-height: 125%;
  margin-bottom: 50px;
  color: rgba(0, 24, 55, 1);
}

/* Two Extra Images Side by Side */
.extra-images {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.extra-images img {
  width: 200px; /* Adjust size */
  height: auto;
}

/* Responsive: Stack content on small screens */
@media (max-width: 768px) {
  .slide13 {
    flex-direction: column;
    text-align: center;
  }

  .slide-image13 img {
    width: 130%;
    height: auto;
  }
  .extra-images {
    justify-content: center;
  }
  .slide-content13 h2 {
    font-size: 1.3rem; /* Smaller text for very small screens */
    margin-bottom: 15px;
  }
  .slide-content13 {
    margin-top: -100px;
    text-align: left;
  }

  .slide-content13 p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .extra-images img {
    width: 60px; /* Even smaller icons */
  }
  .slider-container h1 {
    font-size: 2.5rem;
  }
}


@media (max-width: 480px) {
  .slide13 {
    flex-direction: column;
    text-align: center;
  }

  .slide-image13 img {
    width: 130%;
    height: auto;
  }
  .extra-images {
    justify-content: center;
  }
  .slide-content13 h2 {
    font-size: 1.3rem; /* Smaller text for very small screens */
    margin-bottom: 15px;
  }
  .slide-content13 {
    margin-top: -100px;
    text-align: left;
  }

  .slide-content13 p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .extra-images img {
    width: 60px; /* Even smaller icons */
  }
  .slider-container h1 {
    font-size: 2.5rem;
  }
}

/*****page4*****/

.slider-container14 {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 20px;
  text-align: center;
}

.share-options {
  position: relative;
  background-color: black;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.share-options.hidden {
  display: none;
}

.share-options a {
  color: #1f3a67;
  font-size: 18px;
  text-decoration: none;
}

.share-options a:hover {
  color: #ff6600;
}


.content14 h4 {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 12px;
  color: rgba(0, 24, 55, 1);
  margin-bottom: 10px;
  line-height: 22px;
  text-transform: uppercase;
  border: 2px solid #1f3a67;
  padding: 7px 14px;
  display: inline-block; /* Ensures the border wraps around the text only */
  text-align: center;
  width: auto;
  border-radius: 30px;
}

.content14 h1 {
  font-size: 50px;
  color: rgba(0, 24, 55, 1);
  font-family: "Raleway";
  margin-bottom: 60px;
  font-weight: 600;
  line-height: 60px;
}

/* Slide Wrapper */
.slides14 {
  display: flex;
  width: 100%;
  height: auto;
  overflow: hidden;
  justify-content: center;
}

/* Individual Slide */
.slide14 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 20px;
  border-radius: 10px;
}

/* Slide Image */
.slide-image14 {
  flex: 1;
  text-align: center;
}

.slide-image14 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Slide Content */
.slide-content14 {
  flex: 1;
  text-align: left;
  padding: 20px;
}

.slide-content14 p {
  font-family: "Raleway";
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 15px;
}

/* Main Content (Menu Buttons) */
.main-content14 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 15px;
}

.menu14 {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  margin-top: 10px;
}

.menu14 img {
  width: 20px;
  height: auto;
  margin-bottom: 5px;
}

.menu14 p {
  font-size: 16px;
  color: rgba(0, 0, 0, 1);
  font-weight: 400;
  font-family: "Raleway";
  line-height: 24px;
  margin-left: 10px;
  margin-bottom: 5px;
}

/* Extra Image */
.image14 {
  text-align: left;
  margin-top: 35px;
}

.image14 img {
  width: 170px;
  height: auto;
  transition: 0.3s;
}


.image14 img:hover {
  background: rgba(50, 125, 240, 1);;
  border-radius: 35px;
  color: white;
}


/* Extra Images Section */
.extra-images14 {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.menu-content14 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-content14 img {
  width: 135px;
  height: auto;
}

.menu-content14 p {
  font-size: 18px;
  color: rgba(1, 25, 56, 1);
  font-weight: 600;
  font-family: "Raleway";
  margin-top: 30px;
  line-height: 26px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide14 {
    flex-direction: column;
    text-align: center;
  }

  .slide-content14 {
    text-align: left;
    padding: 10px;
  }
  .content14 h1 {
    font-size: 1.8rem;
    line-height: 35px;
  }
  .main-content14 {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .menu14 img {
    width: 25px;
  }

  .menu14 p {
    text-align: left;
  }

  .extra-images14 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image14 {
    text-align: center;
  }

  .image14 img {
    width: 150px;
  }

  .menu-content14 p {
    margin-left: 5px;
    text-align: left;
  }
  .menu-content14 img {
    width: 100px;
  }
  .slider-container14 {
    margin-top: -110px;
  }
}

.menu15 {
  padding: 30px;
  min-height: 100vh;
  width: 100%;
}

.main15 {
  position: relative; /* Establish a positioning context for child elements */

  background: url(../img/Roadmaps.png);
  background-repeat: no-repeat;
  background-size: cover;

  height: 100vh;
  padding-top: 100px;
}

/* Slider Container */
.slider16 {
  position: relative;
  width: 90%;

  height: 80%; /* Adjust height as needed */
  overflow: hidden;
  margin: 40px auto;
}

/* Slides Wrapper */
.slides16 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.slide16 {
  flex: 0 0 calc(100% / 3); /* Show 3 slides at a time */
  position: relative;
}

/* Slide Image */
.slide16 img {
  width: 80%;
  height: 100%;
}

/* Slide Content */
.slide-content16 {
  position: absolute;
  top: 10%; /* Position from bottom */
  left: 50%;
  transform: translateX(-60%);
  /* Semi-transparent background */
  color: #fff;
  padding: 10px 20px;
  text-align: left;
  border-radius: 8px;
  width: 80%;
}

.slide-content16 h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.slide-content16 h2 {
  font-family: "Raleway";
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 10px;
}

.slide-content16 p {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 27.52px;
  margin-top: 20px;
  margin-bottom: -30px;
  color: rgba(255, 255, 255, 0.8);
}
/* .divider1 {
    border-top: 1px solid #888; 
    margin: 2px 0; 
    width: 100%;
    margin-left: auto;
    margin-right: auto;
} */

.slide-content16 img {
  width: 50px;
  height: 50px;
  margin-bottom: -70px;
  margin-left: 370px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main15 {
    height: 80vh;
  }
  .slide16 {
    flex: 0 0 calc(100% / 2);
  }

  .slide16 img {
    width: 100%;
    height: 50%;
  }

  .slide-content16 {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .slide-content16 h2 {
    font-size: 22px;
  }

  .slide-content16 p {
    font-size: 16px;
  }
  .slide-content16 img {
    max-width: 40px;
    height: 30px;
    margin-bottom: -30px;
    margin-left: 290px;
    margin-top: 30px;
  }
}

.main1 {
  position: relative; /* Establish a positioning context for child elements */
  width: 100%;

  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 50px;
}

/* Flexbox to Align Content */
.content-container15 {
  display: flex;
  align-items: left;
  justify-content: space-between;
  gap: 20px;
}
/* Image Styling */
.image-content img {
  width: 80px; /* Adjust size as needed */
  max-width: 100%;
  height: auto;
  margin-bottom: 50px;
  border-radius: 10px; /* Optional rounded corners */
}
.image-content1 img {
  width: 100px; /* Adjust size as needed */
  margin-left: -150px;
  height: auto;
  border-radius: 10px; /* Optional rounded corners */
}

.image1 {
  display: block;
}

/* Content Styling */
.slide-content15 {
  max-width: 1000px; /* Restrict width for readability */
  margin-left: 80px; /* Center content and add spacing */
  flex: 1;
}

/* Heading Styling */
.slide-content15 h4 {
  font-family: "Open Sans";
  font-size: 11px;
  font-weight: 700;
  color: #fff; /* Highlight color */
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 3px 20px;
  display: inline-block; /* Ensures the border wraps around the text only */
  text-align: center;
  width: auto;
  line-height: 22px;
}

/* Main Title */
.slide-content15 h2 {
  font-family: "Raleway";
  font-size: 49px;
  font-weight: 600;
  line-height: 58.84px;
  color: #fff; /* Dark blue */
  margin-bottom: 15px;
}

/* Paragraph Styling */
.slide-content15 p {
  font-size: 25px;
  color: #333; /* Dark gray */
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide-content15 h2 {
    font-size: 28px; /* Reduce size for tablets */
  }

  .slide-content15 p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .slide-content15 h2 {
    font-size: 24px; /* Further reduce size for mobiles */
  }

  .slide-content15 p {
    font-size: 14px;
  }
}

/* MOBILE VIEW (For screens up to 480px) */
@media (max-width: 480px) {
  /* Make the container stack elements vertically */
  .content-container15 {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Adjust text content */
  .slide-content15 {
    max-width: 100%;
    padding: 10px;
    margin-left: 2px;
  }

  .slide-content15 h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .slide-content15 p {
    font-size: 14px;
  }

  /* Reduce heading size */
  .slide-content15 h4 {
    font-size: 12px;
    padding: 3px 15px;
  }

  /* Make images responsive */
  .image-content img,
  .image-content1 img {
    width: 70px;
    margin-left: 0;
    display: block;
    margin: auto;
    padding-left: 10px;
  }

  /* Ensure the image block is centered */
  .image1 {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  /* SLIDER SETTINGS */
  .slider16 {
    height: auto;
    margin: 20px auto;
  }

  .slides16 {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  /* Display only 1 slide per row on mobile */
  .slide16 {
    flex: 0 0 100%;
    margin-right: -17px;
    padding-right: 40px;
    margin-left: 17px;
  }

  /* Make slide images full width */
  .slide16 img {
    width: 100%;
    height: auto;
  }

  /* Adjust text overlay */
  .slide-content16 {
    position: absolute;
    bottom: 5%;
    left: 47%;
    transform: translateX(-50%);
    width: 82%;
    text-align: left;
    padding: 10px;
  }

  /* Adjust text sizes */
  .slide-content16 h4 {
    font-size: 12px;
  }

  .slide-content16 h2 {
    font-size: 18px;
    margin-top: -15px;
    margin-bottom: 8px;
  }

  .slide-content16 p {
    font-size: 12px;
    line-height: 18px;
  }

  /* Reduce divider width */
}

/* Slider Container */
.slider17 {
  position: relative;
  width: 90%;

  height: 100%; /* Adjust height as needed */
  overflow: hidden;
  margin: 40px auto;
}

/* Slides Wrapper */
.slides17 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.slide17 {
  flex: 0 0 calc(100% / 4); /* Show 3 slides at a time */
  position: relative;
}

/* Slide Image */
.slide17 img {
  width: 90%;
  height: 100%;
  object-fit: cover;
}

/* Slide Content */
.slide-content17 {
  position: absolute;
  bottom: 10%; /* Position from bottom */
  left: 50%;
  transform: translateX(-60%);
  /* Semi-transparent background */

  padding: 10px 20px;
  text-align: left;
  border-radius: 8px;
  width: 80%;
}

.slide-content17 h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.slide-content17 h2 {
  font-size: 24px;
  color: #1f3a67;
  margin-bottom: 10px;
}

.slide-content17 p {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: -20px;
}
/* .divider1 {
    border-top: 1px solid #888; 
    margin: 2px 0; 
    width: 100%;
    margin-left: auto;
    margin-right: auto;
} */

.slide-content17 img {
  width: 33px;
  height: 36px;
  margin-bottom: -55px;
  margin-left: 250px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide17 {
    flex: 0 0 calc(100% / 2);
  }

  .slide17 img {
    width: 100%;
    height: 50%;
  }

  .slide-content17 {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .slide-content17 h2 {
    font-size: 22px;
  }

  .slide-content17 p {
    font-size: 16px;
  }
  .slide-content17 img {
    max-width: 30px;
    height: 30px;
    margin-bottom: -30px;
    margin-left: 230px;
    margin-top: 30px;
  }
}

.main1 {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 50px;
}

/* Flexbox to Align Content */
.content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Image Styling */
.image-content img {
  width: 80px; /* Adjust size as needed */
  max-width: 170%;
  height: auto;
  margin-bottom: 50px;
  border-radius: 10px; /* Optional rounded corners */
  margin-left: -60px;
}

.image-content1 img {
  width: 100px; /* Adjust size as needed */
  margin-left: -150px;
  height: auto;
  border-radius: 10px; /* Optional rounded corners */
}

.image-content3 img {
  width: 100px; /* Adjust size as needed */
  margin-left: -150px;
  height: auto;
  border-radius: 10px; /* Optional rounded corners */
}

.image-content4 img {
  width: 100px; /* Adjust size as needed */
  margin-left: -150px;
  height: auto;
  border-radius: 10px; /* Optional rounded corners */
}

.image-content {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.default-img {
  width: 80px; /* Keep the first image small */
  height: auto;
  transition: opacity 0.3s ease-in-out;
}

.hover-img {
  position: relative;
  top: -1px;
  left: -40px;
  opacity: 0;
  width: 90px; /* Initially same as first image */
  height: auto;
  transition: opacity 0.3s ease-in-out, width 0.3s ease-in-out,
    height 0.3s ease-in-out;
}

.image-content:hover .hover-img {
  opacity: 1;
  width: 200px; /* Expand width */
  height: 60px; /* Expand height */
}

/* ✅ Responsive for tablets & smaller devices */
@media (max-width: 768px) {
  .default-img {
    width: 60px; /* Reduce size on small screens */
  }

  .hover-img {
    width: 70px;
    left: -30px;
  }

  .image15:hover .hover-img {
    width: 150px; /* Slightly smaller expand size */
    height: 50px;
  }
}

/* ✅ Responsive for mobile devices */
@media (max-width: 480px) {
  .default-img {
    width: 50px;
  }

  .hover-img {
    width: 60px;
    left: -20px;
  }

  .image15:hover .hover-img {
    width: 130px;
    height: 45px;
    margin-top: -44px;
  }
}

.image1 {
  display: block;
}

/* Content Styling */
.slide-content12 {
  max-width: 800px; /* Restrict width for readability */
  margin: 0 auto 30px; /* Center content and add spacing */
  flex: 1;
}

/* Heading Styling */
.slide-content12 h4 {
  font-size: 18px;
  font-weight: bold;
  color: #1f3a67; /* Highlight color */
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 2px solid #1f3a67;
  border-radius: 20px;
  padding: 5px 20px;
  display: inline-block; /* Ensures the border wraps around the text only */
  text-align: center;
  width: auto;
}

/* Main Title */
.slide-content12 h2 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #1f3a67; /* Dark blue */
  margin-bottom: 15px;
}

/* Paragraph Styling */
.slide-content12 p {
  font-size: 25px;
  color: #333; /* Dark gray */
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide-content12 h2 {
    font-size: 28px; /* Reduce size for tablets */
  }

  .slide-content12 p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .slide-content12 h2 {
    font-size: 24px; /* Further reduce size for mobiles */
  }

  .slide-content12 p {
    font-size: 14px;
  }
}

/* MOBILE VIEW (For screens up to 480px) */
@media (max-width: 480px) {
  /* Make the container stack elements vertically */
  .content-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Adjust text content */
  .slide-content12 {
    max-width: 100%;
    padding: 10px;
  }

  .slide-content12 h2 {
    font-size: 24px;
  }

  .slide-content12 p {
    font-size: 14px;
  }

  /* Reduce heading size */
  .slide-content12 h4 {
    font-size: 16px;
    padding: 3px 15px;
  }

  /* Make images responsive */
  .image-content img {
    width: 70px;
    margin-left: 0;
    display: block;
    margin: auto;
    padding-left: 14px;
    margin-top: -20px;
    margin-left: 110px;
  }

  .image-content1 img {
    width: 70px;
    margin-left: 0;
    display: block;
    margin: auto;
    padding-left: 14px;
    margin-top: -20px;
    margin-left: 110px;
  }

  .image-content3 img {
    width: 70px;
    margin-left: 0;
    display: block;
    margin: auto;
    padding-left: 14px;
    margin-top: -20px;
    margin-left: 370%;
  }

  .image-content4 img {
    width: 70px;
    margin-left: 0;
    display: block;
    margin: auto;
    padding-left: 14px;
    margin-top: -20px;
    margin-left: 200%;
  }

  /* Ensure the image block is centered */
  .image15 {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  /* SLIDER SETTINGS */
  .slider17 {
    height: auto;
    margin: 20px auto;
  }

  .slides17 {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  /* Display only 1 slide per row on mobile */
  .slide17 {
    flex: 0 0 100%;
    margin-right: -15px;
    padding-right: 40px;
    margin-left: 17px;
  }

  /* Make slide images full width */
  .slide17 img {
    width: 100%;
    height: auto;
  }

  /* Adjust text overlay */
  .slide-content17 {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: left;
    padding: 10px;
  }

  /* Adjust text sizes */
  .slide-content17 h4 {
    font-size: 12px;
  }

  .slide-content17 h2 {
    font-size: 18px;
  }

  .slide-content17 p {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .slide-content17 img {
    max-width: 27px;
    height: 30px;
    margin-bottom: -25px;
    margin-left: 178px;
    margin-top: 30px;
  }

  /* Reduce divider width */
}

/* Main container */
.menu18 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Main box */
.main18 {
  width: 100%;
  max-width: 1400px;
  position: relative;
}

/* Image container */
.image18 {
  width: 100%;
  position: relative; /* Needed for absolute positioning of content */
}

.image18 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.menu-content18 {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-100%, -50%); /* Center correctly */
  text-align: left;
  padding: 30px;
  width: 600px; /* Reduce width */
  height: 500px; /* Reduce height */
  background: url(../img/Background\ \(5\).png);
  background-size: cover; /* Ensures image covers the full container */
  background-position: center; /* Centers the background */
  background-repeat: no-repeat; /* Prevents repetition */
  border-radius: 10px;
}

.menu-content18 h1 {
  font-family: "Raleway";
  font-weight: 600;
  font-size: 37.28px;
  line-height: 37.28px;
  margin-bottom: 20px;
  color: rgba(0, 24, 55, 1);
}
.menu-content18 h5 {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 12px;
  line-height: 16.4px;
  border: 2px solid #1f3a67;
  padding: 5px 10px;
  display: inline-block; /* Ensures the border wraps around the text only */
  border-radius: 20px;
  width: auto;
  margin-bottom: 20px;
  color: rgba(0, 24, 55, 1);
}

/* FAQ Questions */
.back18 {
  border: 2px solid #e7e4e4;
  padding: 15px;
  margin: 10px 0;
  border-radius: 40px;
  cursor: pointer; /* Makes it clickable */
  position: relative;
}

/* Style for the FAQ question */
.faq-question {
  font-size: 1.1rem;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Style for the arrow */
.arrow {
  font-size: 1.5rem;
  color: #1f3a67;
  transition: transform 0.3s ease-in-out;
}

/* Hide answer initially */
.faq-answer {
  font-size: 0.9rem;
  line-height: 1.5;
  display: none;
  margin-top: 10px;
}

/* When active, rotate arrow */
.active .arrow {
  transform: rotate(180deg);
}

.back18 h4 {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 13.42px;
  line-height: 19.39px;
  margin-bottom: 5px;
  color: rgba(1, 25, 56, 1);
}

.back18 p {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 11.18px;
  line-height: 17.9px;
  color: rgba(106, 115, 145, 1);
}

/* Bottom Right Image */
.bottom-right-image {
  position: absolute;
  bottom: 0;
  right: 8%;
  cursor: pointer;
  width: 145px; /* Adjust as needed */
  transition: transform 0.2s ease-in-out;
}

.bottom-right-image img {
  width: 100%;
  height: auto;
}

.blink-effect {
  animation: blink 0.3s ease-in-out 2;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile-specific adjustments */

  .menu18 {
    padding: 10px;
  }

  .menu-content18 {
    padding: 10px;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }

  .arrow {
    font-size: 1rem;
  }
  .menu-content18 {
    width: 330px;
    left: 95%;
    top: 170%;
  }
  .menu-content18 h1 {
    font-size: 1.5rem;
  }

  .bottom-right-image {
    width: 100px; /* Smaller image for mobile */
    bottom: 5px;
    right: 5px;
    top: -10%;
  }
  .menu-content18 h5 {
    font-size: 0.7 rem;
  }

  .bottom-right-image img {
  width: 100%;
  height: auto;
}
}

.logos {
  overflow: hidden;
  padding: 40px 0;
  background-color:  rgba(248, 250, 255, 0.83);
  white-space: nowrap;
}
.logos:hover .logos-slide1 {
  animation-play-state: paused;
}
.logos-slide1 {
  display: inline-block;
  animation: slide 15s linear infinite;
}
.logos-slide1 img {
  height: 90px;
  margin: 0 40px;
}
/* Animation Keyframes - This makes the logos slide */
@keyframes slide {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}


@media (max-width: 480px) {
  /* Mobile-specific adjustments */

  .menu18 {
    padding: 10px;
  }

  .menu-content18 {
    padding: 10px;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }

  .arrow {
    font-size: 1rem;
  }
  .menu-content18 {
    width: 330px;
    left: 95%;
    top: 170%;
  }
  .menu-content18 h1 {
    font-size: 1.5rem;
  }

  .bottom-right-image {
    width: 100px; /* Smaller image for mobile */
    bottom: 5px;
    right: 5px;
    top: -10%;
  }
  .menu-content18 h5 {
    font-size: 0.7 rem;
  }
}

.logos {
  overflow: hidden;
  padding: 40px 0;
  background-color:  rgba(248, 250, 255, 0.83);
  white-space: nowrap;
}
.logos:hover .logos-slide1 {
  animation-play-state: paused;
}
.logos-slide1 {
  display: inline-block;
  animation: slide 15s linear infinite;
}
.logos-slide1 img {
  height: 90px;
  margin: 0 40px;
}
/* Animation Keyframes - This makes the logos slide */
@keyframes slide {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.uni {
  margin-top: 80px;
  margin-bottom: 30px;
}

.uni h1 {
  font-family: "Raleway";
  font-weight: 600;
  font-size: 32px;
  line-height: 58.84px;
  text-align: center;
  color: rgba(0, 24, 55, 1);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .uni {
    margin-top: 400px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .uni h1 {
    font-size: 1rem;
    line-height: 25px;
    margin-bottom: -10px;
  }
  .logos-slide1 img {
    height: 50px;
    margin: 0 10px;
  }
}

/* Main Slider Container */
.slider-container19 {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 20px;
  text-align: center;
}

/* Slide Title */
.slide-content19 h4 {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 11px;
  line-height: 16.4px;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  border: 1px solid #fff;
  padding: 5px 20px;
  display: inline-block;
  text-align: center;
  width: auto;
  border-radius: 30px;
  margin-bottom: 15px;
}

.slide-content19 h1 {
  font-family: "Raleway";
  font-weight: 600;
  font-size: 40px;
  line-height: 44.74px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 30px;
}

/* Slides Wrapper */
.slides19 {
  display: flex;
  width: 100%;
  height: auto;
  overflow: hidden;
  justify-content: center;
  background-color: #001837;
  border-radius: 20px;
  padding: 20px;
}

/* Individual Slide */
.slide19 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
}

/* Slide Image */
.slide-image19 {
  flex: 1;
  text-align: center;
}

.slide-image19 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Slide Content */
.slide-content19 {
  flex: 1;
  text-align: left;
  padding: 20px;
}

.slide-content19 p {
  font-size: 1.3rem;
  color: #646363;
  margin-bottom: 40px;
}

/* Main Content (Menu) */
.main-content19 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 15px;
}

.menu19 {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  margin-top: 10px;
}

.menu19 img {
  width: 40px;
  height: auto;
  margin-bottom: 10px;
}

.menu19 p {
  font-family: "Raleway";
  font-size: 19px;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  line-height: 28.84px;
 
  text-align: left;
  margin-bottom: -5px;
}

/* Extra Image Section */
.img19 h2 {
  font-family: "Raleway";
  font-weight: 600;
  font-size: 18px;
  color: rgba(255, 255, 255, 1);
  line-height: 19.39px;
  margin-bottom: -20px;
}

.img19 p {
  color: #fff;
}

.img19 {
  margin-top: 50px;
}

/* Extra Images */
.extra-images19 {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.menu-content19 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-content19 img {
  width: 70px;
  height: auto;
}

.menu-content19 p {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 13px;
  color: rgba(55, 114, 255, 1);
  line-height: 17.9px;
  margin-top: 30px;
}

/* Trusted Badge */
.menu-content09 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-content09 img {
  width: 150px;
  height: auto;
}

.menu-content09 h5 {
  font-size: 14px;
  font-family: "Raleway";
  font-weight: 400;
  line-height: 17.9px;
  color: rgba(255, 255, 255, 1);
}

/* ========== HOW IT WORKS SECTION ========== */
.menu08 {
  padding: 30px;
  width: 100%;
  min-height: 100vh;
}

.main08 {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 50px;
}

/* Slider Container */
.slider07 {
  position: relative;
  width: 90%;
  height: auto;
  overflow: hidden;
  margin: 40px auto;
}

/* Slides */
.slides07 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide07 {
  flex: 0 0 calc(100% / 3);
  position: relative;
 
}

/* Slide Image */
.slide07 img {
  width: 95%;
  height: auto;
  border-radius: 10px;
}

/* Slide Content */
.slide-content07 {
  position: absolute;
  top: 70%;
  left: 44%;
  transform: translateX(-50%);
  text-align: left;
  width: 80%;
}

.slide-content07 h2 {
  font-family: "Raleway";
  font-size: 20.48px;
  font-weight: 600;
  line-height: 31.36px;
  margin-bottom: 4px;
  color: rgba(0, 24, 55, 1);
}

.slide-content07 p {
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 15px;
  color: rgba(106, 115, 145, 1);
}

/* Content Alignment */
.content-container08 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

/* Image Styling */
.image-content08 img {
  width: 320px;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 10px;
}

/* Heading Styling */
.slide-content08 h4 {
  font-family: "Open Sans";
  font-size: 11px;
  font-weight: 700;
  color: rgba(0, 24, 55, 1);
  line-height: 21.56px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 2px solid #001837;
  border-radius: 20px;
  padding: 5px 20px;
  display: inline-block;
  margin-right: 500px;
}

.slide-content08 h2 {
  font-family: "Raleway";
  font-size: 49px;
  font-weight: 600;
  color: rgba(0, 24, 55, 1);
  line-height: 58.8px;
  margin-bottom: 15px;
  margin-left: 80px;
  vertical-align: middle;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .slider-container19 {
    padding: 15px;
  }

  .slide19 {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .slide-image19 img {
    width: 90%;
    max-width: 350px;
    margin: auto;
  }

  .slide-content19 {
    text-align: center;
    padding: 10px;
  }

  .slide-content19 h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .menu19 {
    align-items: center;
    text-align: center;
  }

  .menu19 p {
    font-size: 1rem;
  }

  .extra-images19 {
    flex-direction: column;
    align-items: center;
  }

  .img19 h2 {
    font-size: 1.2rem;
  }

  .menu08 {
    padding: 20px;
  }

  .content-container08 {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .image-content08 img {
    width: 150px;
  }

  .slider07 {
    width: 100%;
  }

  .slides07 {
    flex-direction: column;
  }

  .slide07 {
    width: 100%;
    text-align: center;
  }

  .slide-content07 h2 {
    font-size: 1.3rem;
  }

  .slide-content08 h2 {
    font-family: "Raleway";
    font-size: 49px;
    font-weight: 600;
    color: rgba(0, 24, 55, 1);
    line-height: 58.8px;
    margin-bottom: 15px;
    margin-left: 55px;
    vertical-align: middle;
  }
}

@media (max-width: 480px) {
  .slide-content19 h1 {
    font-size: 1.5rem;
  }

  .slide-content19 p {
    font-size: 0.9rem;
  }

  .menu19 p {
    font-size: 0.9rem;
  }

  .slide-content07 h2 {
    font-size: 1.1rem;
  }

  .slide-content07 p {
    font-size: 0.9rem;
  }
  .slide-content08 h4 {
    font-size: 11px;
    font-weight: "Open Sans";
    color: #001837;
    text-transform: uppercase;
    margin-bottom: 10px;
    border: 2px solid #001837;
    border-radius: 20px;
    padding: 5px 20px;
    display: inline-block;
    margin-right: 5px;
  }

  .slide-content08 h2 {
    font-family: "Raleway";
    font-size: 250%;
    font-weight: 600;
    color: rgba(0, 24, 55, 1);
    line-height: 120%;
    margin-bottom: 15px;
    vertical-align: middle;
    margin-right: 17%;
  }

  .slide07 {
    position: relative;
    width: 100%;
    max-width: 350px; /* Adjust width for mobile */
    margin: auto;
    overflow: hidden; /* Ensures content stays inside */
    margin-bottom: 30px;
  }

  .slide07 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }

  .slide-content07 {
    position: relative;
    bottom: 120px;
    left: 160px;
    width: 90%;

    color: black;
    text-align: left;
    box-sizing: border-box;
  }

  .slide-content07 h2 {
    font-size: 1rem;
    margin: 5px 0;
    margin-top: 5px;
    margin-left: 18px;
  }

  .slide-content07 p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 5px 0;
    margin-left: 17px;
  }
}

@media (max-width: 768px) {
  .slide07 {
    position: relative;
    width: 100%;
    max-width: 350px; /* Adjust width for mobile */
    margin: auto;
    overflow: hidden; /* Ensures content stays inside */
    margin-bottom: 30px;
  }

  .slide07 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }

  .slide-content07 {
    position: relative;
    /* bottom: 120px; */
    left: 170px;
    width: 90%;

    color: black;
    text-align: left;
    box-sizing: border-box;
    bottom: 7rem;
  }

  .slide-content07 h2 {
    font-size: 1rem;
    margin: 5px 0;
    margin-top: 1%;
  }

  .slide-content07 p {
    font-size: 72%;
    line-height: 125%;
    margin: 5px 0;
  }
}
.review-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -80px;
  cursor: pointer;
  position: relative;
  margin-bottom: 60px;
  margin-left: 400px; /* Default for large screens */
}

/* Make the button image responsive */
#review-nav-btn {
  width: 100px; /* Adjust according to image size */
  max-width: 100%; /* Ensures it scales properly */
  height: auto;
}

/* Responsive styles for tablets */
@media (max-width: 1024px) {
  .review-navigation {
    margin-left: 200px; /* Reduce left margin */
    margin-top: -60px; /* Adjust position */
  }
}

/* Responsive styles for mobile devices */
@media (max-width: 768px) {
  .review-navigation {
    margin-left: 0; /* Center it */
    margin-top: -50px;
    margin-bottom: 40px;
  }

  #review-nav-btn {
    width: 80px; /* Slightly smaller button */
  }
}

/* Smaller screens (Phones) */
@media (max-width: 480px) {
  .review-navigation {
    margin-left: 0;
    margin-top: -40px;
    margin-bottom: 30px;
  }

  #review-nav-btn {
    width: 50px; /* Further reduce size */
    margin-top: 20px;
    margin-left: 200px;
  }
}

.carousel__nav {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -14%; /* Positioning at the bottom of the image */
  left: 53%;
  transform: translateX(-50%);
  padding: 10px 0;
  gap: 0.8rem;
  z-index: 10; /* Ensure it appears above the image */
}

.carousel__indicator {
  border: 0;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: white;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.carousel__indicator.current-slide {
  background: orange;
  width: 7px;
  height: 7px;
}

.is-hidden {
  display: none;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .carousel__nav {
    display: none !important; /* Hides the entire dot navigation */
  }
}

@media (max-width: 480px) {
 .carousel__nav {
    display: none !important; /* Hides the entire dot navigation */
  }

  

}
