* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans Devanagari", sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
}

/* For Chrome, Safari, Edge */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* For Firefox */
html,
body {
  scrollbar-width: none; /* hides scrollbar */
  -ms-overflow-style: none; /* IE/Edge (legacy) */
  overflow-y: scroll; /* keep layout stable */
}
/* ..................navigation bar.................... */
.navbar1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  color: black;
  padding: 20px 40px;
}

.navbar1 .logo {
  width: 200px;
  height: 80px;
}

.navbar1 h1 {
  flex: 1;
  text-align: center;
  font-size: 40px;
  color: #25408d;
}

.logo-container {
  display: flex;
  align-items: center;
}

header {
  background-color: #fff;
  display: flex;
  justify-content: center;
  /* Centers the navbar horizontally */
  align-items: center;
  /* Centers the navbar vertically */
  height: 100px;
  /* Adjust height as needed */
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-evenly;
  /* Centers content inside navbar */
  align-items: center;
  /* Centers vertically */
  position: relative;
  width: 100%;
  /* Adjust width for better centering */
  height: auto;
  padding: 20px 10px;
  background-color: #25408d;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center items in nav-menu */
  margin: 0;
  gap: 20px;
}

.nav-menu li {
  position: relative;
  margin-left: 0px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  padding: 8px 8px;
  font-weight: normal;
  font-size: 16px;
}

.nav-menu li:hover > a {
  background-color: #f97316;
  color: white;
}

.nav-menu .dropdown {
  display: none;
  /* Initially hide the dropdown */
  position: absolute;
  /* Position it relative to the parent li */
  left: 0px;
  /* Adjust this value based on the width of the dropdown */
  top: 33px;

  background-color: #ebfbff;
  /* Background color for the dropdown */
  padding: 10px 0px;
  /* Padding for the dropdown */
  z-index: 100;
  /* Ensures it stays above other elements */
  text-align: left;
  /* Align text to the left */
  list-style-type: none;
  color: black;
  border: grey 2px solid;

  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  min-width: 220px;
}

.dropdown {
  display: none;
}

.has-submenu.active > .dropdown {
  display: block;
}

.has-submenu.active .arrow {
  transform: rotate(180deg);
}

.dropdown li {
  margin: 0;
}

.dropdown li a {
  padding: 10px 10px;
  display: block;
  color: black;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 4px;
  color: #fff;
  margin: 5px 0;
  background-color: #fff;
}

/* hide admin logo for mobile */
/* Hide login icon on mobile */
@media (max-width: 768px) {
  .nav-menu li a i.fa-user-lock {
    display: none;
  }
}

/* Add space to the right of the Register button */
/* Style for active link */
nav ul li a.active {
  color: white;
  background-color: #f97316;
  font-weight: 600;
}

/* Optional: Hover state for links */
nav ul li a:hover {
  color: #3a5a99;
  /* Change color on hover */
}

/* Hide submenus by default */
.sub-dropdown {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #ebfbff;
  padding: 0px 0px;
  min-width: 200px;
  border: 2px solid #000000;
  list-style: none;
}

.has-submenu {
  position: relative;
}

.has-submenu:hover .sub-dropdown {
  display: block;
}

.sub-dropdown li a {
  display: block;
  padding: 8px 15px;
  color: black;
  text-decoration: none;
}

.sub-dropdown li a:hover {
  background-color: #ddd;
}

/* Add space between text and arrow */
.has-dropdown a,
.has-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

/* default state (arrow down) */
.arrow {
  transition: transform 0.3s ease;
}

/* when submenu is open → rotate arrow upward */
.arrow.up {
  transform: rotate(180deg);
}

.sub-dropdown hr {
  border: none;
  height: 1px;
  background-color: #000000;
  margin: 0;
  width: 100%;
}
/* ...........................navigation bar end....................... */

/* ........................background Image..................... */
.main11 {
  width: 100%;
  /* height: 100vh; */
  margin: 0;
  padding: 0;
}

.background-image img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  display: block;
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust the height as needed */
  overflow: hidden;
}

.slides-container {
  display: flex;
  width: 90; /* 4 slides = 4*100% */
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Important: cover the container without distortion */
}

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgb(18, 18, 118);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #fff;
}

/* button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: black;
  border: none;
  border-radius: 50px;
  padding: 15px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
} */

@media (min-width: 769px) and (max-width: 1024px) {
  .menu-toggle {
    display: flex;
    /* Show hamburger menu */
    position: relative;
    left: 45%;
  }

  .nav-menu {
    display: none;
    /* Hide menu initially */
    flex-direction: column;
    align-items: flex-end;
    width: 50%;
    background-color: #25408d;
    position: absolute;
    top: 60px;
    right: 0px;
    padding: 10px 0;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
    /* Show menu when active */
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    display: block;
    padding: 15px;
    width: 100%;
  }

  .navbar1 {
    display: flex;
    flex-direction: row;
    /* Keep elements in one row */
    align-items: center;
    justify-content: space-between;
    /* Adjust spacing */
    width: 100%;
    /* Ensure it fits inside the screen */
    padding: 5px 5px 5px 1px;
    /* Reduce padding */
    box-sizing: border-box;
    /* Prevent width overflow */
    overflow: hidden;
  }

  .slider {
    width: 90%;
  }
}

/* ✅ Mobile View Styles */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
    position: relative;
    left: 45%;
  }

  .nav-menu {
    display: none;
    /* Hide menu initially */
    flex-direction: column;
    width: 70%;
    background-color: #25408d;
    position: absolute;
    top: 70px;
    right: 0px;
    padding: 0px 0;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
    /* Show menu when active */
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    display: block;
    padding: 10px;
    width: 100%;
  }

  /* ✅ Dropdowns in Mobile View */
  .dropdown,
  .sub-dropdown {
    position: relative;
    width: 100%;
    box-shadow: none;
    border: none;
  }

  .nav-menu .dropdown {
    top: 40px;
    left: 0px;
  }

  .has-dropdown.active .dropdown,
  .has-submenu.active .sub-dropdown {
    display: block;
  }

  .sub-dropdown {
    position: relative;
    /* Change to relative */
    left: 0;
    /* Reset left position */
    top: 0;
    /* Reset top position */
    width: 100%;
    /* Make it full width */
    box-shadow: none;
    /* Remove shadow */
    border: none;
    /* Remove border */
  }

  .has-submenu.active .sub-dropdown {
    display: block;
    /* Ensure submenu appears when clicked */
  }
}

/* ✅ Mobile View */
@media screen and (max-width: 768px) {
  .navbar1 {
    display: flex;
    flex-direction: row;
    /* Keep elements in one row */
    align-items: center;
    justify-content: space-between;
    /* Adjust spacing */
    width: 100%;
    /* Ensure it fits inside the screen */
    padding: 5px 5px 5px 1px;
    /* Reduce padding */
    box-sizing: border-box;
    /* Prevent width overflow */
    overflow: hidden;
  }

  .navbar1 .logo {
    width: 70px;
    /* Reduce logo size */
    height: 30px;
    margin-left: -10px;
  }

  .navbar1 h1 {
    font-size: 12px;
    /* Keep text readable */
    margin: 0 auto;
    /* Center the text */
    text-align: center;
    white-space: nowrap;
    /* Prevent text from breaking */
    flex: 1;
  }
}

/*home page*/
.slider {
  position: relative;
  width: 100%;
  background-color: #fff;
  height: 100vh;
  overflow: hidden;
  margin-top: -20px;
  /* margin-bottom: 5px; */
  z-index: 1;
}

.slides {
  display: flex;
  width: 100%;
  animation: slideAnimation 16s infinite;
}

.slides11 {
  display: flex;
  width: 100%;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Keyframes for slide animation */
@keyframes slideAnimation {
  0% {
    transform: translateX(0%);
  }

  25% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(-200%);
  }

  75% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(0%);
  }
}

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

  .slide img {
    height: 250px;
  }
}

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

  .slide img {
    height: 250px;
  }

  .background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

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

/* ✅ Tab Headings */
.tabs {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

.tab-button {
  background-color: #fff;
  color: black;
  border: none;
  padding: 20px 20px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 0px;
  transition: background-color 0.3s ease;
  position: relative;
}

.tab-button.active {
  background-color: #0a3d62;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* ✅ Add bottom line when active */
.tab-button.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  /* Adjust the position below the button */
  width: 80%;
  margin-left: 10px;
  margin-right: 0px;
  height: 2px;
  /* Line thickness */
  background-color: #ffbb00;
  /* Line color */
}

.tabs-container {
  flex: 1.5;
  /* Take more space on the left */
  max-width: 800px;
  text-align: left;
  /* Align content text */
}

/* ✅ Tab Content */
.tab-content {
  display: none;
  align-items: left;

  border: 2px solid none;
  border-radius: 0px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  color: #ccd8ff;
  background-color: #0a3d62;
  height: 550px;
  /* Limit height for scrolling */
  overflow: hidden;
  /* Enable vertical scrolling */
  padding: 20px;
  text-align: center;
  /* Align text properly */
}

/* ✅ Show Active Tab */
.tab-content.active {
  display: block;
}

/* ✅ Wrapper to animate scrolling */
.tab-content .scroll-container {
  display: flex;
  flex-direction: column;
  height: 1000px;
  /* Make the scroll-container take full height */
  position: relative;
  animation: scrollContent 10s linear infinite;
}

/* ✅ Remove scrolling animation from individual <p> */
.scroll-container p {
  margin-bottom: 10px;
  font-size: 1.5rem;
  margin-top: 50px;
  text-align: left;
}

.scroll-container h1 {
  font-size: 2.5rem;
}

.tab-image {
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Centers vertically (if needed) */
  width: 100%;
  /* Full width of the container */
  margin-top: 30px;
}

.tab-image img {
  width: 300px;
  /* Adjust width as needed */
  height: auto;
  /* Maintain aspect ratio */
  max-height: 300px;
  /* Limits height */
  margin-bottom: 30px;
}

/* ✅ Hide scrollbar */
.tab-content::-webkit-scrollbar {
  display: none;
  /* Hides the scrollbar completely */
}

.tab-content:hover .scroll-container {
  animation-play-state: paused;
}

/* ✅ Auto-scroll animation */
@keyframes scrollContent {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
    /* Moves content up */
  }
}

.scroll-container {
  margin: auto;
  padding: 20px;
}

.news-item {
  text-align: left;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  /* Stack elements vertically */
  gap: 10px;
  /* Space between <p> and button */
  align-items: flex-start;
  /* Align everything to the left */
}

.news-item p {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 5px;
  /* Ensure space between text and button */
  display: block;
}

@keyframes blinkZoom {
  0% {
    background-color: #fff;
    transform: scale(1);
  }

  /* Black & Normal Size */
  25% {
    background-color: #fff;
    transform: scale(1.1);
  }

  /* Dark Gray & Slightly Bigger */
  50% {
    background-color: #fff;
    transform: scale(1);
  }

  /* Black & Normal */
  75% {
    background-color: #fff;
    transform: scale(0.9);
  }

  /* Dark Gray & Slightly Smaller */
  100% {
    background-color: #fff;
    transform: scale(1);
  }

  /* Black & Normal */
}

.news-button {
  display: inline-block;
  font-size: 14px;
  /* Reduce button font size */
  padding: 5px 8px;
  /* Reduce button padding */
  background-color: #c9ec2f;
  /* Button background */
  border-radius: 20px;
  /* Rounder edges */
  border: 2px solid #fff;
}

.news-button a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  background-color: #fff;
  padding: 3px 6px;
  border-radius: 20px;
  display: inline-block;
  animation: blinkZoom 0.6s infinite ease-in-out;
  /* Blinking + Zoom effect */
}

.news-button:hover {
  background-color: #b0d624;
  /* Darker shade on hover */
  text-decoration: underline;
  color: #fff;
}

@media (max-width: 600px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    /* Stack items on smaller screens */
  }

  .news-item p {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 5px;
    /* Ensure space between text and button */
    display: block;
  }
}

.menu11 {
  min-height: 100vh;

  background: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;

  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* ✅ Image Styling (Left Side) */
.image-container {
  flex: 1;
  text-align: right;
  /* Aligns image to the left */
  /* border: 2px solid none; */
  border-radius: 5px;
  max-width: 400px;
  background-color: #ebfbff;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);

  height: 650px;
  /* Limit height for scrolling */
  overflow-y: auto;
  /* Enable vertical scrolling */
  padding: 20px;
  text-align: center;
}

.image-container1 {
  flex: 1;
  text-align: right;
  /* Aligns image to the left */
  border: 2px solid none;
  border-radius: 0px;
  max-width: 400px;

  height: 600px;
  /* Limit height for scrolling */
  overflow-y: auto;
  /* Enable vertical scrolling */
  padding: 20px;
  text-align: center;
}

/* ✅ Image Styling */
.image-container1 img {
  width: 350px;
  /* Adjust image size */
  height: auto;
  border-radius: 10px;
}

/* ✅ Image Styling */
.image-container img {
  width: 350px;
  /* Adjust image size */
  height: auto;
  border-radius: 10px;
}

/* ✅ Container for Image & Tabs */
.container {
  display: flex;
  justify-content: space-between;
  /* Moves image left & tabs right */
  align-items: center;
  gap: 40px;
  padding: 20px;
  width: 90%;
  margin: auto;
}

/* ✅ Responsive Design for Smaller Screens */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    /* Stack image & tabs vertically */
    align-items: center;
    text-align: center;
  }

  .tabs {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }

  .tabs-container {
    max-width: 100%;
    text-align: center;
  }

  .image-container {
    text-align: center;
  }

  .tab-button {
    background-color: #fff;
    color: black;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 12px;
    border-radius: 0px;
    transition: background-color 0.3s ease;
  }

  .container {
    display: flex;
    justify-content: space-between;
    /* Moves image left & tabs right */
    align-items: center;
    gap: 40px;
    padding: 5px;
    width: 90%;
    margin: auto;
  }

  .tab-content {
    height: 350px;
    font-size: 13px;
  }

  .image-container h3 h2 {
    font-size: 1.6rem;
  }

  .tab-button.active::after {
    top: 80%;
    margin-left: 5px;
  }
}

.image-container h2 {
  margin-top: 20px;
  font-size: 1.8rem;
  color: #780000;
}

.image-container h3 {
  margin-top: 10px;
  font-size: 1.6rem;
}

.pdf-button {
  display: block;
  width: 150px;
  /* Adjust width as needed */
  margin: 10px auto;
  /* Centers the button */
  padding: 8px 12px;
  background-color: #007bff;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.pdf-button:hover {
  background-color: #0056b3;
}

/* ..............................Footer Start................................... */

footer {
  background: url("/img/Footer/Footer_Background.svg") no-repeat center
    center/cover; /* 🌟 background image */
  color: white;
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Optional: dark overlay for readability */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Footer Container */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px;
  flex-wrap: wrap; /* 🌟 ensures wrapping on smaller screens */
}

/*  Footer Column 1 (Google Map) */
.footer-column1 {
  flex: 1;
  text-align: left;
  min-width: 300px; /* ensures it doesn’t shrink too much */
}

.footer-map {
  width: 100%;
  max-width: 600px;
  height: 400px;
  border: none;
}
.heading-toll-free {
  color: #f97316;
  font-weight: 700;
  font-size: 20px;
}
/* Footer Column 2 */
.footer-column2 {
  flex: 2;
  padding: 0 20px;
  text-align: left;
  margin-left: 30px;
  min-width: 280px;
}

.footer-red-block {
  max-width: 1400px;
  background-color: #25408d;
  color: white;
  text-align: center;
  padding: 20px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  margin: 10px auto;
}

.footer-red-block p {
  margin: 0;
}

.phone {
  color: #780000 !important;
  font-weight: bold;
}

/* Footer Column 3 */
.footer-column3 {
  flex: 2;
  padding: 0 20px;
  text-align: left;
  min-width: 280px;
}

/* Column content */
.content13,
.content14 {
  margin-bottom: 20px;
}

.content13 h3,
.content14 h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.content13 p,
.content14 p {
  font-size: 14px;
  line-height: 1.8;
  color: #000000;
}

.content14 a {
  text-decoration: none;
  color: #000000;
  font-weight: 700;
}

/* 🌟 Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column1,
  .footer-column2,
  .footer-column3 {
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }

  .footer-map {
    max-width: 100%;
    height: 250px;
  }

  .footer-column2 {
    margin-left: 0;
  }

  .content14,
  .content13 {
    width: 100%;
    /* text-align: center; */
    text-align: left;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .footer-map {
    height: 200px;
  }

  .content13 h3,
  .content14 h3 {
    font-size: 18px;
  }

  .content13 p,
  .content14 p {
    font-size: 13px;
  }

  .footer-red-block {
    font-size: 12px;
    padding: 15px;
  }
}

/* Footer total count */
/* Make the visitor count white */
.footer-red-block .addresss {
  color: white !important;
  font-weight: normal;
}

.footer-red-block .view {
  text-align: right;
  margin-top: -20px;
  font-size: 12px;
}

.footer-red-block .view2 {
  font-size: 12px;
  text-align: right;
  margin-top: 12px;
}

.footer-red-block .current-year {
  margin-top: 10px;
}

.footer-red-block .current-year #copyright-year {
  font-size: 12px;
  color: white;
}

.footer-red-block #visitorCount {
  color: white; /* White text */
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .footer-red-block .view {
    text-align: center;
    margin-top: 10px;
  }

  .footer-red-block .view2 {
    text-align: center; /* center on mobile */
    margin-top: 5px;
    font-size: 11px; /* slightly smaller for mobile */
  }

  .footer-red-block .current-year {
    text-align: center;
    margin-top: 8px;
  }
}
/* ...................footer end............................................ */
/****aboutus*****/
/* about Part image + content */
/* Parent container */
.intro-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

/* Left text card */
.intro-text {
  flex: 1 1 600px;
  padding: 25px 30px;
  background: #fff;
  border-radius: 10px;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Right image card */
.intro-card {
  flex: 0 0 320px;
  background: #f2f9ff;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  border: 1px solid #25408d;
}

.intro-card img {
  width: 100%;
  max-width: 300px;
}

.intro-card h3 {
  margin-top: 14px;
  font-size: 20px;
  font-weight: bold;
  color: black;
}

.intro-card h2 {
  font-size: 25px;
  color: #25408d;
  margin-top: 6px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .intro-section {
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center align items */
  }

  .intro-text {
    flex: 1 1 100%;
    text-align: justify;
  }

  .intro-card {
    flex: 1 1 100%;
    max-width: 400px;
  }
}

/* Mobile (<= 576px) */
@media (max-width: 576px) {
  .intro-section {
    flex-direction: column; /* Stack image and text vertically */
    gap: 20px; /* Add space between image and text */
  }

  .intro-card {
    padding: 15px;
    order: 1; /* Place image above text */
  }

  .intro-text {
    font-size: 14px;
    padding: 15px;
    order: 2; /* Place text below image */
  }

  .intro-card img {
    width: 100%;
    max-width: 250px; /* Ensure image doesn't stretch too much */
    margin-bottom: 20px; /* Space between image and text */
  }

  .intro-card h3 {
    font-size: 16px;
  }

  .intro-card p {
    font-size: 13px;
  }
}

/* end */
.menu21 {
  min-height: 100vh;

  background: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;

  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 30px;
}

/* Basic Layout for content-container */
.content-container {
  display: flex;
  /* Align items side by side */
  align-items: center;
  /* Vertically align the items in the center */
  padding: 20px;
}

/* Left Side Content */
.content-left {
  flex: 1;
  /* Take up equal space */
  padding-right: 20px;
  /* Space between content and image */
  max-width: 600px;
  margin-left: 110px;
}

.content-left p {
  font-size: 24px;

  line-height: 2;
  text-align: justify;
  /* aligns text from both sides */
  text-justify: inter-word;
}

/* Right Side Image */
.content-right {
  flex: 1;
  margin-left: 180px;
}

.content-right img {
  width: 100%;
  /* Make image responsive */
  max-width: 500px;
  /* Optional: Limit the image size */
  height: auto;
  display: block;
  margin: 0 auto;
  /* Center the image */
}

/* @media (min-width: 769px) and (max-width: 1024) {
  .content-right {
    width: 100%;
    font-size: 18px;
  }
} */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
    /* Stack items vertically */
    text-align: center;
    /* Center align everything */
  }

  .content-left {
    width: 90%;
    /* Ensure content fits within screen */
    padding: 0;
    /* Remove extra padding */
    text-align: center;
    /* Center text */
    margin: 0 auto;
    /* Center block */
  }

  .content-left p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.7;
    text-align: left;
  }

  .content-right {
    width: 100%;
    font-size: 18px;
    /* Ensure image takes full width */
    /* margin-left: 0px; */
  }

  .content-right img {
    max-width: 80%;
    /* Make image responsive and smaller */
    margin-top: 10px;
    /* Add some spacing between text and image */
  }

  .menu21 {
    padding: 5px;
  }
}

/*...........................service A...........................................*/

.table-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.table-scroll {
  overflow-x: auto; /* enables horizontal scroll */
  -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */
  width: 100%;
}

/* Background wrapper for desktop/tablet */
.table-bg {
  background: url("/img/services_bg_Img.svg") no-repeat center center/cover;
  padding: 30px 50px;
  position: relative;
}

/* Optional overlay for readability */
.table-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.menu31 {
  position: relative;
  z-index: 1;
}
/* Styling for the Table */
.info-table {
  width: 100%;
  background-color: white;
  max-width: 2200px;
  border-collapse: collapse;
  margin: 0px auto;
  border-bottom: 2px solid #2563eb;
  border-left: 2px solid #2563eb;
  border-right: 2px solid #2563eb;
}

/* Table Header (Keep Border) */
.info-table thead th {
  color: #000;
  font-weight: bold;
  padding: 18px;
  font-size: 1.3rem;
  text-align: center;
  border: 2px solid #2563eb;
  /* Keep border for header */
}

/* Remove Borders from Table Body */
.info-table tbody td {
  padding: 12px 8px 12px 8px;
  text-align: center;
  border: none;
  /* Removes horizontal lines */
  border-left: 2px solid #2563eb;
  /* Add left border for vertical lines */
  border-right: 2px solid #2563eb;
  /* Add right border for vertical lines */
}

/* Remove the left border from the first column and right border from the last column */
.info-table tbody td:first-child,
.info-table thead th:first-child {
  border-left: none;
}

.info-table tbody td:last-child,
.info-table thead th:last-child {
  border-right: none;
}

.menu31 h1 {
  text-align: center;
  margin: 30px;
  font-size: 2.5rem;
  color: black;
}

/* Mobile Table Wrapper */
@media (max-width: 768px) {
  .table-bg {
    padding: 20px 15px;
  }

  .table-container {
    width: 100%;
    overflow-x: auto; /* horizontal scroll */
    padding: 0px; /* reduced padding */
    -webkit-overflow-scrolling: touch; /* smooth scrolling */
  }

  .info-table {
    width: 100%;
    min-width: 700px; /* ensures table is readable */
    font-size: 14px;
    border-collapse: collapse;
  }

  .info-table th,
  .info-table td {
    text-align: center;
    padding: 8px 5px;
    white-space: nowrap; /* prevents text from breaking */
  }

  .info-table thead {
    display: table-header-group; /* keep headers visible */
  }

  .info-table tbody tr {
    display: table-row;
    border-bottom: 2px solid #2563eb;
  }

  .info-table td {
    display: table-cell; /* normal table cells */
    text-align: center;
    border-left: 2px solid #2563eb;
    border-right: 2px solid #2563eb;
  }

  .info-table td:first-child {
    border-left: none;
  }

  .info-table td:last-child {
    border-right: none;
  }
  .menu31 h1 {
    text-align: center;
    margin: 10px;
    font-size: 1.5rem;
    color: black;
  }
}

/* Row borders for desktop & tablet */
@media (min-width: 769px) {
  .info-table tbody tr {
    border-bottom: 2px solid #2563eb; /* horizontal line between rows */
  }

  /* Optional: remove border from the last row */
  .info-table tbody tr:last-child {
    border-bottom: none;
  }
}
/* .........................................services A end ............................................. */

/***services 2***/

/* ✅ Make the main container full screen */
.main41 {
  width: 100vw;
  height: 75vh;
  overflow: hidden;
  position: relative;
  margin-top: -20px;
}

/* ✅ Full-screen image */
.slide41 img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; /* put image behind overlay */
}

/* ✅ Overlay */
.slide41::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* above image, below text */
}

/* ✅ H1 text on image */
.slide41 h1 {
  position: absolute;
  top: 10%; /* keep your original positioning */
  left: 60%;
  color: #ffffff;
  font-size: 3.5rem;
  text-align: center;
  padding: 10px 20px;
  z-index: 3;
}

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

  .slider41 {
    height: 250px;
  }

  .slide41 img {
    height: 250px;
  }

  .slide41 h1 {
    position: absolute;
    top: 20%;
    /* Center vertically */
    left: 50%;
    /* Center horizontally */
    transform: translate(-50%, -50%);
    /* Perfect centering */
    color: #ffffff;
    /* Text color */
    font-size: 1.5rem;
    /* Adjust text size */
    text-align: center;
    /* Optional: Add a dark background behind text */
    padding: 10px 20px;
    /* Add padding for better visibility */
    /* Slightly rounded corners */
  }
}

/* last container for the div */
/* Container */
.img4 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.wide-card2 {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1100px;
  height: 700px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;

  /* background image only at bottom */
  background: url("../img/service-background/background.png") bottom/cover
    no-repeat;

  display: flex;
  flex-direction: column;
  align-items: center; /* center horizontally */
  justify-content: flex-start; /* start from top */
  padding: 30px;
}

.wide-content {
  display: flex;
  justify-content: center;
  align-items: center; /* logo + h2 center */
  gap: 15px;
  margin-bottom: 20px;
}

.wide-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
  text-align: left;
  margin-left: 20px;
}

.wide-content1 p,
ul,
li {
  text-align: justify;
  max-width: 95%;
  margin: 0 auto 15px;
  line-height: 1.4;
}

.wide-card2 h5 {
  text-align: center;
  margin: 5px 0;
}

/* Background and container for the section */
.background11 {
  background: url(../img/background11.png);
  /* Light background color */
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main {
  width: 100%;
  max-width: 80%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* Allow the content to wrap on small screens */
}

.img3 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.img4 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.box12 {
  width: 550px;
  height: 470px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
  position: relative;
  /* Necessary for absolute positioning */
  color: #000;
  overflow: hidden;
  /* Ensures content stays inside */
  z-index: 1;
}

.back-image11 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group 44.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image12 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group\ 107.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image13 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-background/Group\ 132.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image14 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group\ 461.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image15 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group\ 40.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image16 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group\ 41.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image17 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group\ 110.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image18 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group\ 13.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image19 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/services2/imageeeee.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image20 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group\ 38.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image21 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group\ 39.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image22 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group\ 42.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image23 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group\ 45.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image24 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group\ 47.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image25 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-background/Group\ 124.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image26 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-background/Group\ 120.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image27 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-background/Group\ 123.png");
  /* ✅ Corrected Image Path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* ✅ Moves background behind content */
}

.back-image28 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-background/services_bg_18.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.box12 h5 {
  text-align: left;
  /* Align text to left */
  display: block;
  /* Ensure h5 takes full width */
  width: 100%;
  /* Makes sure it spans full width */
  margin: 10px 0;
  /* Adds spacing */
  margin-left: 40px;
  color: #0d67c7;
  font-size: 1.3rem;
}

.box12 a {
  text-decoration: none;
  color: #0171e8;
}

.bottom-img {
  position: absolute;
  bottom: 9px;
  right: 14px;
  width: 40px;
  height: 40px;
}

.bottom-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.box13 {
  width: 550px;
  height: 470px;
  background: url("../img/image\\(12\).png");
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;

  align-items: center;

  text-align: center;

  transition: transform 0.3s ease;
}

.img-content42 img {
  width: 150px;
  max-height: 100px;
  margin-bottom: 15px;
  justify-content: flex-start;
  text-align: left;
  align-items: left;
}

.img-content42 {
  max-width: 200px;
  text-align: left;
  align-items: left;
}

.menu12 h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
  text-align: left;
  margin-left: 20px;
}

/* ✅ Hover effect */
.box12:hover {
  transform: scale(1.05);
}

/* Hover effect for the boxes */
.box13:hover {
  transform: translateY(-10px);
}

.menu12 {
  display: flex;
  margin-top: -40px;
}

.box12 p {
  text-align: justify;
  font-size: 0.9rem;
  padding: 20px;
}

.box12 .link-box9 {
  margin-top: 50px;
}

.box12 p .read-btn {
  display: inline-block;
  background-color: #f97316; /* orange */
  color: #fff; /* white text */
  padding: 6px 12px;
  border-radius: 6px; /* rounded pill shape */
  text-decoration: none; /* remove underline */
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.box12 p .read-btn:hover {
  background-color: #ea580c; /* darker orange on hover */
}

.content12 {
  width: 100%;
  padding-right: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.content12 h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #1f3a67;
  margin-bottom: 20px;
}

/* Container for the whole layout */
.column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column11 {
  display: flex;
}

/* Row container */
.row11 {
  display: block;
  justify-content: space-between;
  width: 100%;
  height: 5%;

  margin-left: -50px;
}

.row12 {
  display: block;
  justify-content: space-between;
  width: 100%;
  height: 5%;
  margin-left: 40px;
}

/* ✅ Mobile view adjustments */
@media (max-width: 768px) {
  .img3 {
    flex-direction: column;
    /* Stack boxes vertically */
    align-items: center;
    margin-top: -10px;
  }

  .box12 {
    width: 100%;
    /* Slight margin on smaller screens */
    max-width: 100%;
    padding: 15px;
  }

  .box13 {
    /* Slight margin on smaller screens */
    max-width: 100%;
  }

  .box12 h2 {
    font-size: 1rem;
  }

  .box12 p {
    font-size: 0.6rem;
  }

  .bottom-img {
    width: 35px;
    /* Smaller icons */
    height: 35px;
    bottom: 20px;
    /* Adjust distance from bottom */
    right: 14px;
  }

  .img-content42 img {
    width: 100px;
    max-height: 100px;
    margin-bottom: 15px;
    justify-content: flex-start;
    text-align: left;
    align-items: left;
  }

  .box12 h5 {
    font-size: 0.9rem;
  }
}

/*****contact us***/

.collage {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
}

.row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.row img:hover {
  transform: scale(1.05);
}

/* Overlay styling */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

.overlay-img {
  width: 20vw;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.overlay.active .overlay-img {
  transform: scale(1);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  z-index: 1000;
}

.main41 {
  position: relative;
  width: 100%;
  height: 500px; /* adjust height as needed */
  overflow: hidden;
}

.background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(2px); /*Blur effect */
  transform: scale(1.1); /* Slight zoom to hide blur edges */
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  animation: slideAnimation 12s infinite;
}

.slider-image {
  min-width: 100%;
  height: 100%;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* use 'cover' if you want it to fill */
  display: block;
}

/* Auto slide animation */
@keyframes slideAnimation {
  0% {
    transform: translateX(0);
  }
  33% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-100%);
  }
  73% {
    transform: translateX(-100%);
  }
  80% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-200%);
  }
}

.background91 {
  background-color: #fff;
  padding: 0px 0;
}

.container91 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.section91 {
  text-align: center;
  margin-bottom: 40px;
}

.main91 {
  font-size: 1.3em;
  font-weight: bold;
  color: #3289c3;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.main92 {
  font-size: 2.5em;
  color: #333;
}

.row91 {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  margin-top: 100px;
}

.col91 {
  flex: 1;
  display: flex;
  align-items: center;
}

.d-flex91 {
  border: 1px solid #0119381a;
  align-items: center;
  width: 320px;
  padding: 20px;
  background: url(../img/contact/contact1.svg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  height: 330px;
}

.d-flex92 {
  border: 1px solid #0119381a;
  align-items: center;
  width: 320px;
  padding: 20px;
  background: url(../img/contact/contact2.svg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  height: 330px;
}

.d-flex93 {
  border: 1px solid #0119381a;
  align-items: center;
  width: 320px;
  padding: 20px;
  background: url(../img/contact/contact3.svg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  height: 330px;
}

.d-flex94 {
  border: 1px solid #0119381a;
  align-items: center;
  width: 320px;
  padding: 20px;
  background: url(../img/contact/contact4.svg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  height: 330px;
}

.bg-primary91 {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 60px;
  height: 60px;
}

.ps-91 {
  padding-left: 20px;
  margin-top: -50px;
}

.ps-91 p {
  font-size: 1.2em;
  margin-bottom: 10px;
  width: 250px;
}

.ps-91 h4 {
  font-size: 1.7em;
  color: #25408d;
  margin-bottom: 20px;
}

.text-primary91 {
  color: #000000;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.section91 h1 {
  font-size: 3.5rem;
}

.section91 h5 {
  font-size: 1.5rem;
}

.form-control {
  border-radius: 5px;
  padding: 15px;
  background-color: #ecf0ff40;
  border: 1px dashed #f97316;
  font-size: 1em;
  width: 100%;
}

textarea.form-control {
  resize: none;
}

.btn-primary93 {
  background-color: #1f3a67;
  border-color: #1f3a67;
  padding: 12px 20px;
  font-size: 1.1em;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s;
  cursor: pointer;
  width: 600px;
}

.btn-primary93:hover {
  background-color: #0056b3;
}

iframe {
  border-radius: 8px;
  min-height: 360px;
  width: 100%;
}

.col95 {
  width: 50%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 20px;
}

.col94 {
  width: 50%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.col-91 {
  margin-top: 20px;
}

.col-19 {
  margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Layout Adjustments for smaller screens */

  .row91 {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .row {
    grid-template-columns: repeat(6, 1fr); /* 6 images per row on mobile */
  }

  .row img {
    width: 100%; /* Ensure images take full width of their grid cell */
  }
  .col91 {
    flex: 1;
    width: 100%;
    margin-bottom: 20px;
  }

  .bg-primary91 {
    width: 50px;
    height: 50px;
  }

  .ps-91 h4 {
    font-size: 1.5em;
  }

  /* Form Inputs Adjustments */
  .form-control {
    padding: 12px;
    font-size: 1em;
  }

  .btn-primary93 {
    width: 100%;
    padding: 12px;
    font-size: 1.2em;
  }

  /* Google Maps iframe */
  iframe {
    min-height: 200px;
  }
  .col91,
  .col-lg-4,
  .col95,
  .col94 {
    width: 100% !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .d-flex91,
  .d-flex92,
  .d-flex93,
  .d-flex94 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center !important;
  }

  .col95,
  .col94 {
    width: 100%;
    box-shadow: none;
    margin-bottom: 20px;
  }

  /* Center the Footer Content */
  footer .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Adjust the text size for small screens */
  .section91 h1 {
    font-size: 2.5rem;
  }

  .section91 h5 {
    font-size: 1.2rem;
  }

  .ps-91 p {
    font-size: 1em;
    width: 100%;
  }
}

.mb-91 a {
  text-decoration: none;
  color: #000;
}

.wow {
  visibility: hidden;
}

.wow.fadeIn {
  animation: fadeIn 1s forwards;
}

.wow.fadeInUp {
  animation: fadeInUp 1s forwards;
}

.wow.slideInUp {
  animation: slideInUp 1s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/******photo gallery*****/

/* Main container */
.main31 {
  background: #fff;
  padding: 20px;
  border-radius: 10px;

  text-align: center;
  max-width: 100vw;
  width: 100%;
}

/* Heading styles */
.main-content31 h1 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 30px;
  margin-top: 60px;
  text-align: center;
}

/* Ensure the container allows images to be placed side by side */
.image-content31 {
  display: flex;
  /* Use flexbox for side-by-side layout */
  justify-content: center;
  /* Center images horizontally */
  align-items: center;
  /* Align images vertically */
  gap: 50px;
  /* Space between images */
  flex-wrap: nowrap;
  /* Prevent images from wrapping */
}

/* Ensure images fit properly */
.image-content31 img {
  max-width: 100%;
  /* Prevent images from overflowing */
  height: auto;
  /* Maintain aspect ratio */
  display: block;
  /* Remove extra spacing */
  height: 450px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile View: Ensure images are stacked */
@media (max-width: 768px) {
  .main31 {
    padding: 15px;
  }

  .main-content31 h1 {
    font-size: 20px;
  }

  .image-content31 {
    flex-direction: column;
    /* Stacks images */
    gap: 15px;
  }

  .image-content31 img {
    width: 100%;
    /* Adjust width for better spacing */
    max-width: 350px;
    height: 350px;
  }
}

/* Ensure the container allows images to be placed side by side */
.image-content32 {
  display: flex;
  /* Use flexbox for side-by-side layout */
  justify-content: center;
  /* Center images horizontally */
  align-items: center;
  /* Align images vertically */
  /* Space between images */
}

/* Ensure images fit properly */
.image-content32 img {
  width: 1000px;
  /* Prevent images from overflowing */
  height: 100%;
  /* Maintain aspect ratio */
  display: block;
  /* Remove extra spacing */
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.image-content01 {
  display: flex;
  /* Use flexbox for side-by-side layout */
  justify-content: center;
  /* Center images horizontally */
  align-items: center;
  /* Align images vertically */
  /* Space between images */
}

/* Ensure images fit properly */
.image-content01 img {
  width: 1000px;
  /* Prevent images from overflowing */
  height: 100%;
  /* Maintain aspect ratio */
  display: block;
  /* Remove extra spacing */
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.main33 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
}

.main-content33 {
  display: flex;
  align-items: center;
  gap: 20px;
  /* Space between text and image */
  max-width: 1200px;
  /* Adjust as needed */
  width: 100%;
}

/* Make text content smaller */
.main-content33 h1 {
  font-size: 3rem;
  flex: 0.5;
  /* Text takes less space */
  text-align: left;
  color: #000000;
}

/* Make image bigger and move it to the right */
.image-content33 {
  flex: 1.1;
  /* Image takes more space */
  display: flex;
  justify-content: center;
  /* Moves image to the right */
}

.image-content33 img {
  width: 100%;
  height: auto;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile View: Stack content vertically */
@media (max-width: 768px) {
  .main-content33 {
    flex-direction: column;
    text-align: center;
  }

  .main-content33 h1 {
    flex: unset;
    width: 80%;
    font-size: 18px;
  }

  .image-content33 {
    flex: unset;
  }

  .image-content33 img {
    max-width: 90%;
    /* Adjust size for mobile */
  }

  .image-content01 img {
    width: 100%;
    /* Prevent images from overflowing */
    height: 100%;
    /* Maintain aspect ratio */
    display: block;
    /* Remove extra spacing */
  }

  .image-content32 img {
    width: 100%;
    /* Prevent images from overflowing */
    height: 100%;
    /* Maintain aspect ratio */
    display: block;
    /* Remove extra spacing */
  }
}

.form-content h2 {
  color: #25408d;
}

/* Campaign page */
.campaign-container {
  margin-top: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.heading {
  font-size: 2.5rem;
  color: #780000;
  text-align: center;
}

.campaign-left {
  padding: 10px 10px 10px 10px;
}

.campaign-left p {
  font-size: 24px;
  line-height: 2;
  text-align: center;
}

.campaign-container1 {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid gray;
}

.img-style {
  padding: 40px;
}

.campaign-content {
  width: 100%;
  font-size: 24px;
  padding: 10px;
  line-height: 2;
}

.custom-border {
  position: relative;
  text-align: center;
  /* keeps text centered */
}

.custom-border::after {
  content: "";
  display: block;
  width: 50%;
  border-bottom: 2px solid gray;
  margin: 8px auto 0;
}

.campaign-content1 {
  margin-top: 30px;
  text-align: left;
  text-align: justify;
  text-justify: inter-word;
}

.campaign-content2 ul {
  font-weight: bold;
}

.campaign-content2 {
  margin-top: 15px;
  padding-left: 30px;
  width: 50%;
  line-height: 2;
}

/* news container */
.news-container {
  margin-top: 20px;
  padding: 20px;
  width: 100%;
}

/* tender page */
.tender-container1 {
  width: 100%;
  height: 260px;
}

.tender-container2 {
  width: 80%;
  background-color: #780000;
  height: 180px;
  margin: 0 auto;
  border-radius: 5px;
}

.tender-img {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.tender-img img {
  padding: 40px 0 0 0px;
  height: 150px;
  width: 900px;
}

.read-more {
  margin-top: 20px;
  display: inline-block;
  font-size: 14px;
  /* Reduce button font size */
  padding: 5px 8px;
  /* Reduce button padding */
  background-color: #c9ec2f;
  /* Button background */
  border-radius: 20px;
  /* Rounder edges */
  border: 2px solid #fff;
}

.read-more a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  background-color: #fff;
  padding: 3px 6px;
  border-radius: 20px;
  display: inline-block;
  animation: blinkZoom 0.6s infinite ease-in-out;
  /* Blinking + Zoom effect */
}

.read-more:hover {
  background-color: #b0d624;
  /* Darker shade on hover */
  text-decoration: underline;
  color: #fff;
}

/* Notice.html */
.pdf-section {
  background: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 1400px; /* Optional: Sets a max-width to prevent it from stretching too wide on large screens */
  margin: 0 auto; /* Centers the section */
}

/* Each row */
.pdf-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap; /* Ensure items wrap on mobile */
}

/* Card */
.pdf-card {
  flex: 1;
  border: 2.8px dotted #25408d;
  border-radius: 10px;
  padding: 30px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
  transition: 0.3s;
  width: 100%; /* Ensures card is full width */
  box-sizing: border-box;
}

.pdf-card:hover {
  background: #f0f9ff;
}

/* Boy image */
.boy-img {
  max-width: 190px;
  height: auto;
}

/* Text */
.pdf-card p {
  font-size: 26px;
  font-weight: 600;
  color: #25408d;
  margin: 0;
  word-wrap: break-word; /* Ensures long words wrap */
  word-break: break-word; /* Breaks long words at the edge */
  width: 100%; /* Ensure the text doesn't overflow */
}

/* View button */
.view-btn {
  background: #f97316;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.view-btn:hover {
  background: #ea580c;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .pdf-row {
    flex-direction: column;
    text-align: center;
  }

  .pdf-card {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%; /* Ensure cards are full width */
    padding: 15px; /* Adjust padding for mobile */
  }

  .boy-img {
    max-width: 60px;
    display: none; /* Hide the boy image on mobile */
  }

  .pdf-card p {
    font-size: 16px;
    word-wrap: break-word; /* Ensure words break properly on mobile */
    word-break: break-word; /* Break long words */
  }

  .view-btn {
    padding: 8px 15px;
    font-size: 14px;
  }
}

/* .....................news.css end.................... */

/* Slider */
.thumbnails {
  position: absolute;
  bottom: 20px; /* move upward on slider */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20; /* ensure visible ABOVE slider */
}

.thumbnails img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}
.thumbnails img:hover {
  transform: scale(1.15); /* zoom on hover */
  border-color: #ffffff; /* white border on hover */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.thumbnails img.active {
  border-color: #ffffff; /* highlight active thumbnail */
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .thumbnails img {
    width: 45px;
    height: 35px;
  }

  .thumbnails {
    bottom: 10px;
    gap: 8px;
  }
}
