/* ================= 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 {

}

.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 {
  
}

.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 {

}

.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;
    }
}
/* =====================================================
   PREMIUM GEM PAGE
===================================================== */

.gem-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 167, 0, .15), transparent 30%),
        linear-gradient(135deg, #031936 0%, #062756 55%, #031831 100%);
}

.gem-hero::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -160px;
    top: -180px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.gem-hero .container {
    position: relative;
    z-index: 2;
}

.gem-badge {
    display: inline-block;
    background: rgba(255,168,0,.12);
    border: 1px solid rgba(255,168,0,.35);
    color: #ffa800;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    margin-bottom: 20px;
}

.gem-hero-content h1 {
    color: #fff;
    font-size: clamp(42px,5vw,66px);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 22px;
}

.gem-hero-content h1 span {
    color: #ffa800;
}

.gem-hero-content > p {
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.8;
    max-width: 610px;
    margin-bottom: 28px;
}

.gem-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.gem-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 23px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.gem-btn-primary {
    background: #ffa800;
    color: #071d42;
}

.gem-btn-primary:hover {
    background: #ffbc38;
    color: #071d42;
    transform: translateY(-3px);
}

.gem-btn-outline {
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
}

.gem-btn-outline:hover {
    background: #fff;
    color: #071d42;
}

.gem-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gem-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 600;
}

.gem-trust-item i {
    color: #ffa800;
}


/* HERO IMAGE */

.gem-image-wrapper {
    position: relative;
    max-width: 560px;
    margin: auto;
}

.gem-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: drop-shadow(0 30px 35px rgba(0,0,0,.3));
}

.gem-image-wrapper::before {
    content: "";
    position: absolute;
    width: 82%;
    height: 82%;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: radial-gradient(circle,rgba(255,168,0,.18),transparent 70%);
}


/* FLOAT CARD */

.gem-floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 190px;
    padding: 13px 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
}

.gem-floating-card > i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff0ca;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0a000;
}

.gem-floating-card small {
    display: block;
    font-size: 11px;
    color: #7a8495;
}

.gem-floating-card strong {
    color: #071d42;
    font-size: 13px;
}

.gem-float-one {
    top: 30px;
    right: -15px;
}

.gem-float-two {
    bottom: 30px;
    left: -15px;
}


/* =====================================================
   GENERAL SECTIONS
===================================================== */

.gem-about,
.gem-services,
.gem-process,
.gem-docs,
.related-blogs {
    padding: 85px 0;
}

.gem-about,
.gem-process,
.related-blogs {
    background: #f7f9fc;
}


/* ABOUT CARDS */

.gem-info-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(6,35,75,.07);
}

.gem-icon-box {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: #092a60;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 22px;
}

.gem-small-title {
    display: block;
    color: #f6a700;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.gem-info-card h2 {
    color: #071d42;
    font-size: 27px;
    font-weight: 800;
    margin-bottom: 14px;
}

.gem-info-card p {
    color: #657185;
    line-height: 1.8;
    margin-bottom: 10px;
}

.gem-point-list {
    display: grid;
    gap: 13px;
}

.gem-point {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #35425a;
}

.gem-point i {
    color: #ffa800;
    margin-top: 4px;
}


/* SECTION TITLE */

.section-title {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-title span {
    color: #f5a500;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.section-title h2 {
    margin: 6px 0 12px;
    color: #071d42;
    font-weight: 800;
}

.section-title p {
    color: #738096;
    line-height: 1.7;
}


/* SERVICES */

.gem-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.gem-card {
    background: #fff;
    border: 1px solid #e5ebf3;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(9,39,83,.05);
}

.gem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(9,39,83,.12);
    border-color: rgba(255,168,0,.45);
}

.gem-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #095fd8;
    border-radius: 50%;
    font-size: 24px;
}

.gem-card h4 {
    color: #071d42;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.gem-card p {
    color: #748096;
    line-height: 1.7;
    min-height: 82px;
}

.gem-card a {
    color: #f0a000;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


/* PROCESS */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.process-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e5ebf3;
    transition: .3s;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(9,39,83,.09);
}

.process-number {
    color: #ffa800;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
}

.process-icon {
    width: 52px;
    height: 52px;
    background: #edf4ff;
    color: #0a5fc9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-size: 20px;
    margin-bottom: 16px;
}

.process-card h4 {
    color: #071d42;
    font-weight: 700;
    font-size: 17px;
}

.process-card p {
    color: #758197;
    line-height: 1.65;
    font-size: 14px;
}


/* DOCUMENTS */

.docs-box {
    height: 100%;
    border-radius: 17px;
    padding: 32px;
    background: #fff;
    border: 1px solid #e7ebf2;
    box-shadow: 0 10px 30px rgba(9,39,83,.06);
}

.docs-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.docs-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #edf4ff;
    color: #0b5bc3;
    font-size: 21px;
}

.docs-heading span {
    font-size: 10px;
    font-weight: 800;
    color: #f0a000;
    letter-spacing: 1px;
}

.docs-heading h2 {
    margin: 3px 0 0;
    font-size: 24px;
    color: #071d42;
    font-weight: 800;
}

.docs-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-box li {
    display: flex;
    gap: 10px;
    margin-bottom: 13px;
    color: #59677d;
}

.docs-box li i {
    color: #ffa800;
    margin-top: 4px;
}

.dark-box {
    background: linear-gradient(135deg,#061b3e,#092b62);
    border: none;
}

.dark-box .docs-heading h2,
.dark-box li {
    color: #fff;
}

.dark-box .docs-icon {
    background: rgba(255,255,255,.1);
    color: #ffa800;
}


/* STATS */

.gem-stats {
    padding: 20px 0 80px;
}

.gem-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background: linear-gradient(135deg,#061c40,#09306c);
    border-radius: 16px;
    overflow: hidden;
}

.gem-stat-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 27px 15px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.gem-stat-item:last-child {
    border: none;
}

.gem-stat-icon {
    color: #ffa800;
    font-size: 26px;
}

.gem-stat-item h3 {
    margin: 0;
    color: #fff;
    font-weight: 800;
    font-size: 25px;
}

.gem-stat-item p {
    margin: 2px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 12px;
}


/* CTA */

.gem-cta {
    padding: 0 0 80px;
}

.gem-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 35px 42px;
    border-radius: 18px;
    background: linear-gradient(135deg,#061b3e,#092d66);
}

.gem-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gem-cta-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: rgba(255,255,255,.1);
    color: #ffa800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
}

.gem-cta-left span {
    color: #ffa800;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.gem-cta-left h2 {
    color: #fff;
    font-weight: 800;
    margin: 5px 0 6px;
}

.gem-cta-left p {
    margin: 0;
    color: rgba(255,255,255,.7);
}

.gem-cta-btn {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #ffa800;
    color: #071d42;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 8px;
}

.gem-cta-btn:hover {
    background: #ffbd3f;
    color: #071d42;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px) {

    .gem-hero {
        padding: 75px 0;
    }

    .gem-hero-content {
        text-align: center;
    }

    .gem-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .gem-hero-buttons,
    .gem-trust-points {
        justify-content: center;
    }

    .gem-hero-visual {
        margin-top: 20px;
    }

    .gem-grid,
    .process-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .gem-stats-wrapper {
        grid-template-columns: repeat(2,1fr);
    }

    .gem-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .gem-cta-left {
        flex-direction: column;
    }
}


@media(max-width:767px) {

    .gem-about,
    .gem-services,
    .gem-process,
    .gem-docs,
    .related-blogs {
        padding: 60px 0;
    }

    .gem-hero-content h1 {
        font-size: 39px;
    }

    .gem-grid,
    .process-grid,
    .gem-stats-wrapper {
        grid-template-columns: 1fr;
    }

    .gem-stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .gem-info-card {
        padding: 24px;
    }

    .gem-floating-card {
        min-width: 165px;
    }

    .gem-float-one {
        right: 0;
    }

    .gem-float-two {
        left: 0;
    }
}


@media(max-width:480px) {

    .gem-hero {
        padding: 55px 0;
    }

    .gem-hero-content h1 {
        font-size: 32px;
    }

    .gem-hero-content > p {
        font-size: 14px;
    }

    .gem-hero-buttons {
        flex-direction: column;
    }

    .gem-btn {
        width: 100%;
    }

    .gem-trust-points {
        flex-direction: column;
        align-items: center;
    }

    .gem-info-card {
        flex-direction: column;
    }

    .gem-floating-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 10px auto;
        max-width: 240px;
    }

    .gem-image-wrapper {
        display: flex;
        flex-direction: column;
    }

    .gem-cta-box {
        padding: 28px 20px;
    }

    .gem-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
/* =====================================================
   GEM FULL IMAGE HERO
===================================================== */

.gem-banner-hero {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
}

.gem-banner-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gem-banner-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .gem-banner-wrapper {
        max-height: 720px;
    }

    .gem-banner-image {
        width: 100%;
        height: 850px;
        object-fit: fill;
        object-position: center;
    }

}


/* =====================================================
   NORMAL DESKTOP / LAPTOP
===================================================== */

@media (min-width: 992px) and (max-width: 1399px) {

    .gem-banner-wrapper {
        max-height: 620px;
    }

    .gem-banner-image {
        width: 100%;
        height: 620px;
        object-fit: cover;
        object-position: center;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (min-width: 768px) and (max-width: 991px) {

    .gem-banner-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .gem-banner-hero {
        background: #ffffff;
    }

    .gem-banner-wrapper {
        width: 100%;
    }

    .gem-banner-image {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

}


/* =====================================================
   SMALL MOBILE 320PX
===================================================== */

@media (max-width: 400px) {

    .gem-banner-image {
        width: 100%;
        height: auto;
    }

}
/* =========================================================
   NEW NAVBAR DROPDOWN CSS
   Services + Tender Consultancy
========================================================= */


/* Desktop Dropdown */
@media (min-width: 992px) {

    .nivix-hover-dropdown {
        position: relative;
    }

    .nivix-hover-dropdown > .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;

        transform: translateY(8px);

        transition:
            opacity 0.2s ease,
            visibility 0.2s ease,
            transform 0.2s ease;

        margin-top: 0;
    }

    .nivix-hover-dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    /*
       Dropdown ko mouse se navbar se dropdown tak
       le jaate waqt close hone se rokta hai.
    */
    .nivix-hover-dropdown > .dropdown-menu::before {
        content: "";

        position: absolute;

        left: 0;
        top: -12px;

        width: 100%;
        height: 14px;
    }

}


/* =========================================================
   TENDER CONSULTANCY DROPDOWN
========================================================= */

.tender-consultancy-dropdown {
    min-width: 310px;

    max-height: 470px;
    overflow-y: auto;

    padding: 8px;

    border: 1px solid #e8edf3;

    border-radius: 10px;

    box-shadow: 0 15px 40px rgba(0, 35, 75, 0.14);

    background: #ffffff;
}


.tender-consultancy-dropdown .dropdown-item {
    white-space: normal;

    padding: 11px 14px;

    border-radius: 7px;

    color: #062a56;

    font-size: 14px;

    font-weight: 600;

    transition: 0.2s ease;
}


.tender-consultancy-dropdown .dropdown-item:hover {
    background: #fff6df;

    color: #c98a00;
}


/* Scrollbar */

.tender-consultancy-dropdown::-webkit-scrollbar {
    width: 5px;
}


.tender-consultancy-dropdown::-webkit-scrollbar-track {
    background: #f2f4f7;
}


.tender-consultancy-dropdown::-webkit-scrollbar-thumb {
    background: #aab2bc;

    border-radius: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .tender-consultancy-dropdown {
        width: 100%;

        min-width: 100%;

        max-height: 320px;

        margin-top: 4px;

        border: none;

        border-left: 3px solid #e6aa1d;

        border-radius: 5px;

        box-shadow: none;

        background: #f8fafc;
    }


    .tender-consultancy-dropdown .dropdown-item {
        padding: 10px 13px;

        font-size: 13px;
    }

}


/* =========================================================
   FIX DOUBLE ACTIVE LINE
========================================================= */

/*
 IMPORTANT:
 Mere previous code ki ::before underline ko disable karta hai.
 Aapki existing navbar underline hi use hogi.
*/

.main-navbar .nav-link.active::before {
    display: none !important;
    content: none !important;
}
/* =========================================================
   TENDER CONSULTANCY FOOTER COLUMN
========================================================= */

.footer-consultancy {
    min-width: 210px;
}


.footer-consultancy a {
    display: block;

    margin-bottom: 9px;

    line-height: 1.5;

    font-size: 14px;

    text-decoration: none;
}


.footer-consultancy .footer-view-all {
    margin-top: 12px;

    color: #f0b323;

    font-weight: 700;
}


.footer-consultancy .footer-view-all:hover {
    color: #ffffff;
}


/* =========================================================
   FOOTER ADDRESS SPACING
========================================================= */

.footer-contact .footer-address {
    margin-bottom: 14px;
}


.footer-address-text strong {
    display: inline-block;

    margin-bottom: 3px;
}


/* =========================================================
   RESPONSIVE FOOTER
========================================================= */

@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 35px;
    }

}


@media (max-width: 700px) {

    .footer-container {
        grid-template-columns: 1fr;
    }


    .footer-consultancy {
        min-width: 100%;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 14px;
    }


    .footer-bottom-left {
        flex-wrap: wrap;

        gap: 10px;
    }

}
/* =========================================================
   FOOTER - 4 COLUMNS IN ONE ROW
========================================================= */

.footer-container {
    display: grid !important;

    grid-template-columns:
        1.6fr
        0.8fr
        1.15fr
        1.35fr !important;

    gap: 45px;

    align-items: start;

    width: min(1720px, 92%);

    margin: 0 auto;
}


/* All footer columns stay in first row */
.footer-brand,
.footer-col,
.footer-contact,
.footer-consultancy {
    min-width: 0;
}


/* Contact address should not become unnecessarily wide */
.footer-contact {
    width: 100%;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1250px) {

    .footer-container {
        grid-template-columns:
            1.35fr
            0.75fr
            1.05fr
            1.2fr !important;

        gap: 28px;
    }

}


/* =========================================================
   TABLET
   Only here move into 2 columns
========================================================= */

@media (max-width: 991px) {

    .footer-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-container {
        grid-template-columns: 1fr !important;

        gap: 30px;
    }

}


/* =========================================================
   MSME TENDER CONSULTANT PAGE
   NIVIX INDIA - NAVY / GOLD / WHITE
========================================================= */

.msme-hero-v2,
.msme-hero-v2 * {
    box-sizing: border-box;
}

.msme-hero-v2 {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 55px 20px;

    background:
        radial-gradient(circle at 88% 10%, rgba(240, 174, 35, 0.12), transparent 27%),
        linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eef5fd 100%);
}

.msme-hero-v2-inner {
    width: min(94%, 1500px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(380px, 0.72fr);
    gap: 55px;

    align-items: center;
}


/* =========================================================
   LEFT AREA
========================================================= */

.msme-hero-v2-left {
    position: relative;
    z-index: 2;
}

.msme-hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 16px;
    margin-bottom: 17px;

    border: 1px solid #edbd55;
    border-radius: 40px;

    background: #fff8e8;
    color: #d99200;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;

    text-transform: uppercase;
}

.msme-hero-v2-badge i {
    color: #e8a310;
}


/* HEADING */

.msme-hero-v2-left h1 {
    margin: 0;

    max-width: 850px;

    color: #082b57;

    font-size: clamp(42px, 4.7vw, 68px);
    line-height: 1.06;

    font-weight: 900;

    letter-spacing: -1.5px;
}

.msme-hero-v2-left h1 span {
    color: #e6a000;
}


/* DESCRIPTION */

.msme-hero-v2-desc {
    max-width: 900px;

    margin: 22px 0 22px;

    color: #536378;

    font-size: 16px;
    line-height: 1.75;

    font-weight: 500;
}


/* INCLUDED HEADING */

.msme-hero-v2-left h3 {
    margin: 0 0 15px;

    color: #082b57;

    font-size: 18px;
    font-weight: 800;
}


/* =========================================================
   FEATURES
========================================================= */

.msme-hero-v2-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 13px 32px;

    max-width: 850px;
}

.msme-hero-v2-features > div {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #263a54;

    font-size: 14px;
    font-weight: 700;
}

.msme-hero-v2-features i {
    flex-shrink: 0;

    color: #e7a000;

    font-size: 16px;
}


/* =========================================================
   NOTE
========================================================= */

.msme-hero-v2-note {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 19px;

    padding: 11px 15px;

    background: #fff8e9;
    border: 1px solid #f3d58c;

    border-radius: 8px;

    color: #324b69;

    font-size: 13px;
    font-weight: 700;
}

.msme-hero-v2-note i {
    color: #e8a10a;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.msme-hero-v2-actions {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 21px;
}


/* NAVY BUTTON */

.msme-hero-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 22px;

    background: #082b57;

    border: 2px solid #082b57;

    border-radius: 7px;

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 14px;
    font-weight: 800;

    box-shadow: 0 8px 22px rgba(8, 43, 87, 0.18);

    transition: 0.25s ease;
}

.msme-hero-call-btn:hover {
    background: #e5a21a;

    border-color: #e5a21a;

    color: #082b57 !important;

    transform: translateY(-2px);
}


/* GOLD BUTTON */

.msme-hero-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    background: #e5a21a;

    border: 2px solid #e5a21a;

    border-radius: 7px;

    color: #082b57 !important;

    text-decoration: none !important;

    font-size: 14px;
    font-weight: 800;

    transition: 0.25s ease;
}

.msme-hero-contact-btn:hover {
    background: #082b57;

    border-color: #082b57;

    color: #ffffff !important;

    transform: translateY(-2px);
}


/* =========================================================
   MINI STATS
========================================================= */

.msme-hero-v2-stats {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 13px;

    max-width: 900px;

    margin-top: 25px;
}

.msme-stat-box {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 13px 14px;

    border: 1px solid #e2eaf3;

    border-radius: 10px;

    background: #ffffff;

    box-shadow: 0 7px 22px rgba(8, 43, 87, 0.06);
}

.msme-stat-box > i {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #fff3d9;

    color: #d99000;

    font-size: 17px;
}

.msme-stat-box strong {
    display: block;

    color: #082b57;

    font-size: 13px;
    line-height: 1.3;

    font-weight: 800;
}

.msme-stat-box span {
    display: block;

    margin-top: 3px;

    color: #7b8796;

    font-size: 10.5px;
}


/* =========================================================
   RIGHT FORM AREA
========================================================= */

.msme-hero-v2-right {
    position: relative;

    width: 100%;
    max-width: 500px;

    margin-left: auto;

    z-index: 2;
}


/* NAVY BACK PANEL */

.msme-hero-v2-right::before {
    content: "";

    position: absolute;

    inset: -30px -40px -30px -28px;

    z-index: -2;

    border-radius: 24px;

    background:
        linear-gradient(145deg, #082b57 0%, #0b407c 100%);

    box-shadow: 0 25px 50px rgba(8, 43, 87, 0.18);
}


/* DECORATIVE GOLD SHAPES */

.msme-hero-shape {
    position: absolute;

    z-index: -1;

    pointer-events: none;
}

.msme-shape-one {
    width: 170px;
    height: 170px;

    border-radius: 50%;

    top: -60px;
    right: -35px;

    background: rgba(239, 173, 32, 0.18);
}

.msme-shape-two {
    width: 130px;
    height: 130px;

    border-radius: 50%;

    bottom: -45px;
    left: -40px;

    background: rgba(255, 255, 255, 0.08);
}


/* =========================================================
   OFFER LABEL
========================================================= */

.msme-offer-tag {
    position: absolute;

    top: -17px;
    left: 25px;

    z-index: 5;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 9px 15px;

    border-radius: 8px;

    background: #e7a415;

    color: #082b57;

    font-size: 12px;
    font-weight: 900;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   FORM CARD
========================================================= */

.msme-form-card {
    width: 100%;

    padding: 34px 30px 28px;

    background: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.5);

    border-radius: 15px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.13);
}

.msme-form-card h2 {
    margin: 0;

    text-align: center;

    color: #082b57;

    font-size: 25px;
    line-height: 1.25;

    font-weight: 900;
}

.msme-form-card > p {
    margin: 7px 0 20px;

    text-align: center;

    color: #738095;

    font-size: 12.5px;
    line-height: 1.55;
}


/* =========================================================
   ALERTS
========================================================= */

.msme-form-alert {
    margin-bottom: 13px;

    padding: 10px 12px;

    border-radius: 7px;

    font-size: 12px;
    line-height: 1.5;

    font-weight: 600;
}

.msme-form-success {
    background: #e9f9ef;

    border: 1px solid #c0e8cf;

    color: #17744b;
}

.msme-form-error {
    background: #fff0f0;

    border: 1px solid #edcccc;

    color: #a92424;
}


/* =========================================================
   FORM FIELDS
========================================================= */

.msme-form-field {
    width: 100%;

    margin-bottom: 10px;
}

.msme-form-field input,
.msme-form-field select,
.msme-form-field textarea {
    display: block;

    width: 100%;

    min-height: 48px;

    padding: 0 14px;

    border: 1px solid #d2dce8;

    border-radius: 7px;

    background: #ffffff;

    outline: none;

    color: #233850;

    font-family: inherit;

    font-size: 13px;

    transition: 0.2s ease;
}

.msme-form-field textarea {
    min-height: 78px;

    padding-top: 11px;

    resize: vertical;

    line-height: 1.5;
}

.msme-form-field input::placeholder,
.msme-form-field textarea::placeholder {
    color: #9aa5b2;
}

.msme-form-field input:focus,
.msme-form-field select:focus,
.msme-form-field textarea:focus {
    border-color: #e5a21a;

    box-shadow: 0 0 0 3px rgba(229, 162, 26, 0.10);
}


/* =========================================================
   PHONE FIELD
========================================================= */

.msme-phone-field {
    display: flex;

    width: 100%;

    min-height: 48px;

    margin-bottom: 10px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #d2dce8;

    border-radius: 7px;
}

.msme-phone-field:focus-within {
    border-color: #e5a21a;

    box-shadow: 0 0 0 3px rgba(229, 162, 26, 0.10);
}

.msme-phone-field > span {
    display: flex;
    align-items: center;

    padding: 0 11px;

    background: #f3f5f8;

    border-right: 1px solid #d9e0e8;

    color: #33475d;

    white-space: nowrap;

    font-size: 12px;
    font-weight: 700;
}

.msme-phone-field input {
    flex: 1;

    min-width: 0;

    border: none;

    outline: none;

    padding: 0 13px;

    color: #24364b;

    font-family: inherit;

    font-size: 13px;
}


/* =========================================================
   WHATSAPP ROW
========================================================= */

.msme-whatsapp-update {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin: 3px 0 12px;

    padding: 9px 11px;

    border-radius: 7px;

    background: #f2fbf6;

    color: #536476;

    font-size: 11px;
    font-weight: 700;
}

.msme-whatsapp-update i {
    color: #20b865;

    margin: 0 3px;

    font-size: 15px;
}

.msme-toggle {
    position: relative;

    width: 36px;
    height: 19px;

    flex: 0 0 36px;

    border-radius: 50px;

    background: #1fa75c;
}

.msme-toggle > span {
    position: absolute;

    top: 2px;
    right: 2px;

    width: 15px;
    height: 15px;

    border-radius: 50%;

    background: #ffffff;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.msme-submit-btn {
    width: 100%;

    min-height: 49px;

    border: none;

    border-radius: 7px;

    background: #e5a21a;

    color: #082b57;

    font-family: inherit;

    font-size: 13px;
    font-weight: 900;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(229, 162, 26, 0.22);

    transition: 0.25s ease;
}

.msme-submit-btn:hover {
    background: #082b57;

    color: #ffffff;

    transform: translateY(-2px);
}

.msme-form-small {
    margin: 10px 0 0 !important;

    text-align: center;

    color: #8c97a5 !important;

    font-size: 10px !important;
    line-height: 1.45 !important;
}


/* =========================================================
   SMALL LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .msme-hero-v2-inner {
        grid-template-columns: minmax(0, 1fr) 410px;

        gap: 38px;
    }

    .msme-hero-v2-left h1 {
        font-size: 49px;
    }

    .msme-hero-v2-desc {
        font-size: 15px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .msme-hero-v2 {
        padding: 50px 18px 65px;
    }

    .msme-hero-v2-inner {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .msme-hero-v2-left h1 {
        font-size: 46px;
    }

    .msme-hero-v2-right {
        max-width: 600px;

        margin: 0 auto;
    }

    .msme-hero-v2-right::before {
        inset: -25px;

        border-radius: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .msme-hero-v2 {
        padding: 38px 13px 55px;
    }

    .msme-hero-v2-inner {
        width: 100%;

        gap: 55px;
    }

    .msme-hero-v2-badge {
        font-size: 10px;

        padding: 7px 11px;
    }

    .msme-hero-v2-left h1 {
        font-size: 35px;

        line-height: 1.12;
    }

    .msme-hero-v2-desc {
        margin: 17px 0 22px;

        font-size: 14px;
        line-height: 1.7;
    }


    /* FEATURES */

    .msme-hero-v2-features {
        grid-template-columns: 1fr;

        gap: 11px;
    }


    /* NOTE */

    .msme-hero-v2-note {
        width: 100%;

        font-size: 12px;

        line-height: 1.5;
    }


    /* BUTTONS */

    .msme-hero-v2-actions {
        display: grid;

        grid-template-columns: 1fr;
    }

    .msme-hero-call-btn,
    .msme-hero-contact-btn {
        width: 100%;
    }


    /* STATS */

    .msme-hero-v2-stats {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    /* FORM */

    .msme-hero-v2-right::before {
        inset: -20px -8px;

        border-radius: 16px;
    }

    .msme-form-card {
        padding: 28px 17px 22px;

        border-radius: 12px;
    }

    .msme-form-card h2 {
        font-size: 22px;
    }

    .msme-offer-tag {
        left: 15px;

        font-size: 10px;
    }

}


/* =========================================================
   VERY SMALL MOBILE - 320PX
========================================================= */

@media (max-width: 370px) {

    .msme-hero-v2 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .msme-hero-v2-left h1 {
        font-size: 31px;
    }

    .msme-form-card {
        padding-left: 13px;
        padding-right: 13px;
    }

    .msme-phone-field > span {
        padding: 0 7px;

        font-size: 10px;
    }

    .msme-phone-field input {
        padding: 0 8px;

        font-size: 12px;
    }

}
/* =========================================================
   MSME HERO - COMPACT DESKTOP FIX
   First screen me zyada content visible rahe
========================================================= */

@media (min-width: 1200px) {

    .msme-hero-v2 {
        min-height: calc(100vh - 78px);
        padding: 24px 20px 26px;
        display: flex;
        align-items: center;
    }

    .msme-hero-v2-inner {
        width: min(92%, 1450px);
        gap: 45px;
        align-items: center;
    }


    /* LEFT SIDE */

    .msme-hero-v2-badge {
        padding: 7px 13px;
        margin-bottom: 12px;
        font-size: 11px;
    }

    .msme-hero-v2-left h1 {
        max-width: 760px;
        font-size: 52px;
        line-height: 1.02;
        letter-spacing: -1px;
    }

    .msme-hero-v2-left h1 span {
        margin-top: 3px;
    }

    .msme-hero-v2-desc {
        max-width: 860px;
        margin: 16px 0 15px;
        font-size: 14px;
        line-height: 1.65;
    }

    .msme-hero-v2-left h3 {
        margin-bottom: 11px;
        font-size: 16px;
    }

    .msme-hero-v2-features {
        gap: 9px 28px;
    }

    .msme-hero-v2-features > div {
        font-size: 12.5px;
    }

    .msme-hero-v2-features i {
        font-size: 14px;
    }

    .msme-hero-v2-note {
        margin-top: 13px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .msme-hero-v2-actions {
        margin-top: 14px;
        gap: 10px;
    }

    .msme-hero-call-btn,
    .msme-hero-contact-btn {
        min-height: 42px;
        padding: 0 18px;
        font-size: 12px;
    }


    /* MINI CARDS */

    .msme-hero-v2-stats {
        margin-top: 17px;
        gap: 10px;
    }

    .msme-stat-box {
        padding: 9px 11px;
    }

    .msme-stat-box > i {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 14px;
    }

    .msme-stat-box strong {
        font-size: 11.5px;
    }

    .msme-stat-box span {
        font-size: 9px;
    }


    /* =====================================================
       RIGHT FORM
    ====================================================== */

    .msme-hero-v2-right {
        max-width: 455px;
    }

    .msme-hero-v2-right::before {
        inset: -18px -24px -18px -20px;
        border-radius: 20px;
    }

    .msme-offer-tag {
        top: -13px;
        left: 22px;
        padding: 7px 12px;
        font-size: 10px;
    }

    .msme-form-card {
        padding: 26px 24px 20px;
        border-radius: 13px;
    }

    .msme-form-card h2 {
        font-size: 22px;
    }

    .msme-form-card > p {
        margin: 5px 0 14px;
        font-size: 10.5px;
    }

    .msme-form-alert {
        margin-bottom: 9px;
        padding: 8px 10px;
        font-size: 10px;
    }

    .msme-form-field {
        margin-bottom: 8px;
    }

    .msme-form-field input,
    .msme-form-field select {
        min-height: 42px;
        padding: 0 12px;
        font-size: 11.5px;
    }

    .msme-form-field textarea {
        min-height: 64px;
        padding: 9px 12px;
        font-size: 11.5px;
    }

    .msme-phone-field {
        min-height: 42px;
        margin-bottom: 8px;
    }

    .msme-phone-field > span {
        padding: 0 9px;
        font-size: 10px;
    }

    .msme-phone-field input {
        padding: 0 10px;
        font-size: 11.5px;
    }

    .msme-whatsapp-update {
        margin: 2px 0 8px;
        padding: 7px 9px;
        font-size: 9.5px;
    }

    .msme-whatsapp-update i {
        font-size: 13px;
    }

    .msme-toggle {
        width: 32px;
        height: 17px;
        flex-basis: 32px;
    }

    .msme-toggle > span {
        width: 13px;
        height: 13px;
    }

    .msme-submit-btn {
        min-height: 42px;
        font-size: 11px;
    }

    .msme-form-small {
        margin-top: 7px !important;
        font-size: 8.5px !important;
    }

}
/* =========================================================
   MSME STATS STRIP - REFERENCE STYLE
========================================================= */

.msme-stats-strip {
    width: 100%;
    padding: 20px 20px;

    background: #fffaf4;

    border-top: 1px solid #f0ece5;
    border-bottom: 1px solid #eee8df;
}


.msme-stats-container {
    width: min(94%, 1450px);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 28px;

    align-items: center;
}


/* =========================================================
   EACH ITEM
========================================================= */

.msme-stats-item {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 10px 5px;
}


/* ICON BOX */

.msme-stats-icon {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 8px;

    background: #fff1e2;

    color: #f3a51f;

    font-size: 25px;
}


/* INNER ICON */

.msme-stats-icon i {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background: linear-gradient(
        135deg,
        #f8bb49,
        #f2a01a
    );

    color: #ffffff;
}


/* =========================================================
   TEXT
========================================================= */

.msme-stats-text {
    min-width: 0;
}


.msme-stats-text strong {
    display: block;

    margin: 0;

    color: #1d1d1f;

    font-size: 28px;
    line-height: 1.05;

    font-weight: 900;
}


.msme-stats-text > span {
    display: block;

    margin-top: 5px;

    color: #303030;

    font-size: 16px;
    line-height: 1.25;

    font-weight: 500;
}


/* =========================================================
   GOOGLE REVIEW
========================================================= */

.google-g {
    background: #ffffff;

    border: 1px solid #edf0f4;

    box-shadow: 0 4px 12px rgba(0,0,0,0.06);

    font-size: 34px;
    font-weight: 900;

    color: #4285f4;
}


.google-review-item .msme-stats-text strong {
    font-size: 17px;
}


.msme-google-rating {
    display: flex;
    align-items: center;

    gap: 6px;

    margin-top: 5px;
}


.msme-google-rating b {
    color: #e8513d;

    font-size: 15px;
}


.msme-google-rating span {
    color: #e8513d;

    font-size: 15px;

    letter-spacing: 1px;
}


/* =========================================================
   HOVER
========================================================= */

.msme-stats-item {
    transition: 0.25s ease;
}


.msme-stats-item:hover {
    transform: translateY(-3px);
}


/* =========================================================
   SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .msme-stats-container {
        gap: 16px;
    }


    .msme-stats-icon {
        width: 54px;
        height: 54px;

        flex-basis: 54px;
    }


    .msme-stats-icon i {
        width: 42px;
        height: 42px;
    }


    .msme-stats-text strong {
        font-size: 23px;
    }


    .msme-stats-text > span {
        font-size: 14px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .msme-stats-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 15px 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 550px) {

    .msme-stats-strip {
        padding: 16px 12px;
    }


    .msme-stats-container {
        grid-template-columns: 1fr;

        gap: 5px;
    }


    .msme-stats-item {
        padding: 10px 6px;
    }


    .msme-stats-text strong {
        font-size: 22px;
    }


    .msme-stats-text > span {
        font-size: 13px;
    }

}
/* Google Multicolor G Logo */

.google-g {
    background: #ffffff;
    border: none;
    box-shadow: none;

    display: flex;
    align-items: center;
    justify-content: center;
}

.google-g-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

/* Mobile */
@media (max-width: 550px) {
    .google-g-logo {
        width: 40px;
        height: 40px;
    }
}
/* =========================================================
   MSME MAIN CONTENT
========================================================= */

.msme-main-section,
.msme-services-section,
.msme-process-section,
.msme-doc-section,
.msme-location-section,
.msme-why-section,
.msme-faq-section,
.msme-bottom-cta,
.msme-main-section *,
.msme-services-section *,
.msme-process-section *,
.msme-doc-section *,
.msme-location-section *,
.msme-why-section *,
.msme-faq-section *,
.msme-bottom-cta * {
    box-sizing: border-box;
}

.msme-main-container {
    width: min(92%, 1280px);
    margin: 0 auto;
}

.msme-main-section,
.msme-process-section,
.msme-location-section,
.msme-faq-section {
    padding: 75px 0;
    background: #ffffff;
}

.msme-services-section,
.msme-doc-section {
    padding: 75px 0;
    background: #f7f9fc;
}


/* HEADING */

.msme-section-heading {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.msme-section-heading > span,
.msme-small-heading {
    display: inline-block;
    margin-bottom: 8px;
    color: #dfa00e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.msme-section-heading h2,
.msme-why-left h2 {
    margin: 0 0 13px;
    color: #082b57;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 900;
    line-height: 1.15;
}

.msme-section-heading p {
    margin: 0;
    color: #68768a;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   ABOUT
========================================================= */

.msme-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.msme-about-card {
    padding: 32px;
    border: 1px solid #e2eaf3;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(8,43,87,.06);
}

.msme-about-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 12px;
    background: #fff2d5;
    color: #dfa00e;
    font-size: 21px;
}

.msme-about-card h3 {
    color: #082b57;
    font-size: 22px;
    font-weight: 900;
}

.msme-about-card p {
    color: #667589;
    font-size: 14px;
    line-height: 1.8;
}

.msme-about-dark {
    background: linear-gradient(145deg,#082b57,#0c477f);
    border: 0;
}

.msme-about-dark h3,
.msme-about-dark p {
    color: #ffffff;
}

.msme-about-dark p {
    color: rgba(255,255,255,.78);
}


/* =========================================================
   SERVICES
========================================================= */

.msme-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.msme-service-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 26px 22px;
    border: 1px solid #e2e9f2;
    border-radius: 15px;
    background: #ffffff;
    transition: .25s ease;
}

.msme-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(8,43,87,.10);
}

.msme-service-number {
    position: absolute;
    right: 16px;
    top: 10px;
    font-size: 36px;
    font-weight: 900;
}

.msme-service-card > i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 10px;
    background: #fff2d6;
    color: #dc9700;
    font-size: 19px;
}

.msme-service-card h3 {
    color: #082b57;
    font-size: 17px;
    font-weight: 900;
}

.msme-service-card p {
    color: #748095;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.msme-process-grid {
    display: grid;
    grid-template-columns: 1fr 45px 1fr 45px 1fr 45px 1fr;
    align-items: center;
}

.msme-process-card {
    text-align: center;
    padding: 20px;
}

.msme-process-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #082b57;
    color: #f0ad21;
    font-size: 23px;
}

.msme-process-card > span {
    color: #d99a0b;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.msme-process-card h3 {
    margin: 5px 0 7px;
    color: #082b57;
    font-size: 17px;
    font-weight: 900;
}

.msme-process-card p {
    color: #748095;
    font-size: 12.5px;
    line-height: 1.65;
}

.msme-process-line {
    height: 2px;
    background: linear-gradient(90deg,#e1e7ee,#e1a72e,#e1e7ee);
}


/* =========================================================
   DOCUMENTS
========================================================= */

.msme-doc-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.msme-info-box {
    padding: 32px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e9f1;
}

.msme-info-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.msme-info-title > i {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #fff1d4;
    color: #dd9b09;
    font-size: 20px;
}

.msme-info-title span {
    color: #d99a09;
    font-size: 11px;
    font-weight: 900;
}

.msme-info-title h2 {
    margin: 2px 0 0;
    color: #082b57;
    font-size: 22px;
    font-weight: 900;
}

.msme-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.msme-info-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e0e6ed;
    color: #56677c;
    font-size: 14px;
}

.msme-info-list i {
    color: #dda00c;
    margin-right: 8px;
}

.msme-info-dark {
    background: #082b57;
    border: none;
}

.msme-info-dark .msme-info-title h2,
.msme-info-dark .msme-info-list li {
    color: #ffffff;
}

.msme-info-dark .msme-info-list li {
    border-color: rgba(255,255,255,.13);
}


/* =========================================================
   CITIES
========================================================= */

.msme-city-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
}

.msme-city-grid span {
    padding: 10px 16px;
    border: 1px solid #dce5ef;
    border-radius: 30px;
    background: #ffffff;
    color: #082b57;
    font-size: 13px;
    font-weight: 800;
    transition: .2s ease;
}

.msme-city-grid span:hover {
    background: #082b57;
    border-color: #082b57;
    color: #ffffff;
}


/* =========================================================
   WHY NIVIX
========================================================= */

.msme-why-section {
    padding: 75px 0;
    background: linear-gradient(135deg,#071f41,#0b3f75);
}

.msme-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.msme-why-left h2,
.msme-why-left p {
    color: #ffffff;
}

.msme-why-left p {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.8;
}

.msme-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 13px 19px;
    border-radius: 7px;
    background: #e5a21a;
    color: #082b57 !important;
    text-decoration: none;
    font-weight: 900;
}

.msme-why-list {
    display: grid;
    gap: 12px;
}

.msme-why-list > div {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 11px;
    background: rgba(255,255,255,.08);
}

.msme-why-list i {
    color: #f0ad21;
    font-size: 20px;
    margin-top: 3px;
}

.msme-why-list span {
    color: rgba(255,255,255,.70);
    font-size: 13px;
    line-height: 1.6;
}

.msme-why-list strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
}


/* =========================================================
   FAQ
========================================================= */

.msme-faq-container {
    max-width: 900px;
    margin: auto;
}

.msme-faq-item {
    margin-bottom: 11px;
    overflow: hidden;
    border: 1px solid #e1e8f0;
    border-radius: 10px;
    background: #ffffff;
}

.msme-faq-item summary {
    position: relative;
    padding: 17px 45px 17px 18px;
    cursor: pointer;
    list-style: none;
    color: #082b57;
    font-size: 14px;
    font-weight: 900;
}

.msme-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 13px;
    color: #d99b0a;
    font-size: 24px;
}

.msme-faq-item[open] summary::after {
    content: "−";
}

.msme-faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: #69778a;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.msme-bottom-cta {
    padding: 55px 0;
    background: #f5a91b;
}

.msme-bottom-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.msme-bottom-cta span {
    color: #082b57;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.msme-bottom-cta h2 {
    margin: 4px 0 7px;
    color: #082b57;
    font-size: clamp(25px,3vw,38px);
    font-weight: 900;
}

.msme-bottom-cta p {
    margin: 0;
    color: #334b66;
    font-size: 13px;
}

.msme-bottom-cta-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.msme-bottom-cta-actions a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 17px;
    border-radius: 7px;
    background: #082b57;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

.msme-bottom-cta-actions a:last-child {
    background: #ffffff;
    color: #082b57 !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .msme-services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .msme-process-grid {
        grid-template-columns: repeat(4,1fr);
        gap: 15px;
    }

    .msme-process-line {
        display: none;
    }

}


@media (max-width: 768px) {

    .msme-main-section,
    .msme-services-section,
    .msme-process-section,
    .msme-doc-section,
    .msme-location-section,
    .msme-why-section,
    .msme-faq-section {
        padding: 2px 0;
    }

    .msme-about-grid,
    .msme-doc-grid,
    .msme-why-grid {
        grid-template-columns: 1fr;
    }

    .msme-why-grid {
        gap: 35px;
    }

    .msme-process-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .msme-bottom-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 520px) {

    .msme-services-grid,
    .msme-process-grid {
        grid-template-columns: 1fr;
    }

    .msme-section-heading {
        margin-bottom: 30px;
    }

    .msme-section-heading h2 {
        font-size: 27px;
    }

    .msme-about-card,
    .msme-info-box {
        padding: 22px 18px;
    }

    .msme-bottom-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .msme-bottom-cta-actions a {
        width: 100%;
        justify-content: center;
    }

}
/* =========================================================
   NIVIX TESTIMONIAL SECTION
========================================================= */

.nivix-testimonial-section,
.nivix-testimonial-section * {
    box-sizing: border-box;
}

.nivix-testimonial-section {
    padding: 65px 0 45px;
    background:
        radial-gradient(circle at 20% 30%, rgba(9, 91, 148, .035), transparent 25%),
        #fbfdff;
    overflow: hidden;
}

.nivix-testimonial-container {
    width: min(92%, 1360px);
    margin: auto;
}


/* HEADING */

.nivix-testimonial-heading {
    max-width: 720px;
    margin: 0 auto 35px;
    text-align: center;
}

.nivix-testimonial-small-title {
    display: inline-block;
    margin-bottom: 7px;
    color: #e59b00;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.nivix-testimonial-heading h2 {
    margin: 0 0 10px;
    color: #082b57;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
}

.nivix-testimonial-heading h2 span {
    color: #e59b00;
}

.nivix-testimonial-heading p {
    margin: 0;
    color: #6e7989;
    font-size: 14px;
    line-height: 1.7;
}


/* SLIDER */

.nivix-testimonial-slider {
    width: 100%;
    overflow: hidden;
    padding: 8px 3px 20px;
}

.nivix-testimonial-track {
    display: flex;
    gap: 26px;
    transition: transform .65s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}


/* CARD */

.nivix-review-card {
    position: relative;

    flex: 0 0 calc((100% - 52px) / 3);

    min-height: 390px;

    padding: 27px 27px 24px;

    border: 1px solid #e3eaf1;
    border-radius: 19px;

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(12, 48, 82, .09);

    overflow: hidden;
}


/* TOP GOLD + BLUE LINE */

.nivix-review-card::before {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    top: 0;

    height: 4px;

    background: linear-gradient(
        90deg,
        #07588d 0%,
        #07588d 60%,
        #efa91d 100%
    );
}


/* REVIEW TOP */

.nivix-review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}


/* VERIFIED */

.nivix-verified {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 13px;

    border: 1px solid #a7ebc3;
    border-radius: 30px;

    background: #e8fff1;

    color: #188545;

    font-size: 12px;
    font-weight: 800;

    box-shadow: 0 5px 15px rgba(27, 181, 91, .12);
}

.nivix-verified i {
    color: #13b45c;
    font-size: 17px;
}


/* QUOTE */

.nivix-quote {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid #dbe8f3;
    border-radius: 10px;

    background: #edf6fc;

    color: #07588d;

    font-size: 16px;
}


/* STARS */

.nivix-stars {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 7px;

    margin-top: 17px;

    padding: 5px 10px;

    border: 1px solid #ffe0a0;
    border-radius: 20px;

    background: #fffaf0;
}

.nivix-stars span {
    color: #f5a623;
    font-size: 15px;
    letter-spacing: 1px;
}

.nivix-stars strong {
    color: #8a6423;
    font-size: 12px;
}


/* REVIEW TEXT */

.nivix-review-text {
    min-height: 100px;

    margin: 19px 0 15px;

    color: #5e636a;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
}


/* SERVICE TAG */

.nivix-review-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    max-width: 100%;

    padding: 6px 10px;

    border-radius: 6px;

    background: #eaf3fb;

    color: #126099;

    font-size: 11px;
    font-weight: 800;
}

.nivix-review-service i {
    color: #efa91d;
}


/* BOTTOM */

.nivix-review-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 12px;

    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid #edf0f4;
}


/* USER */

.nivix-review-user {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}

.nivix-avatar {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 50px;

    border-radius: 50%;

    color: #ffffff;

    font-size: 15px;
    font-weight: 900;

    border: 3px solid #ffffff;

    outline: 2px solid #21ad6a;

    box-shadow: 0 4px 10px rgba(0,0,0,.12);
}

.avatar-orange {
    background: #f15b32;
}

.avatar-blue {
    background: #0877a8;
}

.avatar-gold {
    background: #e6a332;
}

.avatar-green {
    background: #249a6b;
}

.avatar-purple {
    background: #7256a8;
}

.avatar-red {
    background: #c94e4e;
}


.nivix-review-user h4 {
    margin: 0 0 3px;

    color: #26384c;

    font-size: 14px;
    font-weight: 900;
}

.nivix-review-user span {
    display: block;

    color: #8b8f94;

    font-size: 11px;
}


/* DATE */

.nivix-review-date {
    display: flex;
    align-items: center;
    gap: 5px;

    flex-shrink: 0;

    padding: 7px 10px;

    border-radius: 20px;

    background: #eef6fc;

    color: #126099;

    font-size: 10px;
    font-weight: 800;
}


/* CONTROLS */

.nivix-testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;

    margin-top: 7px;
}

.nivix-testimonial-controls button {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #d7e7f3;
    border-radius: 50%;

    background: #ffffff;

    color: #07588d;

    font-size: 13px;

    cursor: pointer;

    transition: .25s ease;
}

.nivix-testimonial-controls button:hover {
    border-color: #e8a51d;
    background: #082b57;
    color: #ffffff;

    transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 991px) {

    .nivix-review-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .nivix-testimonial-track {
        gap: 20px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .nivix-testimonial-section {
        padding: 7px 0 35px;
    }

    .nivix-testimonial-container {
        width: 92%;
    }

    .nivix-testimonial-heading {
        margin-bottom: 25px;
    }

    .nivix-review-card {
        flex: 0 0 100%;
        min-height: auto;

        padding: 22px 18px;
    }

    .nivix-testimonial-track {
        gap: 15px;
    }

    .nivix-review-text {
        min-height: auto;

        font-size: 13px;
    }

    .nivix-review-bottom {
        align-items: flex-start;
    }

    .nivix-verified {
        padding: 7px 10px;
        font-size: 10px;
    }

}
.tender-consultancy-dropdown .view-more{
    font-weight:700;
    color:#08345f !important;
    text-align:center;
    transition:.3s;
}

.tender-consultancy-dropdown .view-more:hover{
    background:#08345f;
    color:#fff !important;
}

.tender-consultancy-dropdown .dropdown-divider{
    margin:6px 0;
}
.table td a{
    text-decoration: none;
    color: #0B2E6D;
    font-size: 17px;
    font-weight: 500;
    transition: .3s;
}

.table td a:hover{
    color: #ff7a00;
    padding-left: 5px;
}
/* मुख्य बटन की सेटिंग */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 10000;
  text-decoration: none;
}

/* WhatsApp का मुख्य लोगो */
.whatsapp-icon {
  width: 34px;
  height: 34px;
  z-index: 5;
}

/* वेव/तरंगों के लिए कॉमन स्टाइल */
.whatsapp-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #25d366; /* पतली रिंग लाइन */
  background-color: rgba(37, 211, 102, 0.15); /* हल्का हरा बैकग्राउंड */
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transform: scale(1);
}

/* पहली तरंग (Wave 1) */
.wave1 {
  animation: whatsappMultiWave 2s infinite linear;
}

/* दूसरी तरंग (Wave 2) - यह थोड़े गैप के बाद शुरू होगी */
.wave2 {
  animation: whatsappMultiWave 2s infinite linear;
  animation-delay: 1s; /* 1 सेकंड का अंतर */
}

/* फैलने और ब्लिंक करने का एनिमेशन */
@keyframes whatsappMultiWave {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6); /* बाहर की तरफ फैलना */
    opacity: 0;
  }
}

/* बटन पर माउस ले जाने (Hover) पर थोड़ा ज़ूम इफ़ेक्ट */
.whatsapp-float:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease-in-out;
}

