body {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;

}

p {
  font-size: 16px;
  text-align: justify;
}

span {
  font-size: 20px;
}

/* ===== Preloader ===== */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#heroVideo {
  margin-top: 100px;
}

ul li {
  text-decoration: none;
}

#cont {
  background-color: #3e7eb921;
}

.loader-blob {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #003366;
  animation: blob 1.2s infinite ease-in-out;
}

@keyframes blob {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

/* ===== Top Bar ===== */
.top_bar {
  background-color: #222;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top_bar_contact_item {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.top_bar_icon {
  margin-right: 8px;
  color: #003366;
}

.top_bar_social .social-icons li {
  display: inline-block;
  margin-left: 10px;
}

.top_bar_social .social-icons i {
  color: #fff;
  transition: color 0.3s;
}

.top_bar_social .social-icons i:hover {
  color: #003366;
}

/* ===== Header Wrapper ===== */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
  position: relative;
}

.ttm-stickable-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ===== Branding Logo ===== */
.site-branding img {
  object-fit: cover;
  height: 92px;
}

/* ===== Navigation ===== */
.main-menu .menu {
  display: flex;
  list-style-type: none;
  align-items: center;
  margin-top: 22px;
}

.main-menu .menu>li>a {
  list-style-type: none;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 15px;
  display: block;
  transition: all 0.3s;
}

.main-menu .menu>li:hover>a,
.main-menu .menu>li.active>a {
  color: #003366;
}

/* ===== Dropdown (Mega Submenu) ===== */
.mega-menu-item {
  position: relative;
}

.mega-menu-item .mega-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

.mega-menu-item:hover>.mega-submenu {
  display: block;
  list-style-type: none;
}

.mega-submenu li a {
  padding: 10px 20px;
  list-style-type: none;
  text-decoration: none;
  display: block;
  font-weight: 500;
  color: #333;
  transition: all 0.3s;
}

.mega-submenu li a:hover {
  background-color: #f8f8f8;
  color: #003366;
}

/* ===== Contact Widget (Phone) ===== */
.widget_info {
  gap: 10px;
  font-size: 16px;
}

.widget_icon {
  font-size: 24px;
  color: #003366;
}

.widget_content a {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.widget_content a:hover {
  color: #003366;
}

/* ===== Mobile Menu Button ===== */
.btn-show-menu-mobile {
  display: none;
  cursor: pointer;
}

.menubar-box {
  width: 30px;
  height: 24px;
  position: relative;
}

.menubar-inner,
.menubar-inner::before,
.menubar-inner::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  left: 0;
  transition: 0.3s;
}

.menubar-inner {
  top: 50%;
  transform: translateY(-50%);
}

/* Make header fixed */
.ttm-stickable-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding-top: 5px;
  padding-bottom: 5px;
}

.menubar-inner::before {
  top: -10px;
}

.menubar-inner::after {
  bottom: -10px;
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
  .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
  }

  .main-menu.menu-mobile.show {
    display: block;
  }

  .main-menu .menu {
    flex-direction: column;
    gap: 10px;
  }

  .btn-show-menu-mobile {
    display: block;
  }

  .widget_info {
    display: none;
  }
}

.top-bar {
  background: #2b2b2b;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
}

/* Navbar */
.navbar {
  background: #fff;
  min-height: 60px;
  /* header chota */
  padding: 0;
  position: relative;
  z-index: 10;
}

.navbar-brand img {
  height: 100px;
  /* Logo bada */
  object-fit: contain;
  margin-top: -30px;
  /* overlap effect */
}

.navbar-nav .nav-link {
  font-weight: 600;
  margin-left: 20px;
  color: #000 !important;
  line-height: 60px;
  /* navbar height ke hisaab se align */
}

.navbar-nav .nav-link:hover {
  color: #0e00d1ff !important;
}

/* Hero Section */
.hero-slide {
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Zoom animation on active slide */
.carousel-item .hero-slide {
  transform: scale(1);
  transition: transform 6s ease;
}

.carousel-item.active .hero-slide {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
}

/* Transparent Button */
.hero-btn {
  /* background: #ffffff; */
  border: 2px solid #fff;
  color: #fff;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: blue;
  border-color: blue;
  color: #fff;
}

/* Social icons */
.social-icons a {
  color: #fff;
  margin-left: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #0e00d1ff;
}

.about-item {
  transition: all 0.3s ease-in-out;
}

.about-item:hover {
  transform: translateY(-8px);
}

.about-item i {
  color: #444;
}

.service-item {
  transition: all 0.3s ease-in-out;
}

.service-item:hover {
  transform: translateY(-8px);
}

.service-item i {
  color: #444;
}

.what-we-do h2 {
  border-bottom: 2px solid #00aaff;
  display: inline-block;
  padding-bottom: 8px;
}

.projects {
  background: #333;
}

.projects h2 {
  letter-spacing: 2px;
}

.project-item img {
  transition: all 0.3s ease-in-out;
}

.project-item img:hover {
  transform: scale(1.05);
}

.section-bg {

  position: relative;
  padding: 80px 0;
  color: #fff;
}


/* Blue Overlay */
.section-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(12 43 87);
  /* Blue overlay */
  z-index: 0;
}

.section-bg h2 {
  color: #fff;
  /* white text */
  font-weight: 800;
  font-size: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 10px 20px;
  display: inline-block;
  text-align: center;
}

/* Boxes */
.custom-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.custom-box:hover {
  transform: scale(1.05);
}

.section-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(12 43 87);
  z-index: 0;
}

/* Why We Lead Box */
.lead-box {
  background: rgb(12 43 87);
  /* Blue background */
  color: #fff;
  border-left: 6px solid #ffcc00;
  /* Yellow accent */
  border-radius: 12px;
  padding: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lead-box h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lead-box p {
  color: #f1f1f1;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.lead-box p.fw-bold {
  color: #ffeb99;
  /* Highlight last line */
  font-weight: 600;
}

.business-section {

  position: relative;
  padding: 80px 0;
}

/* Overlay */
.business-section::before {
  content: "";
  position: absolute;
  inset: 0;

}

/* Box */
.business-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  animation: fadeUp 1s ease;
}

/* Heading */
.business-box h2 {
  color: #003366;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
}

.business-box h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #0c2b57;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Subheading */
.business-box h4 {
  margin-top: 30px;
  font-weight: 600;
  color: #0c2b57;
}

/* Text */
.business-box p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

/* List */
.business-box ol li {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.business-box ol li b {
  color: #003366;
  font-size: 18px;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-section {
  background: linear-gradient(135deg, #003366, #0c2b57);
  padding: 50px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* Heading */
.services-section h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.services-section h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #ffcc00;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Service Box */
.service-box {
  background: #fff;
  border-radius: 14px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  color: #333;
  position: relative;
  overflow: hidden;
}

.service-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Icon Circle */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 40px;
  background: linear-gradient(135deg, #0066cc, #082d5b);
  color: #fff;
  transition: all 0.4s ease;
}

.service-box:hover .icon-circle {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  transform: rotate(10deg) scale(1.1);
}

/* Title */
.service-box h4 {
  font-weight: 600;
  color: #003366;
  margin-bottom: 15px;
}

/* Text */
.service-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #212529;
}

.testimonials-section {
  background: url('../img/banner/p5.jpg') no-repeat center center/cover;
  padding: 100px 0;
  position: relative;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay */
}

.testimonials-container {
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  /* transparent */
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 50px 40px;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-card i {
  font-size: 45px;
  color: #092e5b;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  /* font-style: italic; */
  margin-bottom: 25px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}

.testimonial-position {
  font-size: 15px;
  color: #ddd;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #00c2ff;
  margin: 15px auto;
  object-fit: cover;
}

/* Carousel buttons inside box */
.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}

.partners-section {
  background: #f8f9fa;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.partners-section h2 {
  font-weight: 700;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  position: relative;
}

.partners-section h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #0a2d5a;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Scrolling logos */
.logo-slider {
  display: flex;
  align-items: center;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.logo-slider img {
  height: 80px;
  margin: 0 40px;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}

.logo-slider img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Wrapper to duplicate logos for smooth infinite loop */
.logo-carousel {
  display: flex;
  overflow: hidden;
}

footer {
  background: #003366;
  color: #fff;
  padding: 60px 0 30px;
  font-size: 15px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 18px;
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 30px;
  font-size: 14px;
}

.about-section {
  padding: 80px 0;
}

.about-section h1,
.about-section h2 {
  color: #003366;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-section h2 {
  text-transform: uppercase;
  position: relative;
}

.about-section h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #0c2b57;
  display: block;
  margin: 12px 0 0;
  border-radius: 2px;
}

.about-section p {
  font-size: 16px;
  margin-bottom: 20px;
}

.mission-box {
  background: #f0f8ff;
  padding: 40px 30px;
  border-radius: 15px;
  margin-top: 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.mission-box h3 {
  color: #0066cc;
  margin-bottom: 20px;
}

.mission-box p {
  margin-bottom: 15px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 20px;
  }
}

h1,
h2,
h3 {
  color: #003366;
}

h1 {
  text-align: center;
  /* margin: 60px 0; */
}

/* Service Section Styles */
.service-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

section.service-section {
  background-color: #0066cc1c;
}

.service-section:nth-child(even) {
  background: linear-gradient(135deg, #e0f0ff, #ffffff);
}

.service-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.service-text {
  flex: 1;
  min-width: 300px;
}

.service-text h2 {
  margin-bottom: 20px;
  font-weight: 700;
}

.service-text p,
.service-text ul {
  font-size: 16px;
  margin-bottom: 15px;
}

.service-text ul {
  padding-left: 20px;
}

.service-icon {
  flex: 0 0 150px;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #0066cc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
  margin: auto;
}

.service-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
  .service-section:nth-child(even) .service-content {
    flex-direction: row-reverse;
  }
}

@media(max-width:768px) {
  .service-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Partners Section */
.partners-section {
  padding: 60px 0;
  background-color: #0075ff17;
  position: relative;
  color: #fff;
  margin-top: 0px !important;
}

.partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgb(0 0 0 / 26%); */
  z-index: 0;
}

.partners-section h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.partners-list {
  display: grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.partners-list::-webkit-scrollbar {
  height: 8px;
}

.partners-list::-webkit-scrollbar-thumb {
  background: #ffcc00;
  border-radius: 4px;
}

.partners-list div {
  background: rgb(0 51 102);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  flex-shrink: 0;
  min-width: 250px;
  text-align: center;
  font-weight: 500;
  transition: transform 0.3s;
}

.partners-list div:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.md-message-modern {
  padding: 80px 0;
  background: #f2f7fa;
}

.md-message-modern .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #002e5b;
  position: relative;
}

.md-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 40px;
  align-items: center;
  gap: 30px;
}

.md-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffcc00;
}

.md-text {
  flex: 1;
}

.md-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.md-signature {
  font-weight: 600;
  font-size: 20px;
  color: #002e5b;
}

@media (max-width: 768px) {
  .md-card {
    flex-direction: column;
    text-align: center;
  }

  .md-text {
    flex: unset;
  }
}


/* Section Background */
.contact-section {
  /* background: #293b62; */
  padding: 60px 0;
}

/* Headings */
.contact-section h2 {
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Left Side Info */
.contact-info p {
  margin: 0;
  font-size: 16px;
  color: #dcdcdc;
}

.contact-info i {
  color: #dcdcdc;
  margin-right: 10px;
}

/* Steps */
.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 30px;
}

.step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #00aaff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #00aaff;
}

.steps .line {
  flex: 1;
  height: 2px;
  background: #dcdcdc;
  margin: 0 10px;
}

/* Input */
.form-control {
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  padding: 12px;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  border-color: #00aaff;
  box-shadow: none;
  background: transparent;
}

/* Button */
.btn-submit {
  background: #d8432e;
  color: #fff;
  font-weight: 600;
  width: 100%;
  padding: 14px;
  border: none;
  margin-top: 10px;
}

.hero-btn {
  border: 2px solid black;
}

/* Footer */
.footer {
  background: #12141f;
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  color: #00aaff;
}

.tc-header {
  text-align: center;
  margin-bottom: 60px;
}

.tc-header h1 {
  font-weight: 700;
  font-size: 2.5rem;
}

.tc-section {
  position: relative;
  background: #fff;
  border-left: 5px solid #003366;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.tc-section:hover {
  transform: translateY(-5px);
}

.tc-section .section-icon {
  font-size: 2.2rem;
  color: #003366;
  background: #e7f0ff;
  padding: 10px 20px;
  border-radius: 50%;
  margin-right: 15px;
}

.tc-section .section-title {
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.section-content {
  font-size: 18px;
  line-height: 1.6;
  color: #140303;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .tc-section {
    padding: 20px;
  }

  .tc-section .section-title {
    font-size: 1.2rem;
  }
}

.img_card img {
  width: 100%;
  height: 335px;

}

.partner-logo {
  background-color: #fff;
  padding: 1rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  /* 🚨 Important: Prevents image from overflowing */
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: none !important;
  transition: none !important;
}

.partner-logo img {
  max-height: 80px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.partner-logo:hover img {
  transform: scale(1.05);
}

#modalImage {
  transition: transform 0.3s ease;
}

#modalImage.zoomed {
  transform: scale(1.5);
  cursor: zoom-out;
}

#scrollTopBtn {
  position: fixed;
  color: #fff;
  background-color: #003366;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: none;
  width: 40px;
  height: 40px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

#prevBtn {
  background-color: #003366;
  color: #fff;
}

#nextBtn {
  background-color: #003366;
  color: #fff;
}

.about-banner {
  height: 400px;
  overflow: hidden;
}

.banner-img {
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.banner-overlay {
  z-index: 2;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.object-cover {
  object-fit: cover;
  height: 100%;
}

.info-section .btn {
  border-radius: 30px;
  padding: 6px 20px;
  font-size: 14px;
}

.info-section img {
  border-radius: 12px;
}

.info-section .shadow-sm {
  transition: all 0.3s ease;
}

.info-section .shadow-sm:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Container Grid for list boxes */
.list-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* Each List Box */
.list-box {
  position: relative;
  background: #003366;
  /* fallback color */
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: default;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.list-box:hover {
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.5);
  transform: translateY(0) scale(1.03);
}

/* Overlay inside list-box */
.list-box .overlay {
  position: relative;
  z-index: 2;
}

.list-box strong {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 8px;
}

/* Boxes with background images */
.roles-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* Each role box */
.role-box {
  position: relative;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  display: flex;
  align-items: flex-end;
  cursor: default;
}

.role-box:hover {
  transform: translateY(0) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Overlay for text on role-box */
.role-box .overlay {
  width: 100%;
  padding: 20px;
  background: rgb(0 51 102);
  color: #fff;
  font-size: 1rem;
}

.role-box .overlay strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}

/* Animation show class */
.animate.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section.services.py-5.bg-light.mb-5 {
  margin-bottom: 0px !important;
}

body {
  font-family: 'Arial', sans-serif;
  background: #f4f4f4;
  padding: 0;
}

/* Container for all role boxes */
.roles-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Individual role box */
.role-box {
  flex: 1 1 calc(33.333% - 20px);
  /* 3 columns on desktop */
  min-width: 280px;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  color: white;
  transition: transform 0.3s ease;
}

.role-box:hover {
  transform: scale(1.03);
}

/* Overlay text area */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.6); */
  /* Dark transparent overlay */
  /* padding: 15px; */
  box-sizing: border-box;
}

.overlay h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.overlay p {
  font-size: 16px;
  /* line-height: 1; */
}

/* Responsive behavior */
@media (max-width: 992px) {
  .role-box {
    flex: 1 1 calc(50% - 20px);
    /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .role-box {
    flex: 1 1 100%;
    /* 1 column on mobile */
  }
}

.why-choose-us {
  background-color: #f8f9fc;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dark-card {
  background-color: #003366;
}

.light-card {
  background-color: #ffffff;
  color: #000;
}

.light-card h5,
.light-card p {
  color: #333;
  font-size: 16px;
}

.md-message-section {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #002e5b14;
}

.term {
  background-color: #3e7eb921;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 30px 0px;
}

.chart-container {
  text-align: center;
  margin: 20px 10px;
  padding: 50px 10px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px #003366;
  background-color: #3e7eb921;
}

.box {
  border: 1px solid #003366;
  color: #fff;
  padding: 15px;
  background-color: #2c79c5c7;
  font-size: 16px;
  font-weight: normal;
  box-shadow: 2px 3px 10px #2c79c591;
}

.title-box {
  border: 1px solid #003366;
  color: #fff;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background-color: #5592d0;
  display: inline-block;
}

.cont {
  background-color: #2c79c591;
}

.line-down {
  width: 2px;
  height: 20px;
  background: black;
  margin: 0 auto;
}

.line-horizontal {
  height: 2px;
  background: black;
  position: relative;
  top: 0;
}

.vertical-line {
  width: 2px;
  height: 40px;
  background: black;
  margin: 0 auto;
}

.connector-wrapper {
  position: relative;
}

.line-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}

.line-group::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 100%;
  background: black;
  z-index: 0;
}

.line-group .vertical-line {
  position: relative;
  z-index: 1;
}

.sub-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.box-title {
  font-weight: bold;
}

/* Hero Section */
.contact-hero {
  background: url('../img/banner/cont.jpg') center center/cover no-repeat;
  height: 300px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-banner {
  margin-top: 110px;
}

.term {
  margin-top: 90px;
}

.md-message-section {
  margin-top: 150px;
}

.chart-container {
  margin-top: 120px;
}

.contact-hero {
  margin-top: 110px;
}

.contact-hero h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

.contact-hero p {
  font-size: 1rem;
  margin-top: 10px;
}

/* Contact Section */
.contact-section {
  /* background-color: #f4f6f8; */
}

.contact-section .form-control,
.contact-section .form-select {
  border-radius: 0.4rem;
}

.contact-section .btn-primary {
  background-color: #3366ff;
  border: none;
  border-radius: 0.4rem;
}

.contact-section .btn-primary:hover {
  background-color: #254eda;
}

.contact-section i {
  font-size: 25px;
}

/* Map */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.btn-show-menu-mobile {
  display: inline-block;
  width: 70px;
  height: 25px;
  cursor: pointer;
  position: relative;
}

.menubar-box {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.menubar-inner,
.menubar-inner::before,
.menubar-inner::after {
  display: block;
  background-color: #333;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s ease;
}

.menubar-inner {
  top: 50%;
  transform: translateY(-50%);
}

.menubar-inner::before {
  content: "";
  top: -10px;
}

.menubar-inner::after {
  content: "";
  top: 10px;
}

/* Hide toggle button on large screens */
.btn-show-menu-mobile {
  display: none;
}

/* Show toggle button on small screens (e.g., max-width 768px) */
@media (max-width: 768px) {
  .btn-show-menu-mobile {
    display: inline-block;
    margin-left: 41%;
    /* or block/flex depending on layout */
    margin-top: 30px;
  }

  .hero-content h1 {
    font-size: 14px;
  }

  /* Also, hide the regular menu on small screens initially */
  .main-menu.menu-mobile {
    display: none;
  }

  /* When toggle button is clicked and menu has "show" class, display menu */
  .main-menu.menu-mobile.show {
    display: block;
  }
}

/* Base container and fonts */
.container {
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #004080;
  padding-bottom: 0.3rem;
}

/* Table styling */
.team-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.team-table thead tr {
  background-color: #004080;
  color: white;
  text-align: left;
}

.team-table th,
.team-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  vertical-align: top;
  font-size: 1rem;
}

/* Section headers style */
.section-header td {
  background-color: #e6f0ff;
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid #004080;
  text-align: center;
  padding: 10px 0;
}

/* Hover effect on data rows */
.team-table tbody tr:not(.section-header):hover {
  background-color: #f1f8ff;
  cursor: default;
}

/* Responsive styles */
@media screen and (max-width: 700px) {

  .team-table,
  .team-table thead,
  .team-table tbody,
  .team-table th,
  .team-table td,
  .team-table tr {
    display: block;
  }

  /* Hide the header row */
  .team-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  /* Each row becomes a block */
  .team-table tr {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  /* Section header row distinct style */
  .section-header td {
    background-color: #cce0ff;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 8px;
    padding: 12px 0;
  }

  /* Table data cells */
  .team-table td {
    border: none;
    padding-left: 50%;
    position: relative;
    text-align: left;
    font-size: 0.95rem;
  }

  /* Show label before data */
  .team-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 12px;
    font-weight: 700;
    color: #004080;
    white-space: nowrap;
  }
}

.chart {
  margin-top: 160px;
  margin-bottom: 50px;
}