@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");

body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  background: rgba(248, 250, 255, 0.65);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
 
}
.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;
  gap: 20px; /* Adjust spacing between elements */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  position: sticky;
  top: 0; /* Makes it stick to the top */
}

/* 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: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 30px;
    transition: 0.3s;
    margin-left: 30px;
  }
}

/*home page*/

.slider {
  position: relative;
  width: 100%;

  height: auto; /* Change from 100vh to auto */
  overflow: hidden;
  margin-top: 52px;
  border-radius: 30px;
  margin-bottom: 10px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: 55vh;
  object-fit: cover;
  transition: transform 1.5s ease-in-out;
  border-radius: 25px;
  display: block; /* Removes inline spacing issues */
}

/* Responsive Fix */
@media (max-width: 768px) {
  .slider {
    height: auto; /* Change height to auto to fit the image */
  }

  .slide img {
    height: 25vh;
  }
}

/* 🚀 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: 700px;
  z-index: 10;
  /* Optional dark background for readability */

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

/* Heading Style */
.slide-content h2 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}
.slide-content h4 {
  font-size: 1rem;
  font-weight: bold;
  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;
}

/* Paragraph Style */
.slide-content p {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 30px;
}

.slide-content1 {
  position: absolute; /* Ensures text moves with the slide */
  top: 52%;
  left: -15%;
  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: left;
}

/* Heading Style */
.slide-content1 h2 {
  font-family: "Raleway", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
  padding-left: 340px;
  text-align: left;
}

/* Paragraph Style */
.slide-content1 p {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 10px;
  font-weight: 500;
  text-align: left;
  padding-left: 342px;
  letter-spacing: 1px;
}

.slide-content1 h4 {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 5px;
  margin-top: 5px;
  font-weight: 500;
  text-align: left;
  padding-left: 342px;
  letter-spacing: 1px;
}

/* 🌟 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;
  }
}

/* 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: 14px;
    margin-top: -15px;
  }

  .slide-content p {
    font-size: 10px;
    margin-top: -5px;
  }

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

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

  .slide-content1 h2 {
    font-size: 2rem; /* Reduce font size for smaller screens */
    padding-left: 20px; /* Reduce padding */
    text-align: center; /* Center align text */
  }

  .slide-content1 p {
    font-size: 13px; /* Slightly reduce font size */
    padding-left: 20px; /* Reduce padding */
    text-align: center; /* Center align text */
  }
  .slide-content1 h4 {
    font-size: 13px; /* Slightly reduce font size */
    padding-left: 20px; /* Reduce padding */
    text-align: center; /* Center align text */
  }
}

@media screen and (max-width: 480px) {
  body{
    overflow-x: hidden;
  }

  .slide-content1 h2 {
    font-size: 1.3rem; /* Further reduce font size for very small screens */
  }

  .slide-content1 p,
  .slide-content1 h4 {
    font-size: 8px;
    margin-top: -10px;
  }
}

/* 🚀 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 */
  text-align: left;
}

.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 */
  }
}

/*----------------------------------------------------------------------------------*/

.contaner {
  width: 100%;
  margin: 50px auto;
  background: rgba(248, 250, 255, 0.65);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}

/* Sidebar (left section) */
.left {
  width: 460px;
  height: auto;
  position: sticky;
  top: 120px;
  padding-left: 40px;
  align-self: flex-start;
}

/* Image containers */
.image1,
.image2 {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.image2 {
  margin-top: 45px;
}

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

/* Overlay content */
.overlay-content,
.overlay-content2 {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.overlay-content {
  text-align: left;
}

/* Title Styling */
.overlay-content h2 {
  display: flex; /* Align icon and text */
  align-items: center; /* Center vertically */
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(0, 24, 55, 1);
  line-height: 34px;
  text-align: left;
  font-family: "Raleway", sans-serif;
  gap: 5px;
}

.icon-image2 {
  width: 20px; /* Adjust size */
  height: 20px;
  margin-right: 10px; /* Space between icon and text */
}

.overlay-content2 h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
  color: rgba(55, 114, 255, 1);
  line-height: 34px;
  text-align: center;
  font-family: "Raleway";
}

.overlay-content2 h3 {
  font-size: 40px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 15px;
  font-family: "Raleway";
  line-height: 125%;
}

.call-btn,
.contact-btn {
  width: 100%;
  max-width: 180px;
  display: block;
  margin: 20px auto;
  margin-bottom: 20px;
}

/* List Styling */
.overlay-content ul {
  list-style-position: inside; /* Ensures bullets are inside */
  padding-left: 0; /* Removes extra padding */
  text-align: left; /* Centers the text */
}

.overlay-content ul li {
  font-size: 16px;
  font-weight: 600;
  color: #1c2856;
  margin: 30px 0;
  font-family: "Raleway";
  line-height: 20px;
  letter-spacing: 0.5px;
}

/* Highlighted active item */
.overlay-content ul .active {
  background: #162d5f;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

/*----------------------------------LEFT THIRD BOX---------------------------------------*/
.image3 {
  position: relative;
  width: 100%;
  max-width: 400px; /* Matches uploaded design */
  height: auto;
  border-radius: 15px; /* Rounded edges */
  border: 1px solid rgba(199, 205, 215, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  margin: auto; /* Centering */
  margin-top: 50px;
}

.overlay-content4 {
  width: 100%;
  text-align: center;
  color: #0a2540; /* Dark navy for text */
}

.overlay-content4 h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* Spacing between icon and text */
  font-family: "Raleway";
}

/* Styling for the download icon */
.download-icon {
  width: 20px; /* Adjust size */
  height: auto;
}

/* Clickable App Store & Google Play Buttons */
.app-button {
  display: inline-block;
  margin: 6px 0;
  transition: transform 0.3s ease-in-out;
}

.app-button:hover {
  transform: scale(1.05);
}

/* Image Styling */
.appstore,
.googlepay {
  width: 200px; /* Adjust size */
  max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .image3 {
    max-width: 320px;
    padding: 15px;
  }

  .overlay-content4 h2 {
    font-size: 1.3rem;
  }

  .appstore,
  .googlepay {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .image3 {
    max-width: 300px;
    padding: 12px;
  }

  .overlay-content4 h2 {
    font-size: 1.2rem;
  }

  .appstore,
  .googlepay {
    width: 160px;
  }
}

/*--------------------------------------------------------------------------------------*/
/* Right section */
.right {
  width: calc(100% - 500px);
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  /* overflow-y: auto; */
  gap: 20px;
  max-width: 100%;
  padding-right: 40px;
  margin-bottom: 20px;
}

.box {
  height: 250px;
  width: 100%;
  margin-bottom: 50px;
  border-radius: 10px;
}

.slider-container1 {
  display: flex;
  flex-direction: column; /* Stack content above image */
  align-items: flex-start;
  gap: 20px;
}

/* Text Content */
.content1 {
  width: 100%;
  text-align: left;
}

.content1 h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #162d5f;
  font-weight: 700;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 30px;
  border: 2px solid black;
}

.content1 h1 {
  font-family: "Raleway" sans-serif;
  font-size: 34px;
  color: #1c2856;
  font-weight: 600;
  margin: 16px 0;
  /* line-height: 46px; */
}

.content1 p {
  font-family: "Raleway";
  font-size: 16px;
  color: rgba(106, 115, 145, 1);
  line-height: 26px;
  word-wrap: break-word;
  font-weight: 400;
}

/* Image Styling */
.slider-container1 img {
  width: 100%; /* Full width */
  max-width: 1400px; /* Increase max width for larger screens */
  height: auto;
  border-radius: 10px;
  align-self: center; /* Align image properly */
  object-fit: cover;
}

/* 🔹 Responsive for Tablets */
@media (max-width: 1024px) {
  .right {
    width: 100%;
  }

  .slider-container1 img {
    max-width: 1100px;
  }
}

/* 🔹 Responsive for Mobile Devices */
@media (max-width: 768px) {
  .slider-container1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
  }

  .content1 {
    width: 100%;
  }

  .content1 h1 {
    font-size: 24px; /* Slightly larger for better readability */
  }

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

  .slider-container1 img {
    max-width: 90%; /* Set a percentage width for better scaling */
    height: auto;
  }
}

/* 🔹 Extra Small Devices (Phones) */
@media (max-width: 480px) {
  .content1 h1 {
    font-size: 20px;
  }

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

  .content1 h4 {
    font-size: 12px;
  }

  .slider-container1 img {
    width: 100%; /* Make sure it doesn't overflow */
    max-width: 100%;
    height: auto;
  }
}

/* .right div {
    background-color: #e68900;
    height: 250px;
    width: 100%;
}

.right div + div {
    margin-top: 50px;
} */

/* 📌 Responsive adjustments */
@media (max-width: 1024px) {
  .contaner {
    flex-direction: column;
    align-items: center;
  }

  .left {
    width: 100%;
    padding-left: 0;
    position: static;
    text-align: center;
  }

  .image1,
  .image2 {
    max-width: 90%;
  }

  .overlay-content,
  .overlay-content2 {
    width: 90%;
    left: 5%;
  }

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

  /* .right div {
        width: 90%;
        margin: 20px auto;
    } */

  .box {
    width: 90%;
    margin: 20px auto;
  }
}

/* 📌 Optimized for Mobile (Small Devices) */
@media (max-width: 768px) {
  .image1 img,
  .image2 img {
    width: 100%;
  }

  .overlay-content,
  .overlay-content2 {
    width: 90%;
    left: 5%;
    top: 5%;
    padding: 10px;
  }

  .overlay-content h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .overlay-content2 h2 {
    font-size: 30px;
  }

  .overlay-content2 h3 {
    font-size: 25px;
  }

  .overlay-content ul li {
    font-size: 14px;
    padding: 1px 0;
  }

  .box {
    width: 106%;
  }

  .call-btn,
  .contact-btn {
    max-width: 200px;
  }
}

/* 📌 Extra Small Screens (Mobile Phones) */
@media (max-width: 480px) {
  .overlay-content,
  .overlay-content2 {
    width: 95%;
    left: 2.5%;
    top: 5%;
    padding: 8px;
  }

  .overlay-content h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .overlay-content2 h2 {
    font-size: 30px;
    line-height: 26px;
  }

  .overlay-content2 h3 {
    font-size: 25px;
  }

  .overlay-content ul li {
    font-size: 13px;
    padding: 1px 0;
  }

  .call-btn,
  .contact-btn {
    max-width: 180px;
  }

  .overlay-content ul {
    list-style-type: none; /* Removes bullets */
    padding-left: 20px;
  }

  .overlay-content ul li::before {
    content: "• "; /* Manually add bullet */
    color: #1c2856; /* Bullet color */
    font-size: 16px;
    font-weight: bold;
  }
}

.scroll-link {
  cursor: pointer;
  padding: 8px;
  transition: background-color 0.3s, color 0.3s;
}

.scroll-link:hover,
.scroll-link.active {
  background-color: #162d5f; /* Dark Blue */
  color: white;
  border-radius: 20px;
}

/*-------------------------------------------------------------------------------------*/

/*box2*/

.box2 {
  height: 250px;
  width: 100%;
  margin-bottom: 50px;
  border-radius: 10px;
  margin-top: 600px;
}

/* 🔹 Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .box2 {
    height: 220px;
    margin-top: 300px;
  }
}

/* 🔹 Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .box2 {
    height: 200px;
    margin-top: 200px;
    margin-bottom: 40px;
  }
}

/* 🔹 Extra Small Devices (Phones - max-width: 480px) */
@media (max-width: 480px) {
  .box2 {
    height: 180px;
    margin-top: 450px;
    margin-bottom: 30px;
    border-radius: 5px;
  }
}

/* General Styles */
.benefits-container {
  text-align: center;
  padding: 50px 10px;
}

.benefits-container h2 {
  font-family: "Raleway";
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 30px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
 
}

.benefit-box {
  /* background: #f9f9f9; */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease-in-out;
}

.benefit-box:hover {
  transform: translateY(-5px);
}

.benefit-box img {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  margin-right: 170px;
}

.benefit-box h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: rgba(0, 24, 55, 1);
  text-align: left;
  font-weight: 600;
  font-family: "Raleway";
  line-height: 28px;
}

.benefit-box p {
  font-size: 15px;
  color: rgba(106, 115, 145, 1);
  text-align: left;
  font-family: "Open Sans";
  font-weight: 400;
  line-height: 24px;
}

/* 🔹 Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefit-box h3 {
    font-size: 18px;
  }

  .benefit-box p {
    font-size: 15px;
  }
}

/* 🔹 Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-box {
    padding: 15px;
  }

  .benefit-box img {
    width: 60px;
    height: 60px;
  }

  .benefit-box h3 {
    font-size: 16px;
  }

  .benefit-box p {
    font-size: 14px;
  }
}

/* 🔹 Extra Small Devices (Phones - max-width: 480px) */
@media (max-width: 480px) {
  .benefits-container {
    padding: 2px 15px;
  }

  .benefits-container h2 {
    font-size: 24px;
  }

  .benefit-box {
    padding: 10px;
    border-radius: 8px;
  }

  .benefit-box img {
    width: 50px;
    height: 50px;
  }

  .benefit-box h3 {
    font-size: 14px;
  }

  .benefit-box p {
    font-size: 13px;
  }
}

/*----------------------------------------------------------------------------------------*/
/* CTA Section */
.cta-container {
  position: relative;
  width: 100%;
  max-width: 1280px; /* Adjusts width on large screens */
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 70px;
}

/* Background Image */
.cta-background {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover; /* Prevents image stretching */
  border-radius: 20px;
}

/* Overlay Content */
.overlay-content4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%; /* Adjusts for smaller screens */
  max-width: 800px;
  padding: 20px;
}

/* Headings and Paragraph */
.overlay-content4 h2 {
  font-size: 49px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.2;
  font-family: "Raleway";
}

.overlay-content4 p {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: "Raleway";
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; /* Ensures buttons wrap properly on smaller screens */
  margin-top: 40px;
}

/* Button Styling */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Download Button */
.download-btn {
  background-color: #4c78ff;
  color: white;
  border: 2px solid #4c78ff;
}

.download-btn:hover {
  background-color: white;
  color: #4c78ff;
}

/* Schedule Button */
.schedule-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.schedule-btn:hover {
  background-color: white;
  color: #333;
}

/* Icons */
.btn i {
  margin-left: 8px;
}

/* 🔹 Responsive Styles */
@media (max-width: 768px) {
  .overlay-content4 {
    width: 90%;
    padding: 15px;
  }

  .overlay-content4 h2 {
    font-size: 30px;
  }

  .overlay-content4 p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 14px;
    width: 80%;
  }
}

@media (max-width: 480px) {
  .cta-container {
    max-width: 100%;
    margin-top: 30px;
  }

  .cta-background {
    max-height: 250px;
    /* padding-left: 35px; */
    border-radius: 20px;
    width: 1100px;
    margin-left: 40px;
    max-width: 1200px;
  }

  .overlay-content4 {
    width: 95%;
    top: 45%;
  }

  .overlay-content4 h2 {
    font-size: 20px;
    padding-left: 40px;
    margin-top: 40px;
  }

  .overlay-content4 p {
    font-size: 12px;
    padding-left: 38px;
    margin-top: -20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: -1px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 12px;
    width: 70%;
    /* padding-left: 0px; */
    margin-left: 30px;
  }
}

/*-----------------------------------------------------------------------------------------*/
/* General Box */
.box3 {
  height: 250px;
  width: 100%;
  margin-bottom: 50px;
  border-radius: 10px;
  margin-top: 620px;
}

/* Slider Container */
.slider-container14 {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: "100px";
  padding: 20px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 70px;
}

/* Content */
.content14 h4 {
  font-size: 1.1rem;
  color: rgba(0, 24, 55, 1);
  margin-bottom: 10px;
  text-transform: uppercase;
  border: 2px solid #1f3a67;
  padding: 10px 20px;
  display: inline-block;
  text-align: center;
  width: auto;
  border-radius: 30px;
}

.content14 h1 {
  font-size: 3rem;
  color: rgba(0, 24, 55, 1);
  margin-bottom: 25px;
}

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

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

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

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

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

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

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

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

/* Menu */
.menu14 {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  margin-top: 2px;
}

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

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

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

.image14 img {
  width: 150px;
  height: auto;
}

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

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

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

.menu-content14 p {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  margin-top: 30px;
}

/* 🔹 Responsive Design */
@media (max-width: 768px) {
  
.slide-image14 img {
  width: 100%;
  max-width: 120%;
  height: auto;
  border-radius: 10px;
  height: 10%;
}

  .slide14 {
    flex-direction: column;
    text-align: center;
  }

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

  .content14 h1 {
    font-size: 1.8rem;
  }

  .main-content14 {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .menu14 {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .menu14 img {
    width: 50px;
  }

  .menu14 p {
    text-align: center;
  }

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

  .image14 {
    text-align: center;
  }

  .image14 img {
    width: 120px;
  }

  .menu-content14 p {
    margin-left: 0;
    text-align: center;
  }

  .menu-content14 img {
    width: 100px;
  }
}

@media (max-width: 480px) {
  
.slide-image14 img {
  width: 100%;
  max-width: 120%;
  height: auto;
  border-radius: 10px;
  height: 100%;
}

  .slider-container14 {
    padding-top: 250px;
  }

  .content14 h1 {
    font-size: 1.5rem;
  }

  .slide-image14 {
    padding-left: 10px;
        margin-top: 150px;
        width: 300px;
        padding-right: 50px;
        margin-left: 70px;
  }

  .slide-content14 h2 {
    font-size: 1.5rem;
    line-height: 30px;
    margin-left: 30px;
  }

  .slide-content14 p {
    font-size: 1rem;
  }

  .menu14 img {
    width: 15px;
  }

  .menu14 p {
    font-size: 0.8rem;
  }

  .menu-content14 img {
    width: 80px;
  }

  .image14 img {
    width: 100px;
  }
}
/* Main Right Section */
.main-right-section {
  display: flex;
  flex-direction: column;
  padding: 20px;
  width: 100%;
}

.slider-container7 {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 150px;
}

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

.neet {
    min-width: 33.33%; /* Show 3 boxes at a time */
    box-sizing: border-box;
    position: relative;
    text-align: center;
    overflow: hidden;

}

.background-image {
    width: 95%;
    height: 280px;
    display: block;
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
}

.overlay-content7 {
    position: relative;
    bottom: 250px;
    left: 20px;
    right: 0;
    color: rgba(0, 24, 55, 1);
    width: 100%;
    text-align: left;
}

.overlay-content7 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 24.36px;
    letter-spacing: 1px;
}

.overlay-content7 p {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2rem;
    color: rgba(106, 115, 145, 1);
    margin-top: 20px;
    position: relative;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
    .background-image {
        width: 90%;
        height: 300px;
    }
    .overlay-content7 {
        bottom: 60px;
        left: 30px;
    }
    .overlay-content7 h2 {
        font-size: 20px;
        line-height: 28px;
    }
    .overlay-content7 p {
        font-size: 14px;
        margin-top: 30px;
    }

    
.slider-container7 {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 100px;
}
}

@media (max-width: 768px) {
    .neet {
        min-width: 100%; /* Show 1 box at a time */
        padding-left: 40px;
    }
    .background-image {
        width: 95%;
        height: 280px;
    }
    .overlay-content7 {
        bottom: 50px;
        left: 20px;
    }
    .overlay-content7 h2 {
        font-size: 18px;
        line-height: 26px;
    }
    .overlay-content7 p {
        font-size: 13px;
        margin-top: 20px;
    }

    
.slider-container7 {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 100px;
}
}

@media (max-width: 480px) {
    .background-image {
        width: 100%;
        height: 250px;
    }
    .overlay-content7 {
        bottom: 40px;
        left: 15px;
        margin-bottom: 60px;
    }
    .overlay-content7 h2 {
        font-size: 16px;
        line-height: 22px;
        margin-top: -184px;
    }
    .overlay-content7 p {
        font-size: 12px;
        margin-top: 15px;
    }

    
.slider-container7 {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 90px;
}
}



.image-content1 img {
  width: 100px; /* Adjust size as needed */
  margin-left: 700%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30%;
}

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

@media (max-width: 480px) {

  .image15 {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

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

@media (max-width: 1024px) {
  .image15 {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

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

/* 🔹 Responsive Adjustments for Mobile */
@media (max-width: 768px) {
  .image15 {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .image-content1 img {
    width: 70px;
    margin-left: 0;
    display: block;
    margin: auto;
    padding-left: 10px;
    margin-left: 370%;
    margin-bottom: 20px;
}
}




/*-----------------------------------box 4----------------------------------------------------*/
/* 🔹 Main Container */
.box4 {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 10px;
    margin-top: 590px;
}

/* 🔹 Responsive Adjustments for Tablets */
@media (max-width: 1024px) {
    .box4 {
        margin-top: 300px;
    }
}

/* 🔹 Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .box4 {
        margin-top: 200px;
        margin-bottom: 40px;
    }
}

/* 🔹 Extra Small Devices (Phones) */
@media (max-width: 480px) {
    .box4 {
        margin-top: 60%;
        margin-bottom: 30px;
        border-radius: 5px;
    }
}

.cta-background2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 280%;  /* Further increased width */
    height: 100%; /* Further increased height */
    object-fit: cover;
    border-radius: 60px;
}

/* 📌 Container for Image & Content */
.cta-container2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 860px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    padding: 50px;
    margin-left: 30px;
}

/* 📌 Left Side Image */
.image-container {
    flex: 1;
    max-width: 30%;
    z-index: 1;
    height: 100%;
}

.cta-side-image {
    width: 102%;
    height: 50%;
    border-radius: 22px;
    object-fit: cover;
}

/* 📌 Right Side Content */
.overlay-content5 {
    flex: 1;
    color: white;
    padding: 50px 35px;
    text-align: left;
    z-index: 1;
    margin-top: -20px;
}

/* 📌 Badge */
.badge {
    border: 1px solid white;
    color: white;
    padding: 5px 25px;
    font-size: 11px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 21.56px;
    font-family: 'Open Sans';
}

/* 📌 Heading */
.overlay-content5 h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
    font-family: "Raleway";
}

/* 📌 Paragraph */
.overlay-content5 p {
    font-size: 16px;
    font-weight: 500;
    font-family: "Raleway";
    line-height: 30px;
    margin-bottom: 20px;
   
}

/* 📌 Call-to-Action Text */
.cta-text {
    font-weight: 700;
    font-size: 22px;
    margin-top: 24px;
    border-left: 4px solid #4c6ef5;
    padding-left: 10px;
    line-height: 32px;
    font-family: 'Raleway';
}

/* 📌 Responsive Design */

/* 🔹 Tablets */
@media (max-width: 1024px) {
    .cta-background2 {
        width: 250%;
        height: 180%;
    }

    .cta-container2 {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        margin-left: 0;
    }

    .image-container {
        max-width: 80%;
        margin: auto;
    }

    .cta-side-image {
        width: 100%;
        max-height: 350px;
        border-radius: 15px;
    }

    .overlay-content5 {
        width: 100%;
        padding: 30px 20px;
        text-align: center;
    }

    .overlay-content5 h2 {
        font-size: 28px;
    }

    .overlay-content5 p {
        font-size: 16px;
    }

    .cta-text {
        font-size: 18px;
    }
}

/* 🔹 Mobile Devices */
@media (max-width: 768px) {
    .cta-background2 {
        width: 270%;
        height: 200%;
        border-radius: 40px;
    }

    .cta-container2 {
        width: 95%;
        padding: 20px;
    }

    .image-container {
        max-width: 100%;
    }

    .overlay-content5 {
        padding: 20px 15px;
    }

    .overlay-content5 h2 {
        font-size: 24px;
    }

    .overlay-content5 p {
        font-size: 14px;
    }

    .cta-text {
        font-size: 16px;
    }
}

/* 🔹 Extra Small Devices (Phones) */
@media (max-width: 480px) {
    .cta-background2 {
        width: 300%;
        height: 220%;
        border-radius: 30px;
    }

    .cta-container2 {
        flex-direction: column;
        padding: 15px;
        margin-top: 1030px;
        margin-left: 28px;
    }

    .image-container {
        max-width: 100%;
    }

    .cta-side-image {
        max-height: 250px;
    }

    .overlay-content5 {

        padding: 35px 10px;
    }

    .overlay-content5 h2 {
        font-size: 20px;
    }

    .overlay-content5 p {
        font-size: 12px;
    }

    .cta-text {
        font-size: 14px;
    }
}



/*-------------------------------------------box 5--------------------------------------------------------------------------------------*/
/* Main Section Styling */
.box5 {
    padding: 5px;
   
    
}

/* Section Title */
.support-container h2 {
    color: rgba(0, 24, 55, 1);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: 'Raleway';
    line-height: 100%;
    margin-left: 15px;
}

/* Slides Wrapper */
.slides-container {
    display: flex;
    justify-content: space-between;
    gap: 17px;
    flex-wrap: wrap;
}

/* Individual Slide */
.slide2 {
    flex: 1;
    max-width: 200%;
    overflow: hidden;
    text-align: left;
    padding-bottom: 20px;
    
}

/* Image Styling */
.slide2 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* Slightly rounded edges */
}

/* Slide Content */
.slide-content2 {
    padding: 20px;
    color: #1f3a67;
    position: absolute;
    margin-top: 4%;
   
}

/* Section Headers (Button-like style) */
.slide-content2 h4 {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    color: rgba(55, 114, 255, 1);
    margin-bottom: 5px;
    margin-top: -260px;
    font-family: 'Open Sans', sans-serif;
    line-height: 16.57px;
    letter-spacing: 0.35px;
    display: block;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    margin-left: -2px;
}



/* Main Heading Inside Cards */
.slide-content2 h2 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 9px;
    text-align: left;
    margin-left: -3px;
    line-height: 19.09px;
    font-family: 'Raleway';
    color: rgba(0, 24, 55, 1);

}

/* Small Divider */
.divider2 {
    border-top: 1px solid rgba(1, 25, 56, 0.1); /* Make it more visible */
    width: 40%; /* Adjust width to align with content */
    margin: 10px auto; /* Center it */
    opacity: 1; /* Ensure it's fully visible */
    position: relative; /* Prevent it from going behind the image */
    z-index: 10; /* Ensure it's above other elements */
    margin-right: 570px;

}

.divider3 {
  border-top: 1px solid rgba(1, 25, 56, 0.1); /* Make it more visible */
  width: 40%; /* Adjust width to align with content */
  margin: 10px auto; /* Center it */
  opacity: 1; /* Ensure it's fully visible */
  position: relative; /* Prevent it from going behind the image */
  z-index: 10; /* Ensure it's above other elements */
  margin-right: 600px;

}

.divider4 {
  border-top: 1px solid rgba(1, 25, 56, 0.1); /* Make it more visible */
  width: 50%; /* Adjust width to align with content */
  margin: 10px auto; /* Center it */
  opacity: 1; /* Ensure it's fully visible */
  position: relative; /* Prevent it from going behind the image */
  z-index: 10; /* Ensure it's above other elements */
  margin-right: 470px;

}

/* Text Content */
.slide-content2 p {
    font-size: 13px;
    color: rgba(106, 115, 145, 1);
    margin-left: -3px;
    line-height: 18.57px;
    font-weight: 400;
    font-family: 'Open Sans';
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide2 {
        max-width: 48%;
    }

    .slide-content2 h4 {
      font-size: 10px;
      text-transform: uppercase;
      font-weight: 400;
      color: rgba(55, 114, 255, 1);
      margin-bottom: 5px;
      margin-top: -270px;
      font-family: 'Open Sans', sans-serif;
      line-height: 16.57px;
      letter-spacing: 0.35px;
      display: block;
      background: none;
      border: none;
      padding: 0;
      text-align: left;
      margin-left: -2px;
  }

  .slide2 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* Slightly rounded edges */
}

.slide-content2 {
  padding: 20px;
  color: #1f3a67;
  position: relative;
 
 
}

}

@media (max-width: 768px) {
    .slides-container {
        flex-direction: column;
        align-items: center;
        width: 280px;
        margin-left: 55px;
    }

    .slide2 {
        max-width: 90%;
    }

    .support-container h2 {
        font-size: 24px;
    }

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

    .slide-content2 p {
        font-size: 13px;
    }

    .slide-content2 h4 {
      font-size: 10px;
      text-transform: uppercase;
      font-weight: 400;
      color: rgba(55, 114, 255, 1);
      margin-bottom: 5px;
      margin-top: -270px;
      font-family: 'Open Sans', sans-serif;
      line-height: 16.57px;
      letter-spacing: 0.35px;
      display: block;
      background: none;
      border: none;
      padding: 0;
      text-align: left;
      margin-left: -2px;
  }

  .slide2 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* Slightly rounded edges */
}

.slide-content2 {
  padding: 20px;
  color: #1f3a67;
  position: relative;
 
 
}

}

@media (max-width: 480px) {

    .box5 {
        margin-bottom: -100px;
    }

    .slide2 {
        max-width: 100%;
    }

    .slide-content2 h2 {
        font-size: 80%;
        line-height: 140%
    }

    .slide-content2 p {
        font-size: 65%;
        line-height: 140%;
    }
    .slide-content2 h4 {
      font-size: 55%;
      text-transform: uppercase;
      font-weight: 400;
      color: rgba(55, 114, 255, 1);
      margin-bottom: 1%;
      margin-top: -90%;
      font-family: 'Open Sans', sans-serif;
      line-height: 16.57px;
      letter-spacing: 0.35px;
      display: block;
      background: none;
      border: none;
      padding: 0;
      text-align: left;
      
  }

  .slide2 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* Slightly rounded edges */
}

.slide-content2 {
  padding: 20px;
  color: #1f3a67;
  position: relative;
 
 
}

}
