/* ================= GLOBAL COLORS ================= */
:root {
  --navy: #07285a;
  --dark: #031b3e;
  --gold: #e8b548;
  --light: #f7f9fc;
  --white: #ffffff;
}

/* ================= RESET CSS ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BODY STYLE ================= */
body {
  padding-top: 82px;
  font-family: Arial, sans-serif;
  color: #061b3e;
  background: #f6f8fb;
}

/* ================= NAVBAR ================= */
.main-navbar {
  height: 82px;
  min-height: 82px;
  max-height: 82px;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  overflow: visible;
}

/* Logo size fixed so navbar height does not increase */
.logo-img {
  width: 73px;
  height: 73px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Brand text */
.brand-text h4 .nivix {
  color: #01275c; /* Blue */
}

.brand-text h4 .india {
  color: #faa14e; /* Orange */
}

.brand-text h4 {
  margin: 0;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.brand-text .tagline {
  font-size: 14px;
  color: #444;
  letter-spacing: 1px;
}

/* Menu links */
.nav-link {
  color: #071d43;
  font-weight: 700;
  font-size: 16px;
}

/* Active menu underline */
.nav-link.active {
  color: #000;
  border-bottom: 2px solid var(--gold);
}

/* Navbar phone section */
.nav-call {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: inherit;
}

.nav-call:hover {
  color: #e8b548;
}

.nav-call span {
  color: var(--gold);
  font-size: 20px;
}

.nav-call b {
  display: block;
  font-size: 15px;
}

.nav-call small {
  display: block;
  font-size: 10px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px; /* increase/decrease space */
}

/* Login button */
.login-btn {
  background: var(--navy);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
}

.login-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ================= HERO SECTION ================= */
.hero-section {
  min-height: 180px;

  /* Left blue gradient + right background image */
  background:
    linear-gradient(105deg, #031b3e 0%, #06275b 48%, transparent 49%),
    url("../images/bg-img.png") center right/cover no-repeat;

  position: relative;
  padding: 20px 9%;
  color: white;
}

/* Golden diagonal line */
.hero-section::before {
  content: "";
  position: absolute;
  left: 49%;
  top: 0;
  width: 8px;
  height: 100%;
  background: var(--gold);
  transform: skewX(-16deg);
}

/* Hero left content */
.hero-left {
  width: 55%;
  position: relative;
  z-index: 2;
}

/* Small tagline */
.tagline {
  color: var(--gold);
  font-weight: 800;
}

/* Hero heading */
.hero-left h1 {
  font-size: 45px;
  line-height: 1.18;
  font-weight: 900;
}

.hero-left h1 span {
  color: var(--gold);
}

/* Hero paragraph */
.hero-desc {
  max-width: 580px;
  font-size: 11px;
  line-height: 1.3;
}

/* Hero buttons */
.gold-btn,
.outline-btn {
  padding: 15px 28px;
  border-radius: 6px;
  font-weight: 700;
  margin-right: 20px;
}

/* Gold button */
.gold-btn {
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  border: none;
  color: #061b3e;
}

/* Transparent outline button */
.outline-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
}

/* Floating cards on hero right */
.hero-right {
  position: absolute;
  right: 6%;
  top: 4px;
  width: 250px;
}

/* Single floating card */
.floating-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  padding: 5px 7px;
  margin-bottom: 10px;
  border-radius: 9px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
}

.floating-card b {
  font-size: 16px;
}

.floating-card small {
  grid-column: 2;
  color: #111;
}

.floating-card:hover .floating-icon {
  color: #e8b548;
  transform: scale(1.1);
}

/* ================= MAIN CONTENT ================= */
.main-content {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

/* ================= STATS BOX ================= */
/* ================= FIXED STATS BOX ================= */

.stats-box {
  background: #fff;
  border-radius: 22px;
  padding: 10px 20px; /* aur kam */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;

  min-height: 100px; /* aur patla */
}

.stat-item {
  height: 100%;
  padding: 4px 12px;
  border-right: 1px solid #ddd;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item b {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.stat-item span {
  display: block;
  font-size: 10px;
  line-height: 1.2;
  margin-top: 2px;
}

/* Icon */
.stat-icon {
  font-size: 30px;
  color: #07285a;
  min-width: 45px;
}

.stat-item:hover .stat-icon {
  color: #e8b548;
  transform: scale(1.1);
  transition: 0.3s;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .stats-box {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
    padding: 28px 22px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding: 25px 15px;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .stats-box {
    grid-template-columns: 1fr;
    border-radius: 18px;
    padding: 18px;
  }

  .stat-item {
    border-bottom: 1px solid #ddd !important;
    justify-content: flex-start;
    padding: 22px 10px;
  }

  .stat-item:last-child {
    border-bottom: none !important;
  }

  .stat-item b {
    font-size: 26px;
  }

  .stat-item span {
    font-size: 18px;
  }

  .stat-icon {
    font-size: 34px;
  }
}

/* ================= SERVICES SECTION ================= */

/* ================= SERVICES DROPDOWN ================= */

/* Services Dropdown Scroll */
.services-dropdown {
  scroll-behavior: smooth;
  min-width: 260px;
  max-height: 350px; /* dropdown height fixed */
  overflow-y: auto; /* vertical scrollbar */
  overflow-x: hidden;

  border: none;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  background: white;
}

.services-dropdown .dropdown-item {
  font-size: 14px;
  font-weight: 600;
  color: #07285a;
  padding: 12px 18px;
  white-space: normal;
}

.services-dropdown .dropdown-item:hover {
  background: #07285a;
  color: white;
  padding-left: 24px;
}

/* Dropdown arrow spacing */
.nav-link.dropdown-toggle::after {
  margin-left: 8px;
}

/* Mobile Dropdown */
@media (max-width: 992px) {
  .services-dropdown {
    box-shadow: none;
    border: 1px solid #ddd;
    margin-top: 5px;
  }

  .services-dropdown .dropdown-item {
    padding: 10px 15px;
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* SERVICES SECTION */
.services-section {
  padding: 8px 0;
}

/* Heading */
.services-section h3 {
  text-align: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 10px;
}

/* Desktop: 5 cards in one row */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

/* Slim Cards */
.service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 10px 12px;
  min-height: 120px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  font-size: 28px;
}

.service-icon {
  font-size: 38px;
  color: #07285a;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  color: #e8b548;
  transform: scale(1.1);
}

.service-card b {
  display: block;
  font-size: 14px;
  margin: 6px 0 4px;
  color: var(--navy);
  line-height: 1.3;
}

.service-card span {
  font-size: 11px;
  line-height: 1.3;
  color: #444;
}

/* Tablet */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 105px;
    padding: 9px;
    font-size: 24px;
  }

  .service-card b {
    font-size: 13px;
  }

  .service-card span {
    font-size: 10px;
  }
}

/* 320px */
@media (max-width: 340px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 95px;
  }
}

/* ================= TENDER TABLE SECTION ================= */
.tender-box {
  background: white;
  margin-top: 20px;
  border-radius: 8px;
  padding: 22px 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* Tender section header */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-head h3 {
  text-align: left;
}

.section-head a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

/* Table heading */
.tender-table thead th {
  background: var(--navy);
  color: white;
  font-size: 14px;
  padding: 12px 22px;
}

/* Table body */
.tender-table td {
  font-size: 14px;
  padding: 10px 22px;
  vertical-align: middle;
}

/* Closing date red color */
.tender-table .red {
  color: red;
  font-weight: 700;
}

/* View details button */
.tender-table button {
  background: var(--navy);
  color: white;
  border: none;
  padding: 6px 13px;
  border-radius: 4px;
  font-weight: 700;
}

/* View all tenders button */
.view-btn {
  display: block;
  margin: 15px auto;
  border: none;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  padding: 11px 65px;
  border-radius: 5px;
  font-weight: 800;
}

/* Features bottom row */
.features-row {
  border-top: 1px solid #ddd;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-top: 25px;
  gap: 10px;
}

.features-row div {
  font-size: 28px;
  border-right: 1px solid #ddd;
}

.features-row div:last-child {
  border-right: 0;
}

.features-row b {
  font-size: 14px;
  display: block;
}

.features-row span {
  font-size: 12px;
  display: block;
}

.features-row div:hover .feature-icon {
  color: #e8b548;
  transform: scale(1.1);
}

/* ================= SIDEBAR ================= */
.sidebar,
.find-box,
.choose-box,
.help-box {
  position: static !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
}

/* Common sidebar box style */
.find-box,
.choose-box,
.help-box {
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 23px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

/* Find tender box */
.find-box {
  background: var(--dark);
  color: white;
}

.find-box h4,
.choose-box h4 {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 18px;
}

/* Gold underline */
.find-box h4::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: var(--gold);
  margin-top: 10px;
}

/* Search fields */
.find-box input,
.find-box select {
  width: 100%;
  height: 43px;
  border: none;
  border-radius: 4px;
  margin-bottom: 12px;
  padding: 0 12px;
  font-size: 13px;
}

/* Search button */
.find-box button,
.help-box button {
  width: 100%;
  height: 43px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: #061b3e;
  font-weight: 800;
}
.no-result-msg {
  display: none;
  text-align: center;
  color: red;
  font-weight: 800;
  margin-top: 18px;
}

/* ================= PREMIUM FOOTER ================= */

.premium-footer {
  background: linear-gradient(135deg, #031b3e 0%, #07285a 55%, #031b3e 100%);
  color: white;
  padding: 60px 70px 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.premium-footer::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(232, 181, 72, 0.12);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

.premium-footer::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -90px;
  left: -70px;
}

/* Main footer grid */
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Equal 3 parts */
  gap: 60px;
  align-items: start;
}

/* Logo + brand */
.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-box img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 5px;
}

.footer-logo-box h3 .nivix {
  color: #0056d2; /* Blue */
}

.footer-logo-box h3 .india {
  color: #f99f4b; /* Orange */
}

.footer-logo-box p {
  margin: 2px 0 0;
  font-size: 9px;
  color: #e8b548;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About text */
.footer-about {
  margin: 20px 0;
  max-width: 420px;
  color: #dce6f5;
  font-size: 14px;
  line-height: 1.7;
}

/* Social links */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border: 1.5px solid #e8b548;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #e8b548;
  color: #031b3e;
  transform: translateY(-4px);
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 181, 72, 0.6);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #e8b548;
  color: #031b3e;
  transform: translateY(-4px);
}

/* Footer columns */
.footer-col h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
}

/* Gold underline */
.footer-col h4::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  background: #e8b548;
  margin-top: 8px;
  border-radius: 10px;
}

.footer-col a {
  display: block;
 color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
  padding-left: 6px;
}

/* Contact links default */
.contact-link {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Phone hover */
.phone-link:hover {
  color: #e8b548; /* gold */
}

/* Email hover */
.email-link:hover {
  color: #4da6ff; /* light blue */
}

/* Call button */
.footer-call-btn {
  margin-top: 10px;
  border: none;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: #031b3e;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 900;
  width: 100%;
  max-width: 220px;
}

/* Bottom bar */
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #dce6f5;
}

.footer-bottom a {
  color: #dce6f5;
  text-decoration: none;
  font-size: 13px;
  margin-left: 18px;
}

.footer-bottom a:hover {
  color: #e8b548;
}

/* ================= RESPONSIVE FOOTER ================= */

/* Tablet */
@media (max-width: 992px) {
  .premium-footer {
    padding: 50px 35px 20px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom a {
    margin: 0 8px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .premium-footer {
    padding: 45px 20px 18px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo-box {
    align-items: flex-start;
  }

  .footer-logo-box img {
    width: 50px;
    height: 50px;
  }

  .footer-logo-box h3 {
    font-size: 19px;
  }

  .footer-about {
    font-size: 13px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-call-btn {
    max-width: 100%;
  }
}

/* 320px support */
@media (max-width: 340px) {
  .premium-footer {
    padding: 38px 14px 16px;
  }

  .footer-logo-box {
    gap: 10px;
  }

  .footer-logo-box img {
    width: 44px;
    height: 44px;
  }

  .footer-logo-box h3 {
    font-size: 16px;
  }

  .footer-logo-box p {
    font-size: 9px;
  }

  .footer-col h4 {
    font-size: 16px;
  }

  .footer-col a,
  .footer-contact p,
  .footer-about,
  .footer-bottom p,
  .footer-bottom a {
    font-size: 12px;
  }

  .footer-bottom div {
    display: flex;
    gap: 8px;
  }

  .footer-bottom a {
    margin: 0;
  }
}

/* ================= RESPONSIVE DESIGN ================= */

/* Laptop and small desktop */
@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-box {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-left {
    width: 70%;
  }

  .hero-right {
    display: none;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .navbar-collapse {
    background: white;
    padding: 18px;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .hero-section {
    background:
      linear-gradient(rgba(3, 27, 62, 0.92), rgba(3, 27, 62, 0.92)),
      url("../images/bg-img.png") center/cover no-repeat;
    padding: 45px 25px;
  }

  .hero-section::before {
    display: none;
  }

  .hero-left {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 38px;
  }

  .main-content {
    margin-top: 0;
  }

  .stats-box {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 25px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo-img {
    width: 52px;
    height: 52px;
  }

  .brand-text h4 {
    font-size: 18px;
  }

  .brand-text span {
    font-size: 20px;
  }

  .hero-left h1 {
    font-size: 31px;
  }

  .hero-buttons button {
    width: 100%;
    margin: 8px 0;
  }

  .stats-box,
  .service-grid,
  .features-row {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .features-row div {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .tender-box {
    padding: 18px 12px;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .main-navbar {
    height: 76px;
    min-height: 76px;
    max-height: 76px;
  }

  body {
    padding-top: 76px;
  }

  .logo-img {
    width: 53px;
    height: 53px;
  }

  .brand-text h4 {
    font-size: 15px;
  }

  .hero-section {
    padding: 35px 16px;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .hero-desc {
    font-size: 14px;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

/* 320px mobile support */
@media (max-width: 320px) {
  .brand-text h4 {
    font-size: 13px;
  }

  .hero-left h1 {
    font-size: 23px;
  }

  .gold-btn,
  .outline-btn {
    padding: 12px 15px;
    font-size: 13px;
  }

  .tender-table td,
  .tender-table th {
    font-size: 12px;
    padding: 8px;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-hero {
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("../images/bg-img.png") center/cover no-repeat;
  padding: 75px 20px;
  text-align: center;
  color: var(--white);
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--white);
}

.contact-hero h1 span {
  color: var(--gold);
}

.contact-hero p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: #e8eef7;
  font-size: 17px;
  line-height: 1.7;
}

.contact-hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.card-link {
  text-decoration: none;
  display: block;
}

.call-card {
  cursor: pointer;
  transition: all 0.35s ease;
}

.call-card:hover {
  background: var(--navy);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.call-card:hover h4,
.call-card:hover p,
.call-card:hover i {
  color: white;
}

.phone-icon {
  display: inline-block;
  transform: rotate(90deg);
}

.card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.email-card {
  cursor: pointer;
  transition: all 0.35s ease;
}

.email-card:hover {
  background: var(--navy);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.email-card:hover h4,
.email-card:hover p,
.email-card:hover i {
  color: var(--white);
}

html {
  scroll-behavior: smooth;
}

.card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.location-card {
  cursor: pointer;
}

.card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.location-card {
  cursor: pointer;
}

.card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.location-card {
  cursor: pointer;
}

/* Hero buttons */
.hero-call-btn,
.hero-message-btn {
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.3s ease;
}

.hero-call-btn {
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
}

.hero-message-btn {
  border: 2px solid var(--white);
  color: var(--white);
}

.hero-call-btn:hover,
.hero-message-btn:hover {
  transform: translateY(-3px);
}

/* Info cards */
.contact-info-section {
  padding: 38px 0;
  background: var(--light);
}

.info-card {
  background: var(--white);
  padding: 22px 18px;
  border-radius: 14px;
  border: 1px solid #e6eaf0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  border-bottom: 4px solid var(--gold);
}

.info-card i {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}

.info-card h4 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.info-card p,
.info-card a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  margin: 0;
}

.info-card a:hover {
  color: var(--gold);
}

/* Main contact area */
.contact-main-section {
  padding: 45px 0 65px;
  background: var(--light);
}

.contact-form-container,
.map-container {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e6eaf0;
  height: 100%;
}

.contact-form-container {
  padding: 28px;
}

.contact-form-container h2 {
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 22px;
}

.contact-form-container h2 span {
  color: var(--gold);
}

.contact-form-container label {
  display: block;
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 7px;
}

.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea {
  width: 100%;
  border: 1px solid #dce3ec;
  background: #fbfcff;
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 14px;
  outline: none;
}

.contact-form-container textarea {
  resize: none;
}

.contact-form-container input:focus,
.contact-form-container select:focus,
.contact-form-container textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 181, 72, 0.15);
  background: var(--white);
}

.btn-submit {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
  padding: 13px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: var(--navy);
  color: var(--white);
}

/* Map */
.map-container {
  overflow: hidden;
  min-height: 430px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-hero h1 {
    font-size: 38px;
  }

  .map-container,
  .map-container iframe {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 55px 16px;
  }

  .contact-hero h1 {
    font-size: 30px;
  }

  .contact-hero p {
    font-size: 14px;
  }

  .hero-call-btn,
  .hero-message-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .contact-info-section {
    padding: 28px 0;
  }

  .info-card {
    padding: 18px 14px;
  }

  .contact-main-section {
    padding: 30px 0 45px;
  }

  .contact-form-container {
    padding: 20px 16px;
  }

  .contact-form-container h2 {
    font-size: 24px;
  }

  .map-container,
  .map-container iframe {
    min-height: 280px;
  }
}

@media (max-width: 340px) {
  .contact-hero h1 {
    font-size: 26px;
  }

  .contact-form-container input,
  .contact-form-container select,
  .contact-form-container textarea {
    font-size: 12px;
    padding: 10px;
  }

  .info-card h4 {
    font-size: 16px;
  }

  .info-card p,
  .info-card a {
    font-size: 12px;
  }
}

/* ===============ABOUT US START============ */

.about-page {
  background: var(--light);
  padding: 60px 0;
}

.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-badge {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 800;
  margin-bottom: 18px;
}

.about-text h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
}

.about-text h1 span,
.about-text h3 {
  color: var(--gold);
}

.about-text h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
}

.about-text p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.about-btn,
.about-btn-outline {
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.about-btn {
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
}

.about-btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.about-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 45px 0;
}

/* ================= SMALL CARDS + HOVER ANIMATION ================= */

/* Common card style */
.about-stats div,
.vm-card,
.value-card {
  background: var(--white);
  border: 1px solid #e6eaf0;
  border-radius: 12px;
  padding: 16px 14px; /* card chhota */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Gold top line animation */
.about-stats div::before,
.vm-card::before,
.value-card::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  background: var(--gold);
  top: 0;
  left: 0;
  transition: 0.35s ease;
}

/* Hover effect */
.about-stats div:hover,
.vm-card:hover,
.value-card:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(7, 40, 90, 0.22);
}

.about-stats div:hover::before,
.vm-card:hover::before,
.value-card:hover::before {
  width: 100%;
}

/* Icons */
.about-stats i,
.vm-card i,
.value-card i {
  color: var(--gold);
  font-size: 26px; /* icon chhota */
  margin-bottom: 8px;
  transition: 0.35s ease;
}

.about-stats div:hover i,
.vm-card:hover i,
.value-card:hover i {
  color: var(--white);
  transform: scale(1.15) rotate(5deg);
}

/* Text sizes */
.about-stats h2 {
  font-size: 26px;
  margin-bottom: 4px;
}

.vm-card h3,
.value-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.about-stats p,
.vm-card p,
.value-card p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Hover text color */
.about-stats div:hover h2,
.about-stats div:hover p,
.vm-card:hover h3,
.vm-card:hover p,
.value-card:hover h4,
.value-card:hover p {
  color: var(--white);
}

.about-stats div {
  text-align: center;
}

.about-stats i,
.vm-card i,
.value-card i {
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 12px;
}

.about-stats h2 {
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
}

.about-stats p {
  margin: 0;
  font-weight: 700;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.vm-card h3,
.core-values h2,
.value-card h4 {
  color: var(--navy);
  font-weight: 900;
}

.core-values {
  margin-top: 45px;
  text-align: center;
}

.core-values h2 {
  margin-bottom: 24px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-card {
  text-align: center;
}

.value-card p {
  font-size: 14px;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .about-hero,
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .about-text h1 {
    font-size: 40px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-page {
    padding: 40px 0;
  }

  .about-text h1 {
    font-size: 32px;
  }

  .about-text h3 {
    font-size: 19px;
  }

  .about-stats,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .about-btn,
  .about-btn-outline {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 340px) {
  .about-text h1 {
    font-size: 28px;
  }

  .about-stats div,
  .vm-card,
  .value-card {
    padding: 18px;
  }
}

/* ================= LOGIN / REGISTER PAGE ================= */

.auth-section {
  min-height: 100vh;
  background:
    linear-gradient(rgba(3, 27, 62, 0.94), rgba(3, 27, 62, 0.94)),
    url("../images/bg-img.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 70px 7%;
}

/* Main layout */
.auth-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 70px;
  align-items: center;
}

/* Left content */
.auth-left {
  color: white;
}

.auth-badge {
  display: inline-block;
  background: white;
  color: #07285a;
  border: 2px solid #e8b548;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 28px;
}

.auth-left h1 {
  font-size: 55px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 24px;
}

.auth-left h1 span {
  color: #e8b548;
}

.auth-left p {
  max-width: 650px;
  color: #dce6f5;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.auth-points {
  display: grid;
  gap: 14px;
}

.auth-points div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 13px 18px;
  border-radius: 8px;
  max-width: 360px;
}

/* Right form box */
.auth-box {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.25);
}

/* Login/Register tabs */
.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #f1f4f8;
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 25px;
}

.auth-tab {
  border: none;
  background: transparent;
  padding: 12px;
  border-radius: 9px;
  color: #07285a;
  font-weight: 900;
}

.auth-tab.active {
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: #031b3e;
}

/* Form hide/show */
.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  font-size: 28px;
  font-weight: 900;
  color: #07285a;
  margin-bottom: 6px;
}

.auth-form p {
  color: #666;
  font-size: 14px;
  margin-bottom: 22px;
}

/* Inputs */
.input-group-custom {
  margin-bottom: 15px;
}

.input-group-custom label {
  display: block;
  color: #061b3e;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 7px;
}

.input-group-custom input,
.input-group-custom select {
  width: 100%;
  border: 1px solid #dbe3ef;
  background: #f9fbff;
  border-radius: 9px;
  padding: 13px 14px;
  font-size: 14px;
  outline: none;
}

.input-group-custom input:focus,
.input-group-custom select:focus {
  border-color: #e8b548;
  box-shadow: 0 0 0 3px rgba(232, 181, 72, 0.15);
  background: white;
}

/* Remember + forgot */
.auth-options {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  margin: 6px 0 18px;
}

.auth-options a {
  color: #07285a;
  font-weight: 800;
  text-decoration: none;
}

/* Submit button */
.auth-submit {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: #031b3e;
  padding: 14px;
  border-radius: 9px;
  font-weight: 900;
}

/* Divider */
.auth-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.auth-divider::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ddd;
  position: absolute;
  top: 50%;
  left: 0;
}

.auth-divider span {
  background: white;
  position: relative;
  padding: 0 12px;
  color: #777;
  font-size: 13px;
}

/* Google Button */
.google-btn {
  width: 100%;
  border: 1px solid #dbe3ef;
  background: white;
  color: #061b3e;
  padding: 13px;
  border-radius: 9px;
  font-weight: 800;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .auth-section {
    padding: 55px 5%;
  }

  .auth-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .auth-left h1 {
    font-size: 42px;
  }

  .auth-box {
    max-width: 520px;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .auth-section {
    padding: 40px 18px;
  }

  .auth-left h1 {
    font-size: 32px;
  }

  .auth-left p {
    font-size: 14px;
  }

  .auth-badge {
    font-size: 11px;
    padding: 8px 14px;
  }

  .auth-box {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .auth-form h2 {
    font-size: 24px;
  }

  .auth-options {
    flex-direction: column;
  }
}

@media (max-width: 340px) {
  .auth-section {
    padding: 32px 12px;
  }

  .auth-left h1 {
    font-size: 28px;
  }

  .auth-box {
    padding: 18px 14px;
  }

  .input-group-custom input,
  .input-group-custom select {
    font-size: 12px;
    padding: 12px;
  }

  .auth-tab,
  .auth-submit,
  .google-btn {
    font-size: 12px;
  }
}

/* ==============login/ragistration end============== */

/* ================  for tenders (start)  ================= */

.tenders-page {
  padding: 60px 0;
  background: #f6f8fb;
}

.tenders-title {
  text-align: center;
  margin-bottom: 28px;
}

.tenders-title span {
  color: #e8b548;
  font-weight: 900;
  letter-spacing: 1px;
}

.tenders-title h1 {
  color: #07285a;
  font-weight: 900;
  font-size: 42px;
}

.tenders-title p {
  color: #555;
}

.tender-filter-box {
  background: white;
  padding: 18px;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 150px;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 28px;
}

.tender-filter-box input,
.tender-filter-box select {
  height: 45px;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  padding: 0 12px;
  outline: none;
}

.tender-filter-box button {
  border: none;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: #031b3e;
  border-radius: 8px;
  font-weight: 900;
}

.tender-list {
  display: grid;
  gap: 18px;
}

.tender-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tender-tag {
  display: inline-block;
  background: #07285a;
  color: white;
  padding: 6px 13px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.tender-card h3 {
  color: #07285a;
  font-size: 22px;
  font-weight: 900;
}

.tender-card p,
.tender-card li {
  color: #444;
  font-size: 14px;
}

.tender-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.tender-card button {
  align-self: center;
  border: none;
  background: #07285a;
  color: white;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 800;
  white-space: nowrap;
}

#noTenderFound {
  display: none;
  text-align: center;
  color: red;
  font-weight: 800;
  margin-top: 20px;
}

/* Modal */
.tender-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  padding: 20px;
}

.tender-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tender-modal-content {
  background: white;
  max-width: 650px;
  width: 100%;
  border-radius: 18px;
  padding: 30px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: none;
  background: transparent;
  font-size: 32px;
  line-height: 1;
}

.tender-modal-content h2 {
  color: #07285a;
  font-weight: 900;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0;
}

.modal-grid p {
  background: #f6f8fb;
  padding: 12px;
  border-radius: 10px;
  margin: 0;
  font-size: 14px;
}

.tender-modal-content h4 {
  color: #07285a;
  font-weight: 900;
  margin-top: 18px;
}

.apply-btn {
  display: inline-block;
  margin-top: 18px;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: #031b3e;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 768px) {
  .tender-filter-box {
    grid-template-columns: 1fr;
  }

  .tenders-title h1 {
    font-size: 30px;
  }

  .tender-card {
    flex-direction: column;
  }

  .tender-card button {
    width: 100%;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 340px) {
  .tenders-page {
    padding: 35px 0;
  }

  .tender-card {
    padding: 18px;
  }

  .tender-card h3 {
    font-size: 18px;
  }

  .tender-modal-content {
    padding: 22px 16px;
  }
}

/* ===============  tenders end  =============== */

/* popup modal */
.popup-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.popup-modal.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  position: relative;
  width: 90%;
  max-width: 750px;
  animation: popupZoom 0.4s ease;
}

.popup-content img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
}

.popup-close:hover {
  background: red;
}

@keyframes popupZoom {
  from {
    transform: scale(0.75);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .popup-content {
    width: 94%;
  }

  .popup-close {
    width: 32px;
    height: 32px;
    font-size: 22px;
  }
}

/* =====  Blogs page start  ===== */
.blog-page,
.blog-grid,
.blog-card {
  display: block;
}

.blog-grid {
  display: grid !important;
}
.blog-page {
  padding: 60px 0;
  background: var(--light);
}

.blog-heading {
  text-align: center;
  margin-bottom: 35px;
}

.blog-heading span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
}

.blog-heading h1 {
  color: var(--navy);
  font-size: 42px;
  font-weight: 900;
}

.blog-heading p {
  color: #555;
  max-width: 650px;
  margin: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(7, 40, 90, 0.18);
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-content h3 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.blog-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #555;
  margin: 15px 0;
}

.blog-meta i {
  color: var(--gold);
}

.blog-content button {
  border: none;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 900;
}

/* Modal */
.blog-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 99999;
  padding: 20px;
}

.blog-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-modal-content {
  background: var(--white);
  max-width: 650px;
  width: 100%;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  animation: popupZoom 0.35s ease;
}

.blog-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}

.blog-modal-content h2 {
  color: var(--navy);
  font-weight: 900;
}

.blog-modal-content p {
  color: #444;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-heading h1 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .blog-page {
    padding: 40px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-heading h1 {
    font-size: 28px;
  }

  .blog-card img {
    height: 170px;
  }

  .blog-modal-content {
    padding: 24px 18px;
  }
}

/* =========  GeM  page start ========= */
.gem-hero,
.gem-services,
.gem-about,
.gem-process,
.gem-docs,
.gem-cta {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.gem-grid {
  display: grid !important;
}
.gem-hero {
  background:
    linear-gradient(rgba(3, 27, 62, 0.9), rgba(3, 27, 62, 0.9)),
    url("Image/GEM.jpg") center/cover no-repeat;
  padding: 85px 0;
  text-align: center;
  color: var(--white);
}

.gem-hero-content span,
.section-title span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
}

.gem-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 12px 0;
}

.gem-hero-content p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.7;
}

.gem-btn,
.gem-cta-box a {
  display: inline-block;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.gem-about,
.gem-services,
.gem-process,
.gem-docs,
.gem-cta {
  padding: 55px 0;
  background: var(--light);
}

.gem-content-box,
.gem-highlight-box,
.gem-card,
.process-card,
.docs-box {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e6eaf0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  height: 100%;
  transition: 0.35s ease;
}

.gem-content-box h2,
.gem-highlight-box h3,
.section-title h2,
.docs-box h2 {
  color: var(--navy);
  font-weight: 900;
}

.gem-content-box p {
  color: #444;
  line-height: 1.8;
}

.gem-point {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
}

.gem-point i {
  color: var(--gold);
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 36px;
}

.gem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gem-card {
  text-align: center;
  padding: 22px 18px;
}

.gem-card i,
.process-card b {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 12px;
}

.gem-card h4,
.process-card h4 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.gem-card p,
.process-card p,
.docs-box li {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.gem-card:hover,
.process-card:hover,
.docs-box:hover {
  background: var(--navy);
  transform: translateY(-8px);
}

.gem-card:hover i,
.gem-card:hover h4,
.gem-card:hover p,
.process-card:hover b,
.process-card:hover h4,
.process-card:hover p,
.docs-box:hover h2,
.docs-box:hover li {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card b {
  display: block;
  font-size: 28px;
}

.docs-box ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.dark-box {
  background: var(--dark);
}

.dark-box h2,
.dark-box li {
  color: var(--white);
}

.gem-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--dark));
  color: var(--white);
  border-radius: 18px;
  padding: 38px 24px;
  text-align: center;
}

.gem-cta-box h2 {
  font-weight: 900;
  margin-bottom: 10px;
}

.gem-cta-box p {
  color: #dce6f5;
}

/* Responsive */
@media (max-width: 992px) {
  .gem-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gem-hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .gem-hero {
    padding: 60px 16px;
  }

  .gem-hero-content h1 {
    font-size: 30px;
  }

  .gem-hero-content p {
    font-size: 14px;
  }

  .gem-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .gem-content-box,
  .gem-highlight-box,
  .gem-card,
  .process-card,
  .docs-box {
    padding: 20px;
  }
}

/* ================= CPWD PAGE ================= */

body {
  padding-top: 85px;
}

.cpwd-hero,
.cpwd-about,
.cpwd-services,
.cpwd-process,
.cpwd-docs,
.cpwd-cta {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.cpwd-hero {
  min-height: 430px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/cpwd-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.cpwd-hero-content {
  max-width: 850px;
  margin: auto;
}

.cpwd-hero-content span,
.cpwd-title span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
}

.cpwd-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 12px 0;
}

.cpwd-hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #e8eef7;
  margin-bottom: 28px;
}

.cpwd-btn,
.cpwd-cta-box a {
  display: inline-block;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.35s ease;
}

.cpwd-btn:hover,
.cpwd-cta-box a:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

/* Sections */
.cpwd-about,
.cpwd-services,
.cpwd-process,
.cpwd-docs,
.cpwd-cta {
  padding: 55px 0;
  background: var(--light);
}

.cpwd-title {
  text-align: center;
  margin-bottom: 30px;
}

.cpwd-title h2 {
  color: var(--navy);
  font-size: 36px;
  font-weight: 900;
}

/* Boxes and cards */
.cpwd-box,
.cpwd-card,
.cpwd-process-card,
.cpwd-doc-box {
  background: var(--white);
  border: 1px solid #e6eaf0;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cpwd-box::before,
.cpwd-card::before,
.cpwd-process-card::before,
.cpwd-doc-box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  top: 0;
  left: 0;
  background: var(--gold);
  transition: 0.35s ease;
}

.cpwd-box:hover::before,
.cpwd-card:hover::before,
.cpwd-process-card:hover::before,
.cpwd-doc-box:hover::before {
  width: 100%;
}

.cpwd-box:hover,
.cpwd-card:hover,
.cpwd-process-card:hover,
.cpwd-doc-box:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(7, 40, 90, 0.22);
}

.cpwd-box h2,
.cpwd-box h3,
.cpwd-card h4,
.cpwd-process-card h4,
.cpwd-doc-box h2 {
  color: var(--navy);
  font-weight: 900;
}

.cpwd-box p,
.cpwd-card p,
.cpwd-process-card p,
.cpwd-doc-box li {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.cpwd-box:hover h2,
.cpwd-box:hover h3,
.cpwd-box:hover p,
.cpwd-card:hover h4,
.cpwd-card:hover p,
.cpwd-process-card:hover h4,
.cpwd-process-card:hover p,
.cpwd-doc-box:hover h2,
.cpwd-doc-box:hover li {
  color: var(--white);
}

/* Dark box */
.dark-cpwd-box,
.cpwd-dark {
  background: var(--dark);
}

.dark-cpwd-box h2,
.dark-cpwd-box h3,
.dark-cpwd-box p,
.cpwd-dark h2,
.cpwd-dark li {
  color: var(--white);
}

/* Points */
.cpwd-point {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
}

.cpwd-point i {
  color: var(--gold);
}

/* Grids */
.cpwd-grid,
.cpwd-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cpwd-card {
  text-align: center;
}

.cpwd-card i {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 12px;
  transition: 0.35s ease;
}

.cpwd-card:hover i {
  color: var(--white);
  transform: scale(1.15) rotate(5deg);
}

.cpwd-process-card b {
  display: block;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.cpwd-process-card:hover b {
  color: var(--white);
}

.cpwd-doc-box ul {
  margin: 0;
  padding-left: 20px;
}

/* CTA */
.cpwd-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--dark));
  color: var(--white);
  text-align: center;
  border-radius: 18px;
  padding: 38px 24px;
}

.cpwd-cta-box h2 {
  font-weight: 900;
}

.cpwd-cta-box p {
  color: #dce6f5;
}

/* Responsive */
@media (max-width: 992px) {
  .cpwd-grid,
  .cpwd-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cpwd-hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .cpwd-hero {
    min-height: 340px;
    padding: 65px 16px;
  }

  .cpwd-hero-content h1 {
    font-size: 30px;
  }

  .cpwd-hero-content p {
    font-size: 14px;
  }

  .cpwd-grid,
  .cpwd-process-grid {
    grid-template-columns: 1fr;
  }

  .cpwd-title h2 {
    font-size: 26px;
  }

  .cpwd-box,
  .cpwd-card,
  .cpwd-process-card,
  .cpwd-doc-box {
    padding: 20px;
  }
}

@media (max-width: 340px) {
  .cpwd-hero-content h1 {
    font-size: 26px;
  }

  .cpwd-btn,
  .cpwd-cta-box a {
    width: 100%;
    text-align: center;
  }
}

/* ================= NTPC PAGE ================= */

.ntpc-hero {
  min-height: 430px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/ntpc-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.ntpc-hero-content {
  max-width: 850px;
  margin: auto;
}

.ntpc-hero-content span,
.ntpc-title span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
}

.ntpc-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 12px 0;
}

.ntpc-hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #e8eef7;
  margin-bottom: 28px;
}

.ntpc-btn,
.ntpc-cta-box a {
  display: inline-block;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.35s ease;
}

.ntpc-btn:hover,
.ntpc-cta-box a:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.ntpc-about,
.ntpc-services,
.ntpc-process,
.ntpc-docs,
.ntpc-cta {
  padding: 55px 0;
  background: var(--light);
}

.ntpc-title {
  text-align: center;
  margin-bottom: 30px;
}

.ntpc-title h2 {
  color: var(--navy);
  font-size: 36px;
  font-weight: 900;
}

.ntpc-box,
.ntpc-card,
.ntpc-process-card,
.ntpc-doc-box {
  background: var(--white);
  border: 1px solid #e6eaf0;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.ntpc-box::before,
.ntpc-card::before,
.ntpc-process-card::before,
.ntpc-doc-box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  top: 0;
  left: 0;
  background: var(--gold);
  transition: 0.35s ease;
}

.ntpc-box:hover::before,
.ntpc-card:hover::before,
.ntpc-process-card:hover::before,
.ntpc-doc-box:hover::before {
  width: 100%;
}

.ntpc-box:hover,
.ntpc-card:hover,
.ntpc-process-card:hover,
.ntpc-doc-box:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(7, 40, 90, 0.22);
}

.ntpc-box h2,
.ntpc-box h3,
.ntpc-card h4,
.ntpc-process-card h4,
.ntpc-doc-box h2 {
  color: var(--navy);
  font-weight: 900;
}

.ntpc-box p,
.ntpc-card p,
.ntpc-process-card p,
.ntpc-doc-box li {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.ntpc-box:hover h2,
.ntpc-box:hover h3,
.ntpc-box:hover p,
.ntpc-card:hover h4,
.ntpc-card:hover p,
.ntpc-process-card:hover h4,
.ntpc-process-card:hover p,
.ntpc-doc-box:hover h2,
.ntpc-doc-box:hover li {
  color: var(--white);
}

.dark-ntpc-box,
.ntpc-dark {
  background: var(--dark);
}

.dark-ntpc-box h2,
.dark-ntpc-box h3,
.dark-ntpc-box p,
.ntpc-dark h2,
.ntpc-dark li {
  color: var(--white);
}

.ntpc-point {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
}

.ntpc-point i {
  color: var(--gold);
}

.ntpc-grid,
.ntpc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ntpc-card {
  text-align: center;
}

.ntpc-card i {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 12px;
  transition: 0.35s ease;
}

.ntpc-card:hover i {
  color: var(--white);
  transform: scale(1.15) rotate(5deg);
}

.ntpc-process-card b {
  display: block;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.ntpc-process-card:hover b {
  color: var(--white);
}

.ntpc-doc-box ul {
  margin: 0;
  padding-left: 20px;
}

.ntpc-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--dark));
  color: var(--white);
  text-align: center;
  border-radius: 18px;
  padding: 38px 24px;
}

.ntpc-cta-box h2 {
  font-weight: 900;
}

.ntpc-cta-box p {
  color: #dce6f5;
}

/* Responsive */
@media (max-width: 992px) {
  .ntpc-grid,
  .ntpc-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ntpc-hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .ntpc-hero {
    min-height: 340px;
    padding: 65px 16px;
  }

  .ntpc-hero-content h1 {
    font-size: 30px;
  }

  .ntpc-hero-content p {
    font-size: 14px;
  }

  .ntpc-grid,
  .ntpc-process-grid {
    grid-template-columns: 1fr;
  }

  .ntpc-title h2 {
    font-size: 26px;
  }

  .ntpc-box,
  .ntpc-card,
  .ntpc-process-card,
  .ntpc-doc-box {
    padding: 20px;
  }
}

@media (max-width: 340px) {
  .ntpc-hero-content h1 {
    font-size: 26px;
  }

  .ntpc-btn,
  .ntpc-cta-box a {
    width: 100%;
    text-align: center;
  }
}

.related-blogs {
  padding: 55px 0;
  background: var(--light);
}

.related-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.related-blog-card:hover {
  background: var(--navy);
  transform: translateY(-8px);
}

.related-blog-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.related-blog-content {
  padding: 18px;
}

.related-blog-content span {
  color: var(--gold);
  font-weight: 900;
  font-size: 12px;
}

.related-blog-content h3 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.related-blog-content p {
  color: #444;
  font-size: 14px;
}

.related-blog-content a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.related-blog-card:hover h3,
.related-blog-card:hover p {
  color: var(--white);
}

@media (max-width: 992px) {
  .related-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .related-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Service detail pages section gap reduce */
.gem-about,
.gem-services,
.gem-process,
.gem-docs,
.gem-cta,
.cpwd-about,
.cpwd-services,
.cpwd-process,
.cpwd-docs,
.cpwd-cta,
.ntpc-about,
.ntpc-services,
.ntpc-process,
.ntpc-docs,
.ntpc-cta {
  padding: 28px 0 !important;
}

/* Section title gap reduce */
.section-title,
.cpwd-title,
.ntpc-title {
  margin-bottom: 16px !important;
}

/* Grid gap reduce */
.gem-grid,
.process-grid,
.cpwd-grid,
.cpwd-process-grid,
.ntpc-grid,
.ntpc-process-grid {
  gap: 12px !important;
}

/* Cards compact */
.gem-content-box,
.gem-highlight-box,
.gem-card,
.process-card,
.docs-box,
.cpwd-box,
.cpwd-card,
.cpwd-process-card,
.cpwd-doc-box,
.ntpc-box,
.ntpc-card,
.ntpc-process-card,
.ntpc-doc-box {
  padding: 18px !important;
}

/* ================= PWD PAGE ================= */

.pwd-hero {
  min-height: 430px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/pwd-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.pwd-hero-content {
  max-width: 850px;
  margin: auto;
}

.pwd-hero-content span,
.pwd-title span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
}

.pwd-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 12px 0;
}

.pwd-hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #e8eef7;
  margin-bottom: 28px;
}

.pwd-btn,
.pwd-cta-box a {
  display: inline-block;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.35s ease;
}

.pwd-btn:hover,
.pwd-cta-box a:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.pwd-about,
.pwd-services,
.pwd-process,
.pwd-docs,
.pwd-cta {
  padding: 28px 0;
  background: var(--light);
}

.pwd-title {
  text-align: center;
  margin-bottom: 18px;
}

.pwd-title h2 {
  color: var(--navy);
  font-size: 36px;
  font-weight: 900;
}

.pwd-box,
.pwd-card,
.pwd-process-card,
.pwd-doc-box {
  background: var(--white);
  border: 1px solid #e6eaf0;
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.pwd-box::before,
.pwd-card::before,
.pwd-process-card::before,
.pwd-doc-box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  top: 0;
  left: 0;
  background: var(--gold);
  transition: 0.35s ease;
}

.pwd-box:hover::before,
.pwd-card:hover::before,
.pwd-process-card:hover::before,
.pwd-doc-box:hover::before {
  width: 100%;
}

.pwd-box:hover,
.pwd-card:hover,
.pwd-process-card:hover,
.pwd-doc-box:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(7, 40, 90, 0.22);
}

.pwd-box h2,
.pwd-card h4,
.pwd-process-card h4,
.pwd-doc-box h2 {
  color: var(--navy);
  font-weight: 900;
}

.pwd-box p,
.pwd-card p,
.pwd-process-card p,
.pwd-doc-box li {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.pwd-box:hover h2,
.pwd-box:hover p,
.pwd-card:hover h4,
.pwd-card:hover p,
.pwd-process-card:hover h4,
.pwd-process-card:hover p,
.pwd-doc-box:hover h2,
.pwd-doc-box:hover li {
  color: var(--white);
}

.dark-pwd-box,
.pwd-dark {
  background: var(--dark);
}

.dark-pwd-box h2,
.dark-pwd-box p,
.pwd-dark h2,
.pwd-dark li {
  color: var(--white);
}

.pwd-point {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
}

.pwd-point i {
  color: var(--gold);
}

.pwd-grid,
.pwd-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pwd-card {
  text-align: center;
}

.pwd-card i {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 12px;
  transition: 0.35s ease;
}

.pwd-card:hover i {
  color: var(--white);
  transform: scale(1.15) rotate(5deg);
}

.pwd-process-card b {
  display: block;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.pwd-process-card:hover b {
  color: var(--white);
}

.pwd-doc-box ul {
  margin: 0;
  padding-left: 20px;
}

.pwd-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--dark));
  color: var(--white);
  text-align: center;
  border-radius: 18px;
  padding: 34px 22px;
}

.pwd-cta-box h2 {
  font-weight: 900;
}

.pwd-cta-box p {
  color: #dce6f5;
}

/* Responsive */
@media (max-width: 992px) {
  .pwd-grid,
  .pwd-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pwd-hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .pwd-hero {
    min-height: 340px;
    padding: 65px 16px;
  }

  .pwd-hero-content h1 {
    font-size: 30px;
  }

  .pwd-hero-content p {
    font-size: 14px;
  }

  .pwd-grid,
  .pwd-process-grid {
    grid-template-columns: 1fr;
  }

  .pwd-title h2 {
    font-size: 26px;
  }

  .pwd-box,
  .pwd-card,
  .pwd-process-card,
  .pwd-doc-box {
    padding: 18px;
  }
}

@media (max-width: 340px) {
  .pwd-hero-content h1 {
    font-size: 26px;
  }

  .pwd-btn,
  .pwd-cta-box a {
    width: 100%;
    text-align: center;
  }
}

body {
  padding-top: 85px;
}

.banks-hero,
.banks-about,
.banks-services,
.banks-docs,
.related-blogs,
.banks-cta {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 100px;
}

.banks-grid,
.related-blog-grid {
  display: grid !important;
}
.banks-hero {
  min-height: 430px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/banks-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.banks-hero-content {
  max-width: 850px;
  margin: auto;
}

.banks-hero-content span,
.banks-title span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
}

.banks-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 12px 0;
}

.banks-hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #e8eef7;
  margin-bottom: 28px;
}

.banks-btn,
.banks-cta-box a {
  display: inline-block;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.35s ease;
}

.banks-btn:hover,
.banks-cta-box a:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.banks-about,
.banks-services,
.banks-docs,
.banks-cta {
  padding: 28px 0;
  background: var(--light);
}

.banks-title {
  text-align: center;
  margin-bottom: 18px;
}

.banks-title h2 {
  color: var(--navy);
  font-size: 36px;
  font-weight: 900;
}

.banks-box,
.banks-card,
.banks-doc-box {
  background: var(--white);
  border: 1px solid #e6eaf0;
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.banks-box::before,
.banks-card::before,
.banks-doc-box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  top: 0;
  left: 0;
  background: var(--gold);
  transition: 0.35s ease;
}

.banks-box:hover::before,
.banks-card:hover::before,
.banks-doc-box:hover::before {
  width: 100%;
}

.banks-box:hover,
.banks-card:hover,
.banks-doc-box:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-8px);
}

.banks-box h2,
.banks-card h4,
.banks-doc-box h2 {
  color: var(--navy);
  font-weight: 900;
}

.banks-box p,
.banks-card p,
.banks-doc-box li {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.banks-box:hover h2,
.banks-box:hover p,
.banks-card:hover h4,
.banks-card:hover p,
.banks-doc-box:hover h2,
.banks-doc-box:hover li {
  color: var(--white);
}

.dark-banks-box,
.banks-dark {
  background: var(--dark);
}

.dark-banks-box h2,
.dark-banks-box p,
.banks-dark h2,
.banks-dark li {
  color: var(--white);
}

.banks-point {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
}

.banks-point i {
  color: var(--gold);
}

.banks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.banks-card {
  text-align: center;
}

.banks-card i {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 12px;
  transition: 0.35s ease;
}

.banks-card:hover i {
  color: var(--white);
  transform: scale(1.15) rotate(5deg);
}

.banks-doc-box ul {
  margin: 0;
  padding-left: 20px;
}

.banks-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--dark));
  color: var(--white);
  text-align: center;
  border-radius: 18px;
  padding: 34px 22px;
}

.banks-cta-box h2 {
  font-weight: 900;
}

.banks-cta-box p {
  color: #dce6f5;
}

@media (max-width: 992px) {
  .banks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banks-hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .banks-hero {
    min-height: 340px;
    padding: 65px 16px;
  }

  .banks-hero-content h1 {
    font-size: 30px;
  }

  .banks-hero-content p {
    font-size: 14px;
  }

  .banks-grid {
    grid-template-columns: 1fr;
  }

  .banks-title h2 {
    font-size: 26px;
  }
}

/* ================= MES PAGE ================= */

.mes-hero {
  min-height: 430px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/mes-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.mes-hero-content {
  max-width: 850px;
  margin: auto;
}

.mes-hero-content span,
.mes-title span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
}

.mes-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 12px 0;
}

.mes-hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #e8eef7;
  margin-bottom: 28px;
}

.mes-btn,
.mes-cta-box a {
  display: inline-block;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.35s ease;
}

.mes-btn:hover,
.mes-cta-box a:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.mes-about,
.mes-services,
.mes-docs,
.mes-cta {
  padding: 28px 0;
  background: var(--light);
}

.mes-title {
  text-align: center;
  margin-bottom: 18px;
}

.mes-title h2 {
  color: var(--navy);
  font-size: 36px;
  font-weight: 900;
}

.mes-box,
.mes-card,
.mes-doc-box {
  background: var(--white);
  border: 1px solid #e6eaf0;
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.mes-box::before,
.mes-card::before,
.mes-doc-box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  top: 0;
  left: 0;
  background: var(--gold);
  transition: 0.35s ease;
}

.mes-box:hover::before,
.mes-card:hover::before,
.mes-doc-box:hover::before {
  width: 100%;
}

.mes-box:hover,
.mes-card:hover,
.mes-doc-box:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-8px);
}

.mes-box h2,
.mes-card h4,
.mes-doc-box h2 {
  color: var(--navy);
  font-weight: 900;
}

.mes-box p,
.mes-card p,
.mes-doc-box li {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.mes-box:hover h2,
.mes-box:hover p,
.mes-card:hover h4,
.mes-card:hover p,
.mes-doc-box:hover h2,
.mes-doc-box:hover li {
  color: var(--white);
}

.dark-mes-box,
.mes-dark {
  background: var(--dark);
}

.dark-mes-box h2,
.dark-mes-box p,
.mes-dark h2,
.mes-dark li {
  color: var(--white);
}

.mes-point {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
}

.mes-point i {
  color: var(--gold);
}

.mes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mes-card {
  text-align: center;
}

.mes-card i {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 12px;
  transition: 0.35s ease;
}

.mes-card:hover i {
  color: var(--white);
  transform: scale(1.15) rotate(5deg);
}

.mes-doc-box ul {
  margin: 0;
  padding-left: 20px;
}

.mes-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--dark));
  color: var(--white);
  text-align: center;
  border-radius: 18px;
  padding: 34px 22px;
}

.mes-cta-box h2 {
  font-weight: 900;
}

.mes-cta-box p {
  color: #dce6f5;
}

/* Responsive */
@media (max-width: 992px) {
  .mes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mes-hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .mes-hero {
    min-height: 340px;
    padding: 65px 16px;
  }

  .mes-hero-content h1 {
    font-size: 30px;
  }

  .mes-hero-content p {
    font-size: 14px;
  }

  .mes-grid {
    grid-template-columns: 1fr;
  }

  .mes-title h2 {
    font-size: 26px;
  }
}

body {
  padding-top: 85px;
}

.railways-hero,
.railways-about,
.railways-services,
.railways-docs,
.related-blogs,
.railways-cta {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 100px;
}

.railways-grid,
.related-blog-grid {
  display: grid !important;
}

.railways-hero {
  min-height: 430px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/railway-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.railways-hero-content {
  max-width: 850px;
  margin: auto;
}

.railways-hero-content span,
.railways-title span {
  color: var(--gold);
  font-weight: 900;
}

.railways-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 12px 0;
}

.railways-btn,
.railways-cta-box a {
  display: inline-block;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.railways-about,
.railways-services,
.railways-docs,
.railways-cta {
  padding: 28px 0;
}

.railways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.railways-box,
.railways-card,
.railways-doc-box {
  background: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.railways-box:hover,
.railways-card:hover,
.railways-doc-box:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-8px);
}

.railways-card {
  text-align: center;
}

.railways-card i {
  font-size: 34px;
  color: var(--gold);
}

.dark-railways-box,
.railways-dark {
  background: var(--dark);
  color: white;
}

@media (max-width: 992px) {
  .railways-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .railways-grid {
    grid-template-columns: 1fr;
  }

  .railways-hero-content h1 {
    font-size: 30px;
  }
}

/* ================= INDIAN OIL PAGE ================= */

.iocl-hero {
  margin-top: 85px;
  min-height: 430px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/indian-oil-bg.jpg") center/cover no-repeat;
  display: flex !important;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.iocl-hero-content {
  max-width: 850px;
  margin: auto;
}

.iocl-hero-content span,
.iocl-title span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
}

.iocl-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 12px 0;
  color: var(--white);
}

.iocl-hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #e8eef7;
  margin-bottom: 28px;
}

.iocl-btn,
.iocl-cta-box a {
  display: inline-block;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.35s ease;
}

.iocl-btn:hover,
.iocl-cta-box a:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.iocl-about,
.iocl-services,
.iocl-docs,
.iocl-cta {
  padding: 28px 0;
  background: var(--light);
}

.iocl-title {
  text-align: center;
  margin-bottom: 18px;
}

.iocl-title h2 {
  color: var(--navy);
  font-size: 36px;
  font-weight: 900;
}

.iocl-box,
.iocl-card,
.iocl-doc-box {
  background: var(--white);
  border: 1px solid #e6eaf0;
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.iocl-box::before,
.iocl-card::before,
.iocl-doc-box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  top: 0;
  left: 0;
  background: var(--gold);
  transition: 0.35s ease;
}

.iocl-box:hover::before,
.iocl-card:hover::before,
.iocl-doc-box:hover::before {
  width: 100%;
}

.iocl-box:hover,
.iocl-card:hover,
.iocl-doc-box:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(7, 40, 90, 0.22);
}

.iocl-box h2,
.iocl-card h4,
.iocl-doc-box h2 {
  color: var(--navy);
  font-weight: 900;
}

.iocl-box p,
.iocl-card p,
.iocl-doc-box li {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.iocl-box:hover h2,
.iocl-box:hover p,
.iocl-card:hover h4,
.iocl-card:hover p,
.iocl-doc-box:hover h2,
.iocl-doc-box:hover li {
  color: var(--white);
}

.dark-iocl-box,
.iocl-dark {
  background: var(--dark);
}

.dark-iocl-box h2,
.dark-iocl-box p,
.iocl-dark h2,
.iocl-dark li {
  color: var(--white);
}

.iocl-point {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
}

.iocl-point i {
  color: var(--gold);
}

.iocl-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.iocl-card {
  text-align: center;
}

.iocl-card i {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 12px;
  transition: 0.35s ease;
}

.iocl-card:hover i {
  color: var(--white);
  transform: scale(1.15) rotate(5deg);
}

.iocl-doc-box ul {
  margin: 0;
  padding-left: 20px;
}

.iocl-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--dark));
  color: var(--white);
  text-align: center;
  border-radius: 18px;
  padding: 34px 22px;
}

.iocl-cta-box h2 {
  font-weight: 900;
}

.iocl-cta-box p {
  color: #dce6f5;
}

/* Force show fix */
.iocl-hero,
.iocl-about,
.iocl-services,
.iocl-docs,
.related-blogs,
.iocl-cta {
  display: block;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Responsive */
@media (max-width: 992px) {
  .iocl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .iocl-hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .iocl-hero {
    min-height: 340px;
    padding: 65px 16px;
  }

  .iocl-hero-content h1 {
    font-size: 30px;
  }

  .iocl-hero-content p {
    font-size: 14px;
  }

  .iocl-grid {
    grid-template-columns: 1fr;
  }

  .iocl-title h2 {
    font-size: 26px;
  }
}

.bihar-hero {
  margin-top: 85px;
  min-height: 430px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/bihar-bg.jpg") center/cover no-repeat;
  display: flex !important;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.bihar-hero-content {
  max-width: 850px;
  margin: auto;
}

.bihar-hero-content span,
.bihar-title span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
}

.bihar-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 12px 0;
  color: var(--white);
}

.bihar-hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #e8eef7;
  margin-bottom: 28px;
}

.bihar-btn,
.bihar-cta-box a {
  display: inline-block;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.35s ease;
}

.bihar-btn:hover,
.bihar-cta-box a:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.bihar-about,
.bihar-services,
.bihar-docs,
.bihar-cta {
  padding: 28px 0;
  background: var(--light);
}

.bihar-title {
  text-align: center;
  margin-bottom: 18px;
}

.bihar-title h2 {
  color: var(--navy);
  font-size: 36px;
  font-weight: 900;
}

.bihar-box,
.bihar-card,
.bihar-doc-box {
  background: var(--white);
  border: 1px solid #e6eaf0;
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.bihar-box::before,
.bihar-card::before,
.bihar-doc-box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  top: 0;
  left: 0;
  background: var(--gold);
  transition: 0.35s ease;
}

.bihar-box:hover::before,
.bihar-card:hover::before,
.bihar-doc-box:hover::before {
  width: 100%;
}

.bihar-box:hover,
.bihar-card:hover,
.bihar-doc-box:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-8px);
}

.bihar-box h2,
.bihar-card h4,
.bihar-doc-box h2 {
  color: var(--navy);
  font-weight: 900;
}

.bihar-box p,
.bihar-card p,
.bihar-doc-box li {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.bihar-box:hover h2,
.bihar-box:hover p,
.bihar-card:hover h4,
.bihar-card:hover p,
.bihar-doc-box:hover h2,
.bihar-doc-box:hover li {
  color: var(--white);
}

.dark-bihar-box,
.bihar-dark {
  background: var(--dark);
}

.dark-bihar-box h2,
.dark-bihar-box p,
.bihar-dark h2,
.bihar-dark li {
  color: var(--white);
}

.bihar-point {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
}

.bihar-point i {
  color: var(--gold);
}

.bihar-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.bihar-card {
  text-align: center;
}

.bihar-card i {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 12px;
  transition: 0.35s ease;
}

.bihar-card:hover i {
  color: var(--white);
  transform: scale(1.15) rotate(5deg);
}

.bihar-doc-box ul {
  margin: 0;
  padding-left: 20px;
}

.bihar-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--dark));
  color: var(--white);
  text-align: center;
  border-radius: 18px;
  padding: 34px 22px;
}

.bihar-cta-box h2 {
  font-weight: 900;
}

.bihar-cta-box p {
  color: #dce6f5;
}

@media (max-width: 992px) {
  .bihar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bihar-hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .bihar-hero {
    min-height: 340px;
    padding: 65px 16px;
  }

  .bihar-hero-content h1 {
    font-size: 30px;
  }

  .bihar-hero-content p {
    font-size: 14px;
  }

  .bihar-grid {
    grid-template-columns: 1fr;
  }

  .bihar-title h2 {
    font-size: 26px;
  }
}

/* ================= BATCH 1 COMMON PAGE STYLE ================= */

.kv-hero,
.private-hero {
  margin-top: 85px;
  min-height: 430px;
  padding: 90px 20px;
  display: flex !important;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.kv-hero {
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/kendriya-bg.jpg") center/cover no-repeat;
}

.private-hero {
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/private-bg.jpg") center/cover no-repeat;
}

.kv-hero-content,
.private-hero-content {
  max-width: 850px;
  margin: auto;
}

.kv-hero-content span,
.private-hero-content span,
.kv-title span,
.private-title span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
}

.kv-hero-content h1,
.private-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 12px 0;
  color: var(--white);
}

.kv-hero-content p,
.private-hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #e8eef7;
  margin-bottom: 28px;
}

.kv-btn,
.private-btn,
.kv-cta-box a,
.private-cta-box a {
  display: inline-block;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: var(--dark);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.35s ease;
}

.kv-btn:hover,
.private-btn:hover,
.kv-cta-box a:hover,
.private-cta-box a:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.kv-about,
.kv-services,
.kv-docs,
.kv-cta,
.private-about,
.private-services,
.private-docs,
.private-cta {
  padding: 28px 0;
  background: var(--light);
}

.kv-title,
.private-title {
  text-align: center;
  margin-bottom: 18px;
}

.kv-title h2,
.private-title h2 {
  color: var(--navy);
  font-size: 36px;
  font-weight: 900;
}

.kv-box,
.kv-card,
.kv-doc-box,
.private-box,
.private-card,
.private-doc-box {
  background: var(--white);
  border: 1px solid #e6eaf0;
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.kv-box::before,
.kv-card::before,
.kv-doc-box::before,
.private-box::before,
.private-card::before,
.private-doc-box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  top: 0;
  left: 0;
  background: var(--gold);
  transition: 0.35s ease;
}

.kv-box:hover::before,
.kv-card:hover::before,
.kv-doc-box:hover::before,
.private-box:hover::before,
.private-card:hover::before,
.private-doc-box:hover::before {
  width: 100%;
}

.kv-box:hover,
.kv-card:hover,
.kv-doc-box:hover,
.private-box:hover,
.private-card:hover,
.private-doc-box:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(7, 40, 90, 0.22);
}

.kv-box h2,
.kv-card h4,
.kv-doc-box h2,
.private-box h2,
.private-card h4,
.private-doc-box h2 {
  color: var(--navy);
  font-weight: 900;
}

.kv-box p,
.kv-card p,
.kv-doc-box li,
.private-box p,
.private-card p,
.private-doc-box li {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.kv-box:hover h2,
.kv-box:hover p,
.kv-card:hover h4,
.kv-card:hover p,
.kv-doc-box:hover h2,
.kv-doc-box:hover li,
.private-box:hover h2,
.private-box:hover p,
.private-card:hover h4,
.private-card:hover p,
.private-doc-box:hover h2,
.private-doc-box:hover li {
  color: var(--white);
}

.dark-kv-box,
.kv-dark,
.dark-private-box,
.private-dark {
  background: var(--dark);
}

.dark-kv-box h2,
.dark-kv-box p,
.kv-dark h2,
.kv-dark li,
.dark-private-box h2,
.dark-private-box p,
.private-dark h2,
.private-dark li {
  color: var(--white);
}

.kv-point,
.private-point {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
}

.kv-point i,
.private-point i {
  color: var(--gold);
}

.kv-grid,
.private-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.kv-card,
.private-card {
  text-align: center;
}

.kv-card i,
.private-card i {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 12px;
  transition: 0.35s ease;
}

.kv-card:hover i,
.private-card:hover i {
  color: var(--white);
  transform: scale(1.15) rotate(5deg);
}

.kv-doc-box ul,
.private-doc-box ul {
  margin: 0;
  padding-left: 20px;
}

.kv-cta-box,
.private-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--dark));
  color: var(--white);
  text-align: center;
  border-radius: 18px;
  padding: 34px 22px;
}

.kv-cta-box h2,
.private-cta-box h2 {
  font-weight: 900;
}

.kv-cta-box p,
.private-cta-box p {
  color: #dce6f5;
}

@media (max-width: 992px) {
  .kv-grid,
  .private-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kv-hero-content h1,
  .private-hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .kv-hero,
  .private-hero {
    min-height: 340px;
    padding: 65px 16px;
  }

  .kv-hero-content h1,
  .private-hero-content h1 {
    font-size: 30px;
  }

  .kv-hero-content p,
  .private-hero-content p {
    font-size: 14px;
  }

  .kv-grid,
  .private-grid {
    grid-template-columns: 1fr;
  }

  .kv-title h2,
  .private-title h2 {
    font-size: 26px;
  }
}

.education-hero {
  margin-top: 85px;
  min-height: 420px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/education-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.education-hero-content {
  max-width: 900px;
  margin: auto;
}

.education-hero-content span,
.education-title span {
  color: #e8b548;
  font-weight: 900;
  letter-spacing: 1px;
}

.education-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
}

.education-hero-content p {
  color: #e8eef7;
  font-size: 17px;
  line-height: 1.7;
}

.education-btn,
.education-cta-box a {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: #031b3e;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
}

.education-about,
.education-services,
.education-docs,
.education-cta {
  padding: 50px 0;
  background: #f7f9fc;
}

.education-title {
  text-align: center;
  margin-bottom: 25px;
}

.education-title h2 {
  color: #07285a;
  font-size: 34px;
  font-weight: 900;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.education-box,
.education-card,
.education-doc-box {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.education-box:hover,
.education-card:hover,
.education-doc-box:hover {
  background: #07285a;
  color: #fff;
  transform: translateY(-8px);
}

.education-box h2,
.education-card h4,
.education-doc-box h2 {
  color: #07285a;
  font-weight: 900;
}

.education-box:hover h2,
.education-card:hover h4,
.education-doc-box:hover h2,
.education-box:hover p,
.education-card:hover p,
.education-doc-box:hover li {
  color: #fff;
}

.education-box p,
.education-card p,
.education-doc-box li {
  color: #444;
  line-height: 1.7;
}

.education-dark {
  background: #031b3e;
}

.education-dark h2,
.education-dark span,
.education-dark li {
  color: #fff;
}

.education-point {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}

.education-point i,
.education-card i {
  color: #e8b548;
}

.education-card {
  text-align: center;
}

.education-card i {
  font-size: 34px;
  margin-bottom: 15px;
}

.education-cta-box {
  background: linear-gradient(135deg, #07285a, #031b3e);
  color: #fff;
  text-align: center;
  padding: 40px 25px;
  border-radius: 18px;
}

@media (max-width: 992px) {
  .education-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .education-hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .education-grid {
    grid-template-columns: 1fr;
  }

  .education-hero {
    min-height: 350px;
    padding: 60px 15px;
  }

  .education-hero-content h1 {
    font-size: 28px;
  }

  .education-hero-content p {
    font-size: 14px;
  }
}

.healthcare-hero {
  margin-top: 85px;
  min-height: 420px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/healthcare-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.healthcare-hero-content {
  max-width: 900px;
  margin: auto;
}

.healthcare-hero-content span,
.healthcare-title span {
  color: #e8b548;
  font-weight: 900;
  letter-spacing: 1px;
}

.healthcare-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
}

.healthcare-hero-content p {
  color: #e8eef7;
  font-size: 17px;
  line-height: 1.7;
}

.healthcare-btn,
.healthcare-cta-box a {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: #031b3e;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
}

.healthcare-about,
.healthcare-services,
.healthcare-docs,
.healthcare-cta {
  padding: 50px 0;
  background: #f7f9fc;
}

.healthcare-title {
  text-align: center;
  margin-bottom: 25px;
}

.healthcare-title h2 {
  color: #07285a;
  font-size: 34px;
  font-weight: 900;
}

.healthcare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.healthcare-box,
.healthcare-card,
.healthcare-doc-box {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.healthcare-box:hover,
.healthcare-card:hover,
.healthcare-doc-box:hover {
  background: #07285a;
  color: #fff;
  transform: translateY(-8px);
}

.healthcare-box h2,
.healthcare-card h4,
.healthcare-doc-box h2 {
  color: #07285a;
  font-weight: 900;
}

.healthcare-box:hover h2,
.healthcare-card:hover h4,
.healthcare-doc-box:hover h2,
.healthcare-box:hover p,
.healthcare-card:hover p,
.healthcare-doc-box:hover li {
  color: #fff;
}

.healthcare-box p,
.healthcare-card p,
.healthcare-doc-box li {
  color: #444;
  line-height: 1.7;
}

.healthcare-dark {
  background: #031b3e;
}

.healthcare-dark h2,
.healthcare-dark span,
.healthcare-dark li {
  color: #fff;
}

.healthcare-point {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}

.healthcare-point i,
.healthcare-card i {
  color: #e8b548;
}

.healthcare-card {
  text-align: center;
}

.healthcare-card i {
  font-size: 34px;
  margin-bottom: 15px;
}

.healthcare-cta-box {
  background: linear-gradient(135deg, #07285a, #031b3e);
  color: #fff;
  text-align: center;
  padding: 40px 25px;
  border-radius: 18px;
}

@media (max-width: 992px) {
  .healthcare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .healthcare-hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .healthcare-grid {
    grid-template-columns: 1fr;
  }

  .healthcare-hero {
    min-height: 350px;
    padding: 60px 15px;
  }

  .healthcare-hero-content h1 {
    font-size: 28px;
  }

  .healthcare-hero-content p {
    font-size: 14px;
  }
}

.international-hero {
  margin-top: 85px;
  min-height: 420px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/international-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.international-hero-content {
  max-width: 900px;
  margin: auto;
}

.international-hero-content span,
.international-title span {
  color: #e8b548;
  font-weight: 900;
}

.international-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
}

.international-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.international-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.international-card:hover {
  background: #07285a;
  color: #fff;
  transform: translateY(-8px);
}

.international-card i {
  font-size: 34px;
  color: #e8b548;
}

.defence-hero {
  margin-top: 85px;
  min-height: 420px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/defence-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.defence-hero-content {
  max-width: 900px;
  margin: auto;
}

.defence-hero-content span,
.defence-title span {
  color: #e8b548;
  font-weight: 900;
}

.defence-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
}

.defence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.defence-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.defence-card:hover {
  background: #07285a;
  color: #fff;
  transform: translateY(-8px);
}

.defence-card i {
  font-size: 34px;
  color: #e8b548;
}

.international-hero {
  margin-top: 85px;
  min-height: 420px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/international-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.international-hero-content {
  max-width: 900px;
  margin: auto;
}

.international-hero-content span,
.international-title span {
  color: #e8b548;
  font-weight: 900;
}

.international-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
}

.international-hero-content p {
  color: #e8eef7;
  font-size: 17px;
  line-height: 1.7;
}

.international-btn,
.international-cta-box a {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: #031b3e;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
}

.international-about,
.international-services,
.international-docs,
.international-cta {
  padding: 50px 0;
  background: #f7f9fc;
}

.international-title {
  text-align: center;
  margin-bottom: 25px;
}

.international-title h2 {
  color: #07285a;
  font-size: 34px;
  font-weight: 900;
}

.international-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.international-box,
.international-card,
.international-doc-box {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  height: 100%;
}

.international-box:hover,
.international-card:hover,
.international-doc-box:hover {
  background: #07285a;
  color: #fff;
  transform: translateY(-8px);
}

.international-box h2,
.international-card h4,
.international-doc-box h2 {
  color: #07285a;
  font-weight: 900;
}

.international-box p,
.international-card p,
.international-doc-box li {
  color: #444;
  line-height: 1.7;
}

.international-box:hover h2,
.international-box:hover p,
.international-card:hover h4,
.international-card:hover p,
.international-doc-box:hover h2,
.international-doc-box:hover li {
  color: #fff;
}

.international-dark {
  background: #031b3e;
}

.international-dark h2,
.international-dark span,
.international-dark li {
  color: #fff;
}

.international-point {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.international-point i,
.international-card i {
  color: #e8b548;
}

.international-card {
  text-align: center;
}

.international-card i {
  font-size: 34px;
  margin-bottom: 15px;
}

.international-cta-box {
  background: linear-gradient(135deg, #07285a, #031b3e);
  color: #fff;
  text-align: center;
  padding: 40px 25px;
  border-radius: 18px;
}

@media (max-width: 992px) {
  .international-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .international-hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .international-grid {
    grid-template-columns: 1fr;
  }
  .international-hero {
    min-height: 350px;
    padding: 60px 15px;
  }
  .international-hero-content h1 {
    font-size: 28px;
  }
}

.defence-hero {
  margin-top: 85px;
  min-height: 420px;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(3, 27, 62, 0.88), rgba(3, 27, 62, 0.88)),
    url("Image/defence-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.defence-hero-content {
  max-width: 900px;
  margin: auto;
}

.defence-hero-content span,
.defence-title span {
  color: #e8b548;
  font-weight: 900;
}

.defence-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
}

.defence-hero-content p {
  color: #e8eef7;
  font-size: 17px;
  line-height: 1.7;
}

.defence-btn,
.defence-cta-box a {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #f6cb61, #d89b28);
  color: #031b3e;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
}

.defence-about,
.defence-services,
.defence-docs,
.defence-cta {
  padding: 50px 0;
  background: #f7f9fc;
}

.defence-title {
  text-align: center;
  margin-bottom: 25px;
}

.defence-title h2 {
  color: #07285a;
  font-size: 34px;
  font-weight: 900;
}

.defence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.defence-box,
.defence-card,
.defence-doc-box {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  height: 100%;
}

.defence-box:hover,
.defence-card:hover,
.defence-doc-box:hover {
  background: #07285a;
  color: #fff;
  transform: translateY(-8px);
}

.defence-box h2,
.defence-card h4,
.defence-doc-box h2 {
  color: #07285a;
  font-weight: 900;
}

.defence-box p,
.defence-card p,
.defence-doc-box li {
  color: #444;
  line-height: 1.7;
}

.defence-box:hover h2,
.defence-box:hover p,
.defence-card:hover h4,
.defence-card:hover p,
.defence-doc-box:hover h2,
.defence-doc-box:hover li {
  color: #fff;
}

.defence-dark {
  background: #031b3e;
}

.defence-dark h2,
.defence-dark span,
.defence-dark li {
  color: #fff;
}

.defence-point {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.defence-point i,
.defence-card i {
  color: #e8b548;
}

.defence-card {
  text-align: center;
}

.defence-card i {
  font-size: 34px;
  margin-bottom: 15px;
}

.defence-cta-box {
  background: linear-gradient(135deg, #07285a, #031b3e);
  color: #fff;
  text-align: center;
  padding: 40px 25px;
  border-radius: 18px;
}

@media (max-width: 992px) {
  .defence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .defence-hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .defence-grid {
    grid-template-columns: 1fr;
  }
  .defence-hero {
    min-height: 350px;
    padding: 60px 15px;
  }
  .defence-hero-content h1 {
    font-size: 28px;
  }
}

/* ========== MOBILE BRAND TEXT GAP FIX ========== */
@media (max-width: 576px) {
    .brand-text h4 {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }

    .brand-text .tagline {
        display: block !important;
        margin-top: -1px !important;
        padding: 0 !important;
        line-height: 3 !important;
        font-size: 9px !important;
        letter-spacing: 1px !important;
    }
}
.blog-main-text a {
    text-decoration: none !important;
    color: #0b2f66 !important;
    font-weight: 700 !important;
    border-bottom: 1px solid transparent !important;
}

.blog-main-text a:hover {
    color: #f4a900 !important;
    border-bottom-color: #f4a900 !important;
}
/* ================= BLOG PAGINATION SVG FIX ================= */

.blog-pagination svg,
.pagination svg,
nav[role="navigation"] svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
}

.blog-pagination nav,
.pagination nav,
nav[role="navigation"] {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 30px !important;
}

.blog-pagination a,
.blog-pagination span,
.pagination a,
.pagination span,
nav[role="navigation"] a,
nav[role="navigation"] span {
    font-size: 14px !important;
    line-height: 1 !important;
}
/* ================= CUSTOM BLOG PAGINATION ================= */

.custom-pagination-wrap {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-btn,
.page-number {
    min-width: 38px;
    height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #d7deea;
    background: #ffffff;
    color: #08345f;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.page-btn:hover,
.page-number:hover,
.page-number.active {
    background: #08345f;
    color: #ffffff;
    border-color: #08345f;
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f5f9;
}
/* View All Tenders button underline fix */
a.view-btn,
a.view-btn:hover,
a.view-btn:focus,
a.view-btn:active,
a.view-btn:visited {
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #08345f !important;
}
.footer-address {
    font-style: normal;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.footer-contact p,
.footer-address {
    margin-bottom: 14px;
}

.footer-service-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 18px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

.footer-local-text {
    display: none;
}

/* Bottom Footer */
.footer-bottom {
    margin-top: 35px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-policy-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-policy-links a:hover {
    color: #f6b325;
}

/* Visitor Counter */
.visitor-counter-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.visitor-label {
    color: #ffffff;
    font-weight: 700;
}

.visitor-digits {
    display: flex;
    align-items: center;
    gap: 3px;
}

.visitor-digits span {
    width: 18px;
    height: 24px;
    background: #ffffff;
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    border-radius: 3px;
    line-height: 1;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-policy-links {
        gap: 16px;
        flex-wrap: wrap;
    }

    .visitor-counter-box {
        font-size: 14px;
    }

    .visitor-digits span {
        width: 17px;
        height: 23px;
        font-size: 14px;
    }
}
