/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

:root {
  --navy-blue: #0A1628;
  --navy-light: #091a44;
  --golden: #D4AF37;
  --golden-light: #F4D068;
  --golden-dark: #B8941F;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-light: #E5E9F0;
  --gray: #6C757D;
  --text-dark: #1A1A2E;
  --text-light: #4A4A5A;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  /* padding: 5px 0; */
  transition: var(--transition);
}

.navbar.scrolled {
  /* padding: 10px 0; */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.logo-image {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover .logo-image {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy-light);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: var(--transition);
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--golden), var(--golden-light));
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--golden);
}

/* Dropdown Menu */
.dropdown {

  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-toggle i {
  font-size: 12px;
  margin-left: 5px;
  transition: var(--transition);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 280px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  border: 2px solid var(--gray-light);
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  color: var(--navy-light);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(10, 22, 40, 0.1), transparent);
  color: var(--navy-light);
  border-left-color: var(--navy-light);
  padding-left: 30px;
}

.dropdown-menu a::after {
  display: none;
}

.nav-buttons {
  display: flex;
  gap: 12px;
}

/* User Profile in Navbar */
.nav-user-profile {
  display: flex;
  align-items: center;
}

.user-profile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(10, 22, 40, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 1px solid rgba(10, 22, 40, 0.1);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.user-profile-link:hover {
  background: rgba(10, 22, 40, 0.08);
  box-shadow: 0 4px 15px rgba(10, 22, 40, 0.1);
  transform: translateY(-2px);
}

.user-avatar-small {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--golden), var(--golden-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-blue);
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.user-profile-link:hover .user-avatar-small {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.user-name-small {
  color: var(--navy-light);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.logout-btn {
  background: transparent;
  border: 2px solid var(--navy-light);
  color: var(--navy-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  margin-left: 8px;
}

.logout-btn:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.3);
}

@media (max-width: 768px) {
  .logout-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-left: 6px;
  }
}

.login-nav-btn {
  background: transparent;
  border: 2px solid var(--navy-light);
  color: var(--navy-light);
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.login-nav-btn:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
}

.signup-nav-btn {
  background: var(--navy-light);
  border: none;
  color: var(--white);
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(10, 22, 40, 0.3);
}

.signup-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 22, 40, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 26px;
  color: var(--navy-light);
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 600px;
  margin-top: 50px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.slider {
  position: relative;
  min-height: 600px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 600px;
  padding: 40px 0;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  margin-left: 5%;
}

.hero-text h1 {
  font-size: 50px;
  color: var(--navy-light);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--golden), var(--golden));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 400;
  color: var(--text-light);
}

.hero-text p span {
  color: var(--navy-light);
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  background: var(--navy-light);
  color: var(--white);
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(18, 35, 179, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(18, 35, 179, 0.6);
}

.secondary-btn {
  background: transparent;
  color: var(--navy-light);
  padding: 16px 40px;
  border: 2px solid var(--navy-light);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.secondary-btn:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: left;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: var(--transition);
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

Arrows .arrow {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--navy-light);
  border: 2px solid var(--gray-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.arrow:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.arrow.left {
  left: 30px;
}

.arrow.right {
  right: 30px;
}

Dots .dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.dot.active {
  background: var(--navy-blue);
  border-color: var(--white);
  transform: scale(1.3);
  box-shadow: 0 0 15px var(--navy-light);
}

/* ===== SECTION HEADER ===== */
.section-header {
  margin-top: 50px;
  text-align: center;
  /* margin-bottom: 60px; */
}

.section-header h2 {
  font-size: 48px;
  color: var(--navy-light);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2 span {
  color: var(--golden);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--golden), transparent);
  border-radius: 2px;
}

.section-header .subtitle {
  color: var(--text-light);
  font-size: 18px;
  margin-top: 20px;
}

/* ===== BOTTOM BANNER ===== */
.bottom-banner {
  background: var(--navy-light);
  padding: 25px 0;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.3);
  position: relative;
  overflow: hidden;
}

.bottom-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.banner-text i {
  font-size: 28px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.banner-btn {
  background: var(--white);
  color: var(--navy-light);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: var(--golden);
  color: var(--white);
}

/* ===== STATS SECTION ===== */
.stats {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  /* background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent); */
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-box {
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(10px);
  border: 2px solid var(--golden);
  border-radius: 20px;
  z-index: -1;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.3);
  border-color: var(--navy-light);
}

.stat-icon {
  font-size: 48px;
  color: var(--golden);
  margin-bottom: 20px;
}

.stat-box h3 {
  color: var(--navy-light);
  font-size: 48px;
  margin: 15px 0;
  font-family: 'Playfair Display', serif;
}

.stat-box p {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

/* ===== PARTNERS SECTION ===== */
.partners {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  position: relative;
}

.partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(18, 35, 179, 0.6);
}

.partners h2 {
  font-size: 30px;
  color: var(--navy-light);
  margin-bottom: 15px;
}

.subtitle {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 50px;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.logo-track {
  margin-bottom: 30px;
  display: flex;
  gap: 60px;
  animation: scroll 20s linear infinite;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track img {
  width: 180px;
  height: 90px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: var(--transition);
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.logo-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 60px 0;
  background: var(--white);
}

/* .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
} */

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 300px;
  cursor: pointer;
  transition: var(--transition);
}

.service-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(10, 22, 40, 0.8),
      rgba(10, 22, 40, 0.6));
  z-index: 1;
  transition: var(--transition);
}

.service-card .content {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

.card-icon {
  font-size: 48px;
  color: var(--navy-light);
  margin-bottom: 15px;
  align-self: flex-start !important;
}

.service-card h3 {
  font-size: 28px;
  color: var(--white);
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
  margin: 0;
}

.service-card .number {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 100px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  font-family: 'Playfair Display', serif;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .card-overlay {
  background: linear-gradient(135deg,
      rgba(10, 22, 40, 0.9),
      rgba(1, 0, 8, 0.522));
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.video-section h2 {
  font-size: 30px;
  color: var(--navy-light);
  margin-bottom: 15px;
}

.video-section .subtitle {
  margin: 20px 0 50px;
  color: var(--text-light);
}

.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: auto;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.video-wrapper:hover {
  transform: scale(1.02);
}

.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 90px;
  height: 70px;
  background: linear-gradient(135deg, var(--golden), var(--golden-dark));
  border-radius: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 32px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.video-content {
  width: 90%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--golden);
  transform: rotate(90deg);
}


/* ===== TENDERS SECTION ===== */
.tenders {
  margin-top: 50px;
  padding: 60px 0;
  background: #ffffff;
}

.tender-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tenders h2 {
  font-size: 30px;
  color: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.tenders-para1 {
  font-size: 18px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tenders-para2 {
  font-size: 18px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.tender-left h1 {
  font-size: 65px;
  background: var(--golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.tender-left p {
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 500;
}

.search-box {
  display: flex;
  margin: 30px 0;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--gray-light);
  transition: var(--transition);
}

.search-box:focus-within {
  border-color: var(--navy-light);
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.2);
}

.search-box input {
  flex: 1;
  padding: 18px 25px;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.search-box button {
  padding: 18px 35px;
  background: var(--navy-light);
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
}

.search-box button:hover {
  background: var(--navy-light);
}

.tender-left ul {
  list-style: none;
  margin-top: 30px;
}

.tender-left li {
  margin-bottom: 15px;
  padding: 15px 20px;
  background: var(--off-white);
  border-radius: 12px;
  border-left: 4px solid var(--navy-light);
  transition: var(--transition);
  font-weight: 500;
}

.tender-left li:hover {
  background: var(--gray-light);
  transform: translateX(10px);
  border-left-color: var(--navy-light);
}

.tender-right img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D4AF37" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
}

.testimonials h2 {
  color: var(--navy-light);
  font-size: 48px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.testimonials .subtitle {
  color: var(--text-light);
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: auto;
  z-index: 1;
}

.testimonial {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid var(--golden);
  color: var(--text-dark);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 25px;
  border: 4px solid var(--golden);
  object-fit: cover;
}

.testimonial p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  color: var(--text-light);
}

.testimonial h4 {
  color: var(--navy-light);
  font-size: 22px;
  margin-bottom: 5px;
}

.testimonial span {
  color: var(--text-light);
  font-size: 16px;
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies {
  padding: 70px 0;
  text-align: center;
  background: #ffffff;
}

.case-studies h2 {
  font-size: 30px;
  color: var(--navy-light);
  margin-bottom: 15px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin: 50px 0;
}

.case-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: var(--transition);
  border: 2px solid transparent;
}

.case-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.2);
  border-color: var(--navy-light);
}

.case-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.case-card:hover img {
  transform: scale(1.1);
}

.case-card h3 {
  padding: 25px 20px 15px;
  color: var(--navy-light);
  font-size: 22px;
}

.case-card p {
  padding: 0 20px 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.case-card a {
  display: inline-block;
  padding: 15px 25px;
  margin: 0 20px 25px;
  color: var(--navy-light);
  font-weight: 600;
  border: 2px solid var(--navy-light);
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.case-card a:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateX(5px);
}

.primary-btn {
  background: var(--navy-light);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.3);
  margin-top: 20px;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.4);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 10px;
  margin-top: 15px;
  border-radius: 15px;
  text-align: center;
  /* padding: 60px 20px; */
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.faq-section h2 {
  font-size: 30px;
  color: var(--navy-light);
  margin-bottom: 15px;
}

.faq-section h2 span {
  color: var(--navy-light);
}

.faq-section p {
  color: var(--text-light);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 50px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(10, 22, 40, 0.15);
}

.faq-question {
  width: 100%;
  padding: 22px 25px;
  text-align: left;
  background: var(--white);
  border: 2px solid var(--gray-light);
  font-size: 18px;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--navy-light);
  font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
  background: var(--off-white);
  border-color: var(--navy-light);
}

.faq-answer {
  display: none;
  padding: 25px;
  background: var(--white);
  border-left: 4px solid var(--navy-light);
  color: var(--text-light);
  line-height: 1.8;
  font-size: 16px;
}

/* ===== CONSULTATION SECTION ===== */
.consult-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  position: relative;
  overflow: hidden;
}

.consult-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  /* background: radial-gradient(circle, rgba(2, 74, 141, 0.2), transparent); */
  border-radius: 50%;
}

.consult-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
}

.form-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-box h2 {
  color: var(--navy-light);
  font-size: 36px;
  margin-bottom: 10px;
}

.form-subtitle {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 16px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy-light);
  font-size: 18px;
}

.form-box input,
.form-box select {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-size: 16px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.form-box input:focus,
.form-box select:focus {
  border-color: var(--navy-light);
  outline: none;
  box-shadow: 0 0 0 4px rgba(10, 22, 40, 0.1);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.row select {
  padding-left: 20px;
}

.btn {
  background: var(--navy-light);
  color: var(--white);
  padding: 18px;
  border: none;
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.4);
}

.image-box {
  position: relative;
}

.image-box img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.consult-badge {
  width: 100%;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-light);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.4);
}

.consult-badge i {
  font-size: 36px;
}

.consult-badge p {
  font-size: 14px;
  opacity: 0.9;
}

.consult-badge h4 {
  font-size: 22px;
  font-weight: 700;
}

/* ===== FOOTER ===== */
.main-footer {
  background: linear-gradient(135deg, var(--navy-blue), #0d1f35);
  color: var(--white);
  padding-top: 40px;
  border-radius: 5px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  padding: 0 1% 24px;
}

.footer-col {
  padding: 0 10px;
}

.footer-logo-text {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo-text span {
  color: var(--golden);
}

.about p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--golden), var(--golden-light));
  border-radius: 2px;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.links a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.links a i {
  font-size: 12px;
  color: var(--golden);
}

.links a:hover {
  color: var(--golden);
  transform: translateX(5px);
}

.office-item {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.office-item i {
  color: var(--golden);
  font-size: 18px;
  margin-top: 3px;
}

.certifications {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.certifications p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.social-icons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
  background: var(--golden);
  border-color: var(--golden);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom i {
  color: var(--golden);
  margin-right: 8px;
}

/* ===== ANIMATIONS ===== */
.animate-fade-in {
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 56px;
  }

  .section-header h2 {
    font-size: 40px;
  }

  .tender-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .consult-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  /* Fix container to use full width on mobile */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  /* Mobile logo sizing */
  .logo-image {
    height: 55px;
  }

  .nav-links,
  .nav-buttons,
  .nav-user-profile {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }


  .nav-links.active {
    gap: 0px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.active li {
    width: 100%;
    margin: 5px 0;
  }

  .nav-links.active li a {
    padding: 2px 15px;
    display: block;
    font-size: 15px;
  }

  /* Mobile Dropdown Menu */
  .nav-links.active .dropdown {
    position: relative;
  }

  .nav-links.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--off-white);
    margin-top: 10px;
    border-radius: 8px;
    display: none;
    padding: 10px;
    border: none;
  }

  .nav-links.active .dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-links.active .dropdown-menu a {
    padding: 5px 15px;
    font-size: 14px;
    border-left: 2px solid var(--gray-light);
  }

  .nav-links.active .dropdown-toggle i {
    transition: transform 0.3s ease;
  }

  .nav-links.active .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .hero {
    min-height: auto;
    margin-top: 60px;
  }

  .slider {
    min-height: auto;
  }

  .slide {
    position: relative;
    padding: 20px 0 15px;
  }

  .hero-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    min-height: auto;
    padding: 0;
  }

  .hero-text {
    max-width: 100%;
    order: 1;
    padding-right: 5%;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-btn,
  .secondary-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-image {
    max-width: 100%;
    order: 2;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }

  .dots {
    bottom: 20px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .bottom-banner-item {
    font-size: 14px;
  }

  /* .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  } */

  @media (max-width: 768px) {
    .stats-grid {
      grid-template-columns: 1fr;
      /* full width single column */
      gap: 15px;
      width: 100%;
    }
  }

  .stat-box {
    padding: 20px 15px;
  }

  .stat-box h3 {
    font-size: 32px;
  }

  .stat-box p {
    font-size: 13px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .service-card {
    height: auto;
    min-height: 250px;
  }

  .service-card .content {
    padding: 25px;
  }

  .card-icon {
    font-size: 40px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card .number {
    font-size: 80px;
  }

  .tender-left h1 {
    font-size: 30px;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-box {
    padding: 25px;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    width: 100%;
  }

  .links-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }

  .chart-row {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }

  .page-hero {
    padding: 70px 0 40px;
    min-height: 250px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .slider-img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    /* corporate look */
    display: block;
  }

  /* Extra small container padding for small mobile */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  /* Extra small logo for mobile */
  .logo-image {
    height: 80px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .stat-box {
    padding: 25px 15px;
  }

  .stat-box h3 {
    font-size: 28px;
  }

  .tender-left h1 {
    font-size: 30px;
  }

  .testimonial {
    padding: 30px;
  }

  .consult-container {
    padding: 30px;
  }
}

/* ===== AUTH MODAL ===== */
/* .auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.auth-modal.active {
  opacity: 1;
  visibility: visible;
} */


.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(10px);

  display: none !important;
  /* ✅ IMPORTANT */

  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.auth-modal.active {
  display: flex !important;
  /* ✅ Show only when active */
}

.auth-container {
  background: var(--white);
  border-radius: 24px;
  padding: 0px 40px;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  max-height: 100vh;
  overflow-y: auto;
}

.auth-modal.active .auth-container {
  transform: scale(1) translateY(0);
}

.auth-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--off-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  color: var(--navy-light);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.auth-close:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: rotate(90deg);
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.auth-header h2 {
  font-size: 32px;
  color: var(--navy-light);
  margin-bottom: 8px;
  font-weight: 700;
}

.auth-header p {
  color: var(--text-light);
  font-size: 16px;
}

/* Tabs */
.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  background: var(--off-white);
  padding: 5px;
  border-radius: 12px;
}

.auth-tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.auth-tab.active {
  background: var(--navy-light);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.3);
}

.auth-tab:hover:not(.active) {
  color: var(--navy-light);
}

/* Forms */
.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.auth-input-group {
  position: relative;
  margin-bottom: 20px;
}

.auth-input-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy-light);
  font-size: 18px;
}

.auth-input-group input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-size: 16px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  background: var(--white);
}

.auth-input-group input:focus {
  border-color: var(--navy-light);
  outline: none;
  box-shadow: 0 0 0 4px rgba(10, 22, 40, 0.1);
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-light);
}

.remember-me input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--navy-light);
}

.forgot-password {
  color: var(--navy-light);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.forgot-password:hover {
  color: var(--golden);
}

.auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
}

.auth-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--navy-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.auth-checkbox a {
  color: var(--navy-light);
  text-decoration: none;
  font-weight: 600;
}

.auth-checkbox a:hover {
  text-decoration: underline;
}

.auth-btn {
  width: 100%;
  padding: 16px;
  background: var(--navy-light);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(10, 22, 40, 0.3);
  font-family: 'Poppins', sans-serif;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(10, 22, 40, 0.4);
}

/* Divider */
.auth-divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-light);
}

.auth-divider span {
  background: var(--white);
  padding: 0 15px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Google Button */
.google-btn {
  width: 100%;
  padding: 16px;
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}

.google-btn:hover {
  border-color: var(--navy-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.google-icon {
  width: 24px;
  height: 24px;
}

/* Responsive for Auth Modal */
@media (max-width: 768px) {
  .auth-container {
    padding: 40px 25px;
    width: 95%;
  }

  .auth-header h2 {
    font-size: 26px;
  }

  .auth-logo {
    height: 100px;
  }

  .auth-options {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* ===== GLASS EFFECT ===== */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  padding: 80px 0 10px;
  text-align: center;
  color: var(--navy-light);
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  /* background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent); */
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  /* background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent); */
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

.page-hero h1 {
  font-size: 28px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 15px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  color: var(--text-light);
  font-weight: 500;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 30px;
  color: var(--navy-light);
  margin-bottom: 25px;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.mission-vision {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  position: relative;
  overflow: hidden;
}

.mission-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--golden), var(--navy-light), var(--golden));
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
}

.mv-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  transition: var(--transition);
  border: 1px solid var(--golden);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(151, 144, 10, 0.073), transparent);
  transition: left 0.6s ease;
}

.mv-card:hover::before {
  left: 100%;
}

.mv-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(10, 22, 40, 0.15), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.mv-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--golden);
  box-shadow:
    0 20px 60px rgba(40, 39, 10, 0.3),
    0 0 0 2px rgba(40, 35, 10, 0.2) inset;
  background: rgba(255, 255, 255, 0.35);
}

.mv-card i {
  font-size: 72px;
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(10, 22, 40, 0.3));
  transition: var(--transition);
}

.mv-card:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(10, 22, 40, 0.5));
}

.mv-card h3 {
  font-size: 32px;
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.mv-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.mv-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  position: relative;
  overflow: hidden;
}

.mv-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.mv-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 22, 40, 0.05), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

/* ===== SERVICES PAGE ===== */
.service-detail {
  /* padding: 60px 0; */
  background: var(--white);
}

.service-detail h3 {
  font-size: 25px;
  color: var(--navy-light);
  margin-top: 45px;
  margin-bottom: 25px;
  text-align: center;
  justify-content: center;
}

.service-intro {
  max-width: 900px;
  margin: 0 auto;
}

.service-intro h2 {
  font-size: 30px;
  color: var(--navy-light);
  margin-bottom: 25px;
  text-align: center;
}

.service-intro p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.1), rgba(10, 22, 40, 0.05));
  border-left: 4px solid #c9a94d;
  /* golden left border */
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
  /* allows wrapping on smaller screens */
}

.highlight-box i {
  font-size: 32px;
  color: #c9a94d;
  /* matching left border */
  flex-shrink: 0;
}

.highlight-box h4 {
  font-size: 20px;
  color: #0a1628;
  /* replace var(--navy-light) if not defined */
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 16px;
  color: #6c7a89;
  /* replace var(--text-light) if not defined */
  margin: 0;
  text-align: left;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .highlight-box {
    flex-direction: column;
    /* stack icon on top */
    padding: 20px;
    gap: 15px;
  }

  .highlight-box i {
    font-size: 28px;
  }

  .highlight-box h4 {
    font-size: 18px;
  }

  .highlight-box p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  .service-intro h1 {
    font-size: 20px !important;
  }

  .service-intro p {
    font-size: 14px !important;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .highlight-box {
    padding: 15px;
    gap: 10px;
  }

  .highlight-box i {
    font-size: 24px;
  }

  .highlight-box h4 {
    font-size: 16px;
  }

  .highlight-box p {
    font-size: 14px;
  }
}

/* Why Section */
.why-section {
  /* padding: 60px 0; */
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Eligibility Section */
.eligibility-section {
  padding: 60px 0;
  background: var(--white);
}

/* Documents Section */
.documents-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

/* Process Section */
.process-section {
  padding: 40px 0;
  background: var(--white);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  width: 2px;
  height: calc(100% - 40px);
  background: linear-gradient(to bottom, var(--navy-light), transparent);
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(10, 22, 40, 0.3);
}

.process-icon i {
  font-size: 32px;
  color: var(--white);
}

.process-content {
  flex: 1;
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: var(--transition);
  border-left: 4px solid #c9a94d;
}

.process-step:hover .process-content {
  border-color: var(--navy-light);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(10, 22, 40, 0.15);
}

.process-content h3 {
  font-size: 24px;
  color: var(--navy-light);
  margin-bottom: 12px;
}

.process-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Benefits Section */
/* .benefits-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
} */

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-light), #1a2d4a);
  position: relative;
  overflow: hidden;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section::before {
  /* content: ''; */
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 22, 40, 0.2), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

/* .cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 22, 40, 0.15), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
} */

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 30px;
  color: var(--navy-light);
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-light);
  font-size: 16px;
  font-weight: 600;
}

.cta-feature i {
  color: var(--navy-light);
  font-size: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--white);
  color: var(--navy-blue);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.services-page {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.services-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card-page {
  background: var(--white);
  padding: 50px 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 2px solid var(--gray-light);
}

.service-card-page:hover {
  transform: translateY(-10px);
  border-color: var(--navy-light);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.2);
}

.service-card-page i {
  font-size: 64px;
  color: var(--navy-light);
  margin-bottom: 25px;
}

.service-card-page h3 {
  font-size: 26px;
  color: var(--navy-light);
  margin-bottom: 15px;
}

.service-card-page p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== BLOG PAGE ===== */
.blog-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  padding: 50px 0 50px;
  text-align: center;
  color: var(--navy-light);
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  /* background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent); */
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  /* background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent); */
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.blog-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 10px;
}

.blog-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--golden-dark);
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.blog-hero h1 {
  font-size: 48px;
  color: var(--navy-light);
  margin-bottom: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.blog-search {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.blog-search i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy-light);
  font-size: 16px;
}

.blog-search input {
  width: 100%;
  padding: 14px 60px 14px 50px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.blog-search input:focus {
  outline: none;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

/* Blog Categories */
.blog-categories {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  top: 80px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-filters {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-light);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.category-btn:hover {
  border-color: var(--golden);
  color: var(--golden);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.category-btn.active {
  background: linear-gradient(135deg, var(--golden), var(--golden-dark));
  color: var(--white);
  border-color: var(--golden);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Blog Page */
.blog-page {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.2);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-badge.tender {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-blue));
  color: var(--white);
}

.blog-badge.gem {
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white);
}

.blog-badge.dsc {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: var(--white);
}

.blog-badge.compliance {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
}

.blog-badge.tips {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: var(--white);
}

.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-light);
}

.blog-meta i {
  margin-right: 5px;
  color: var(--golden);
}

.blog-date {
  color: var(--navy-light);
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 22px;
  color: var(--navy-light);
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
}

.blog-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
  margin-top: auto;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--golden), var(--golden-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-blue);
  font-size: 14px;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-light);
}

.read-more {
  color: var(--navy-light);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-size: 14px;
}

.read-more:hover {
  gap: 12px;
  color: var(--golden-dark);
}

.read-more i {
  transition: var(--transition);
}

/* Newsletter Section */
.blog-newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  position: relative;
  overflow: hidden;
}

.blog-newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  /* background: radial-gradient(circle, rgba(2, 74, 141, 0.2), transparent); */
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.blog-newsletter::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  /* background: radial-gradient(circle, rgba(2, 74, 141, 0.15), transparent); */
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.newsletter-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blog-newsletter .container {
  position: relative;
  z-index: 1;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 36px;
  color: var(--golden-dark);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.blog-newsletter h3 {
  font-size: 36px;
  color: var(--navy-light);
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.blog-newsletter>.container>p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.newsletter-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid rgba(2, 74, 141, 0.2);
  border-radius: 50px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-light);
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(2, 74, 141, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--golden);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.newsletter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--golden), var(--golden-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.newsletter-note {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.newsletter-note i {
  color: var(--golden-dark);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 30px;
  color: var(--navy-light);
  margin-bottom: 20px;
}

.contact-info>p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--off-white);
  border-radius: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.info-item:hover {
  background: var(--white);
  transform: translateX(10px);
  border-color: var(--navy-light);
  box-shadow: 0 8px 20px rgba(10, 22, 40, 0.15);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.3);
}

.info-icon i {
  font-size: 24px;
  color: var(--white);
}

.info-item i {
  font-size: 32px;
}

.info-item h4 {
  font-size: 18px;
  color: var(--navy-light);
  margin-bottom: 5px;
}

.info-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.info-item .sub-text {
  font-size: 13px;
  color: var(--navy-light);
  margin-top: 5px;
  font-weight: 500;
}

.social-connect {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, var(--navy-light), #1a2d4a);
  border-radius: 20px;
  text-align: center;
}

.social-connect h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 20px;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-link.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.social-link.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
}

.social-link.twitter:hover {
  background: #000000;
  border-color: #000000;
}

.contact-form {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--gray-light);
}

.contact-form h2 {
  font-size: 32px;
  color: var(--navy-light);
  margin-bottom: 30px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-size: 16px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy-light);
  outline: none;
  box-shadow: 0 0 0 4px rgba(10, 22, 40, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-light));
  color: var(--white);
  padding: 18px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.4);
}

/* Why Contact Section */
.why-contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.why-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-contact-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 2px solid transparent;
}

.why-contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--navy-light);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(10, 22, 40, 0.3);
}

.card-icon i {
  font-size: 36px;
  color: var(--white);
}

.why-contact-card h3 {
  font-size: 24px;
  color: var(--navy-light);
  margin-bottom: 15px;
}

.why-contact-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}

/* Contact FAQ Section */
.contact-faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  background: var(--off-white);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
  border-left: 4px solid #c9a94d;
}

.faq-item:hover {
  border-color: var(--navy-light);
  border-left: 4px solid #c9a94d;
  box-shadow: 0 5px 15px rgba(10, 22, 40, 0.1);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
}

.faq-question h4 {
  font-size: 18px;
  color: var(--navy-light);
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  color: var(--golden);
  font-size: 20px;
  transition: var(--transition);
}

.faq-item:hover .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  font-weight: bolder;
  padding: 0 30px 25px;
  display: none;
  color: var(--navy-blue)
}

.faq-item:hover .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 16px;
}

.map-section {
  padding: 80px 0;
  background: var(--off-white);
  text-align: center;
}

.map-section h2 {
  font-size: 30px;
  color: var(--navy-light);
  margin-bottom: 40px;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* ===== RESPONSIVE FOR ADDITIONAL PAGES ===== */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 25px;
  }

  .cta-content h2 {
    font-size: 25px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px;
  }
}

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail {
  /* padding: 80px 0; */
  background: #ffffff;
}

.service-intro {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
}

.service-intro h2 {
  font-size: 25px;
  color: var(--navy-light);
  margin-bottom: 25px;
}

.service-intro p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.section-block {
  margin-bottom: 60px;
}

.section-block h3 {
  font-size: 32px;
  color: var(--navy-light);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-block h3 i {
  color: var(--golden);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.info-card {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 35px 25px;
  border-radius: 15px;
  border: 2px solid var(--gray-light);
  transition: var(--transition);
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.15);
  border-color: var(--navy-light);
}

.info-card i {
  font-size: 48px;
  color: var(--navy-light);
  margin-bottom: 20px;
}

.info-card h4 {
  font-size: 15px;
  color: var(--navy-light);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.info-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.info-card.solution {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.1), #ffffff);
  border-color: var(--navy-light);
}

.info-card.highlight {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.05), #ffffff);
}

.benefits-section {
  margin: 60px 0;
  text-align: center;
}

.benefits-section h3 {
  font-size: 32px;
  color: var(--navy-light);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.benefits-section h3 i {
  color: var(--golden);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 2px solid transparent;
  border-left: 4px solid #c9a94d;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.2);
  border-color: var(--navy-light);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 32px;
  color: var(--white);
}

.benefit-item h4 {
  font-size: 20px;
  color: var(--navy-light);
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 15px;
}

.process-steps {
  margin: 60px 0;
  text-align: center;
}

.process-steps h3 {
  font-size: 32px;
  color: var(--navy-light);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.process-steps h3 i {
  color: var(--golden);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: var(--transition);
  border: 2px solid var(--gray-light);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--golden);
}

.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.1);
  font-family: 'Playfair Display', serif;
}

.step-card i {
  font-size: 48px;
  color: var(--golden);
  margin-bottom: 20px;
}

.step-card h4 {
  font-size: 22px;
  color: var(--navy-light);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.step-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.type-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
}

.type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.2);
  border-color: var(--navy-light);
}

.type-card.popular {
  border-color: var(--navy-light);
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.05), #ffffff);
}

.type-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-light);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.type-card h4 {
  font-size: 26px;
  color: var(--navy-light);
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.type-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.type-card ul li {
  padding: 10px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-light);
  position: relative;
  padding-left: 25px;
}

.type-card ul li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--navy-light);
}

.price-tag {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-blue));
  color: var(--white);
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.requirements-section {
  margin: 60px 0;
  text-align: center;
}

.requirements-section h3 {
  font-size: 32px;
  color: var(--navy-light);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.requirements-section h3 i {
  color: var(--navy-light);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.req-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border: 2px solid var(--gray-light);
  transition: var(--transition);
}

.req-item:hover {
  border-color: var(--navy-light);
  transform: translateY(-5px);
}

.req-item i {
  font-size: 40px;
  color: var(--navy-light);
}

.req-item span {
  font-weight: 600;
  color: var(--navy-light);
}

.service-list {
  list-style: none;
  margin-top: 15px;
  text-align: left;
}

.service-list li {
  padding: 8px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-light);
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.service-list li:before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--golden);
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.cta-section {
  text-align: center;
  padding: 60px 10px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 25px;
  margin-top: 60px;
}

.cta-section h3 {
  font-size: 36px;
  color: var(--navy-light);
  margin-bottom: 15px;
  text-align: center;
}

.cta-section p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-light);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(18, 35, 179, 0.6);
  margin-bottom: 25px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(18, 35, 179, 0.6);
}

/* ===== ANALYTICS PAGE ===== */
.analytics-page {
  /* padding: 80px 0; */
  background: #ffffff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  padding-top: 15px;
}

.metric-card {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--gray-light);
  transition: var(--transition);
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--golden);
}

.metric-card i {
  font-size: 48px;
  color: var(--golden);
  margin-bottom: 20px;
}

.metric-card h3 {
  font-size: 36px;
  color: var(--navy-light);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.metric-card p {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 500;
}

.charts-section {
  margin-top: 40px;
  margin-bottom: 60px;
}

.chart-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.chart-container {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--gray-light);
}

.chart-container.full-width {
  grid-column: 1 / -1;
}

.chart-container h3 {
  font-size: 22px;
  color: var(--navy-light);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.chart-container h3 i {
  color: var(--golden);
}

.insights-section {
  margin: 60px 0;
}

.insights-section h3 {
  font-size: 20px;
  color: var(--navy-light);
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.insights-section h3 i {
  color: var(--golden);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.insight-card {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 35px 25px;
  border-radius: 15px;
  border-left: 4px solid var(--golden);
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.insight-card i {
  font-size: 36px;
  color: var(--golden);
  margin-bottom: 15px;
}

.insight-card h4 {
  font-size: 20px;
  color: var(--navy-light);
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.insight-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Footer Logo */
.footer-logo {
  display: inline-block;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-logo-image {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.footer-logo:hover .footer-logo-image {
  transform: scale(1.05);
}

/* Responsive for new pages */
@media (max-width: 768px) {
  .chart-row {
    grid-template-columns: 1fr;
  }

  .service-intro h2,
  .section-block h3,
  .benefits-section h3,
  .process-steps h3 {
    font-size: 26px;
  }

  .cta-section h3 {
    font-size: 28px;
  }
}

/* ===== BLOG PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
  .blog-hero {
    padding: 60px 0 60px;
  }

  .blog-hero h1 {
    font-size: 36px;
  }

  .blog-hero p {
    font-size: 16px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 0px 16px;
  }

  .blog-search input {
    padding: 14px 50px 14px 45px;
    font-size: 14px;
  }

  .blog-search i {
    font-size: 16px;
    left: 15px;
  }

  .blog-categories {
    padding: 20px 0;
    top: 70px;
  }

  .category-filters {
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .category-btn {
    padding: 10px 18px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .blog-page {
    padding: 60px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-image-wrapper {
    height: 200px;
  }

  .blog-content h3 {
    font-size: 20px;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .blog-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .blog-newsletter {
    padding: 60px 0;
  }

  .blog-newsletter h3 {
    font-size: 28px;
  }

  .newsletter-content p {
    font-size: 16px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .newsletter-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .blog-hero h1 {
    font-size: 28px;
  }

  .blog-hero p {
    font-size: 14px;
  }

  .category-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* ===== PAY ONLINE PAGE ===== */
.payment-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.payment-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.payment-info h2 {
  font-size: 32px;
  color: var(--navy-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-info h2 i {
  color: var(--golden);
}

.payment-info>p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.payment-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.feature-item i {
  font-size: 28px;
  color: var(--golden);
  min-width: 40px;
}

.feature-item h4 {
  font-size: 18px;
  color: var(--navy-light);
  margin-bottom: 5px;
  font-weight: 700;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.accepted-payments {
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.accepted-payments h3 {
  font-size: 18px;
  color: var(--navy-light);
  margin-bottom: 15px;
  font-weight: 700;
}

.payment-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 36px;
  color: var(--navy-light);
}

.payment-icons i {
  transition: var(--transition);
}

.payment-icons i:hover {
  color: var(--golden);
  transform: scale(1.1);
}

/* Payment Form */
.payment-form-wrapper {
  position: sticky;
  top: 100px;
}

.payment-form-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.payment-form-box h3 {
  font-size: 24px;
  color: var(--navy-light);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-light);
}

.payment-form-box h3 i {
  color: var(--golden);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-light);
  margin-bottom: 8px;
}

.form-group label i {
  color: var(--golden);
  font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--golden);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.pay-btn {
  width: 100%;
  padding: 16px;
  background: var(--navy-light);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.3);
}

.pay-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--navy-blue);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.4);
}

.pay-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 10px;
  font-size: 13px;
  color: #166534;
}

.secure-note i {
  color: #166534;
}

/* Payment Steps */
.payment-steps {
  padding: 80px 0;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  text-align: center;
  padding: 40px 25px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--golden), var(--golden-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.step-card i {
  font-size: 48px;
  color: var(--navy-light);
  margin-bottom: 20px;
  margin-top: 10px;
}

.step-card h3 {
  font-size: 20px;
  color: var(--navy-light);
  margin-bottom: 12px;
  font-weight: 700;
}

.step-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Payment FAQ */
.payment-faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Help Section */
.payment-help {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  position: relative;
  overflow: hidden;
}

.payment-help::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  /* background: radial-gradient(circle, rgba(2, 74, 141, 0.2), transparent); */
  border-radius: 50%;
}

.help-box {
  text-align: center;
  padding: 60px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.help-box i {
  font-size: 30px;
  color: var(--golden);
}

.help-box h3 {
  font-size: 36px;
  color: var(--navy-light);
  margin-bottom: 15px;
  font-weight: 700;
}

.help-box>p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.help-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.help-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.help-btn.primary {
  background: var(--navy-light);
  color: white;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.3);
}

.help-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.4);
}

.help-btn.secondary {
  background: var(--white);
  color: black;
  box-shadow: 0 10px 30px rgba(2, 74, 141, 0.3);
}

.help-btn.secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(2, 74, 141, 0.4);
  background: var(--navy-light);
  color: white;
}

/* Payment Page Responsive */
@media (max-width: 1024px) {
  .payment-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .payment-form-wrapper {
    position: relative;
    top: 0;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .payment-section {
    padding: 60px 0;
  }

  .payment-info h2 {
    font-size: 26px;
  }

  .payment-form-box {
    padding: 30px 25px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    padding: 30px 20px;
  }

  .help-box {
    padding: 40px 25px;
  }

  .help-box h3 {
    font-size: 28px;
  }

  .help-box i {
    font-size: 48px;
  }

  .help-buttons {
    flex-direction: column;
  }

  .help-btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .payment-info h2 {
    font-size: 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-item {
    padding: 15px;
  }

  .feature-item i {
    font-size: 24px;
  }

  .payment-icons {
    font-size: 28px;
    gap: 15px;
  }

  .payment-form-box h3 {
    font-size: 20px;
  }

  .pay-btn {
    font-size: 16px;
    padding: 14px;
  }

  .help-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-newsletter h3 {
    font-size: 24px;
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 32px;
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: white;
  color: #333;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float i {
    font-size: 28px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 50px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float i {
    font-size: 26px;
  }
}

/*========================
new
=========================*/


.hero-image-only {
  width: 100%;
  height: 100%;
}

.hero-image-only img {
  width: 100%;
  height: 500px;
  margin-top: 4%;
  object-fit: cover;
  display: block;
}

.hero {
  width: 100%;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slider-img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  position: relative;
  top: 8%;
}

/* Mobile */

@media (max-width:853px) {

  .hero {
    width: 100%;
    height: 45vh !important;
    overflow: hidden;
    position: relative;
  }

}


@media (max-width: 768px) {

  .process-step {
    display: flex;
    flex-direction: column;
    /* stack vertically */
    align-items: center;
    /* center everything */
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .process-icon {
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .process-content {
    width: 100%;
  }

  .process-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .process-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .process-step:not(:last-child)::after {
    display: none;
  }
}

.section-block h3,
.process-steps h3,
.benefits-section h3,
.cta-section h3 {
  text-align: center !important;
  justify-content: center;
}



.dsc-apply-section {
  padding: 60px 0;
  background: #f5f7fb;
}

/* MAIN LAYOUT */
.dsc-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT PANEL */
.dsc-left {
  flex: 1;
  background: #0b1f3a;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
}

.highlight-title {
  color: #f5c542;
  font-size: 24px;
  margin-bottom: 20px;
}

.highlight-list {
  list-style: disc;
  padding-left: 20px;
}

.highlight-list li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
}

/* CONTACT */
.renew-info {
  margin-top: 25px;
  color: #f5c542;
  font-weight: 600;
}

/* RIGHT FORM */
.dsc-right {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-title {
  font-size: 24px;
  color: #0b1f3a;
}

.form-subtitle {
  margin-bottom: 20px;
  color: #b48a2c;
  font-weight: 600;
}

/* FORM GRID */
.dsc-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.dsc-form input,
.dsc-form select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
}

.dsc-form input:focus,
.dsc-form select:focus {
  border-color: #0b1f3a;
  outline: none;
}

/* BUTTON */
.submit-btn {
  grid-column: span 2;
  background: #0b1f3a;
  color: #fff;
  padding: 14px;
  border: none;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #08162a;
}

/* FOOTER TEXT */
.form-footer {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .dsc-wrapper {
    flex-direction: column;
  }

  .dsc-form {
    grid-template-columns: 1fr;
  }

  .submit-btn {
    grid-column: span 1;
  }
}

/* Tender Cards */
.tender-card {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid #eee;
}

.tender-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tender-meta {
  margin: 10px 0;
  color: #666;
  font-size: 14px;
}

.tender-actions {
  margin-top: 15px;
}

.cta-button.small {
  padding: 6px 14px;
  font-size: 13px;
}

/* Empty State */
.no-data-box {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

/* MODAL */

.modal {

  display: none;

  position: fixed;

  z-index: 999;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.6);

}

.modal-content {

  background: #fff;

  margin: 5% auto;

  padding: 25px;

  width: 90%;
  max-width: 600px;

  border-radius: 10px;

  position: relative;

}

.closeModal {

  position: absolute;

  right: 15px;
  top: 10px;

  font-size: 28px;

  cursor: pointer;

}

.modal-description {

  max-height: 200px;

  overflow-y: auto;

  margin-bottom: 15px;

}

/* FORM */

.modal input,
.modal textarea {

  width: 100%;

  padding: 10px;

  margin-bottom: 10px;

  border: 1px solid #ccc;

  border-radius: 6px;

}

.tender-desc {

  font-size: 14px;

  color: #555;

}

/* MODAL BACKGROUND */

.modal {

  display: none;

  position: fixed;

  z-index: 9999;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.65);

  backdrop-filter: blur(6px);

  padding: 20px;

}

/* MODAL BOX */

.modal-box {

  background: #ffffff;

  margin: auto;

  width: 100%;
  max-width: 850px;

  border-radius: 14px;

  overflow: hidden;

  animation: popupFade 0.3s ease;

  position: relative;

}

/* ANIMATION */

@keyframes popupFade {

  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }

}

/* CLOSE BUTTON */

.closeModal {

  position: absolute;

  right: 15px;
  top: 10px;

  font-size: 30px;

  cursor: pointer;

  color: #888;

}

.closeModal:hover {

  color: red;

}

/* HEADER */

.modal-header {

  background: linear-gradient(135deg, #0A1628, #1a2d4a);

  color: white;

  padding: 20px;

}

.modal-header h2 {
  color: #fff;

  font-size: 22px;

  margin-bottom: 5px;

}

.modal-date {

  font-size: 14px;

  opacity: 0.9;

}

/* BODY */

.modal-body {

  /* display: grid; */
  display: block;

  grid-template-columns: 1fr 1fr;

  gap: 25px;

  padding: 25px;

}

/* DETAILS */

.tender-details h4 {

  margin-bottom: 10px;

  color: #0A1628;

}

.modal-description {

  background: #f9f9f9;

  padding: 15px;

  border-radius: 8px;

  max-height: 260px;

  overflow-y: auto;

  font-size: 14px;

  line-height: 1.6;

}

/* FORM */

.apply-form h4 {

  margin-bottom: 12px;

  color: #0A1628;

}

.apply-form input,
.apply-form textarea {

  width: 100%;

  padding: 10px;

  margin-bottom: 12px;

  border-radius: 6px;

  border: 1px solid #ccc;

  font-size: 14px;

}

.apply-form textarea {

  height: 80px;

  resize: none;

}

/* BUTTON */

.apply-btn {

  width: 100%;

  padding: 12px;

  background: #D4AF37;

  color: #fff;

  border: none;

  border-radius: 8px;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;

}

.apply-btn:hover {

  background: #b8962f;

}

/* MOBILE RESPONSIVE */

@media(max-width:768px) {

  .modal-body {

    grid-template-columns: 1fr;

  }

  .modal-box {

    max-height: 90vh;

    overflow-y: auto;

  }

}

/* ============================= */
/* ADMIN TENDER PAGE UI */
/* ============================= */

/* Page Title */
h2 {
  color: #0A1628;
}

/* Card Styling */
.card {
  border-radius: 14px;
  transition: all 0.3s ease;
  border: none;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Card Headers */
.card-header {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* Form Controls */
.form-control,
select {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px;
  transition: 0.3s;
}

.form-control:focus,
select:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-success {
  background: #0A1628;
  border: none;
}

.btn-success:hover {
  background: #D4AF37;
  color: #000;
}

.btn-warning {
  background: #f39c12;
  border: none;
  color: #fff;
}

.btn-warning:hover {
  background: #d68910;
}

.btn-danger {
  background: #e74c3c;
  border: none;
}

.btn-danger:hover {
  background: #c0392b;
}

/* Table */
.table {
  border-radius: 10px;
  overflow: hidden;
}

.table thead {
  background: #f8f9fa;
}

.table th {
  font-weight: 600;
  color: #0A1628;
}

.table td {
  vertical-align: middle;
}

/* Row Hover */
.table-hover tbody tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

/* Tender Title */
.table td strong {
  color: #0A1628;
}

/* Description */
.table td small {
  display: block;
  margin-top: 4px;
  color: #777;
}

/* Status Badges */
.badge {
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
}

.badge.bg-success {
  background: #27ae60 !important;
}

.badge.bg-danger {
  background: #e74c3c !important;
}

.badge.bg-warning {
  background: #f1c40f !important;
  color: #000;
}

/* Date Badge */
.badge.bg-light {
  background: #f8f9fa !important;
  border: 1px solid #ddd;
}

/* Empty State */
.text-muted {
  font-size: 14px;
}

/* Back Button */
.btn-dark {
  background: #0A1628;
  border: none;
}

.btn-dark:hover {
  background: #D4AF37;
  color: #000;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .col-md-4,
  .col-md-8 {
    width: 100%;
  }
}

/* Tender List Layout */

.tender-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.tender-row:last-child {
  border-bottom: none;
}

/* Left Content */
.tender-content h5 {
  margin: 0;
  font-weight: 600;
}

.tender-content p {
  margin: 5px 0;
  font-size: 13px;
  color: #666;
}

/* Meta */
.tender-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.tender-id {
  font-size: 12px;
  color: #999;
}

.tender-date {
  background: #f1f1f1;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 12px;
}

/* Status */
.status {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 5px;
  color: #fff;
}

.status.active {
  background: #27ae60;
}

.status.inactive {
  background: #e74c3c;
}

/* Buttons */
.tender-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tender-buttons a {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.btn-edit {
  background: #f39c12;
}

.btn-delete {
  background: #e74c3c;
}

/* Empty State */
.no-data {
  text-align: center;
  padding: 20px;
  color: #777;
}

/* Responsive */
@media(max-width:768px) {
  .tender-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .tender-buttons {
    flex-direction: row;
    margin-top: 10px;
  }
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 3px solid #0a3d62;
}

.service-list li {
  padding: 14px 0 14px 18px;
  margin: 0;
}

.metric {
  display: block;
  font-size: 25px;
  font-weight: 600;
  color: #0a3d62;
  letter-spacing: 0.3px;
}

.text {
  display: block;
  font-size: 18Fpx;
  color: #555;
  margin-top: 2px;
}

.service-list li+li {
  border-top: 1px solid #eee;
}

.cta-section {
  margin-top: 25px;
}

.cta-button {
  display: inline-block;
  background: #0a3d62;
  color: #fff;
  padding: 11px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.cta-button:hover {
  background: #08304d;
}

.contact-text {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}

/* Row */
.enq-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* 2 column */
.enq-col {
  width: calc(50% - 8px);
}

/* Service Section */
.enq-service-section {
  margin-top: 15px;
}

/* Checkbox Grid (2 column) */
.enq-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-top: 8px;
}

/* Checkbox */
.enq-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Input */
.enq-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Label */
.enq-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

/* Button */
.enq-btn-wrap {
  margin-top: 20px;
  text-align: right;
}

.enq-btn {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .enq-col {
    width: 100%;
  }

  .enq-checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* Grid Layout */
.enq-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  margin-top: 10px;
}

/* Each checkbox item */
.enq-checkbox {
  display: flex;
  align-items: flex-start;
  /* important */
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}

/* Checkbox size */
.enq-checkbox input {
  margin-top: 3px;
  /* aligns with text */
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Text */
.enq-checkbox span {
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .enq-checkbox-grid {
    grid-template-columns: 1fr;
  }
}

.chart-container {
  width: 100%;
  height: 450px;
  position: relative;
}

canvas {
  width: 100% !important;
  height: 95% !important;
}

/* =========================
   MAIN SECTION
========================= */
.categories-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0A1628;
  line-height: 1.3;
}

/* =========================
   GRID LAYOUT
========================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* =========================
   CARD DESIGN
========================= */
.step-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #D4AF37;
  transition: 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* =========================
   STEP NUMBER
========================= */
.step-number {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #0A1628);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

/* =========================
   TEXT CONTENT
========================= */
.step-content {
  flex: 1;
}

.step-content h4 {
  margin: 0;
  font-size: 16px;
  color: #0A1628;
  line-height: 1.4;
  font-weight: 600;
}

.step-content p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* =========================
   CTA BUTTON
========================= */
.cta-section {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, #D4AF37, #0A1628);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }

  .step-card {
    padding: 18px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .categories-section {
    padding: 40px 15px;
  }

  .step-card {
    flex-direction: row;
    gap: 12px;
  }

  .step-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 13px;
  }

  .step-content h4 {
    font-size: 15px;
  }

  .step-content p {
    font-size: 12px;
  }

  .cta-button {
    width: 100%;
    padding: 14px;
  }
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 20px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #D4AF37;
  transition: 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}


/* SECTION WRAPPER */
.service-intro {
  padding: 45px 20px;
  max-width: 1100px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
}

/* KPI GRID */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* KPI CARD */
.kpi-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border-top: 3px solid #D4AF37;
  transition: 0.3s ease;
}

/* Small screens */
@media (max-width: 768px) {
  .kpi-card {
    width: 100%;
  }
}

.kpi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* BIG NUMBER */
.kpi-number {
  font-size: 22px;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 8px;
}

/* TEXT */
.kpi-text {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* CTA */
.cta-section {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #D4AF37, #0A1628);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* CONTACT */
.contact-text {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.contact-text a {
  text-decoration: none;
  color: #0A1628;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .kpi-grid {
    grid-template-columns: 1fr !important;
  }
}

.trust-section {
  text-align: center;
  /* padding: 40px 20px; */
}

.trust-section h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.trust-subtitle {
  color: #666;
  margin-bottom: 25px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.trust-bar span {
  background: #f5f7fa;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  transition: 0.3s;
}

/* 
.trust-bar span:hover {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
} */




/* BACKDROP */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MODAL CARD */
.modal-card {
  width: 100%;
  max-width: 1550px;
  background: #fff;
  border-radius: 16px;
  padding: 25px;

  position: relative;
  max-height: 90vh;
  overflow-y: auto;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);

  transform: scale(0.9);
  opacity: 0;
  transition: 0.25s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
  opacity: 1;
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: #555;
}

/* HEADER */
.enquiry-header {
  text-align: center;
  margin-bottom: 20px;
}

.enquiry-header h2 {
  margin: 0;
  font-size: 26px;
  color: #0b1f3a;
}

.enquiry-header p {
  font-size: 14px;
  color: #666;
}

/* FORM GRID */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* INPUT BOX */
.input-box {
  position: relative;
}

.input-box.full {
  grid-column: span 2;
}

.input-box input {
  border-color: var(--golden-dark) !important;
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

/* FLOAT LABEL FIX */
.input-box label {
  position: absolute;
  left: 12px;
  top: 14px;
  font-size: 13px;
  color: #888;
  background: #fff;
  padding: 0 5px;
  transition: 0.2s;
  pointer-events: none;
}

.input-box input:focus+label,
.input-box input:not(:placeholder-shown)+label {
  top: -8px;
  font-size: 11px;
  color: #0b1f3a;
}

/* SERVICE TITLE */
.service-title {
  margin: 18px 0 10px;
  font-size: 14px;
  color: #333;
}

/* CHECKBOX GRID */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;

  max-height: 220px;
  overflow-y: auto;

  padding: 12px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
}

/* CHECK ITEMS */
.check-item {
  display: flex;
  gap: 8px;
  font-size: 13px;
  padding: 8px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #eee;
  cursor: pointer;
  transition: 0.2s;
}

.check-item:hover {
  background: #eef3ff;
  border-color: #cdd9ff;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  margin-top: 18px;
  padding: 14px;

  background: #0b1f3a;
  color: #fff;
  border: none;
  border-radius: 10px;

  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #123a66;
}

/* MESSAGE */
#enquiryMsg {
  margin-top: 10px;
  font-size: 13px;
}

/* MOBILE */
@media(max-width:768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .modal-card {
    width: 92%;
  }
}

.why-section {
  /* padding: 60px 15px; */
  background: #f9fafb;
}

.why-section .section-header h2 {
  font-size: 28px;
  text-align: center;
  color: #1d2b4f;
  margin-bottom: 10px;
}

.why-section .section-header p {
  text-align: center;
  color: #6b7280;
  margin-bottom: 40px;
}

/* .info-grid {
  margin-top: 15px;
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); *
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  /* grid-template-columns: repeat(4, 1fr); exactly 4 columns *

} */

.info-grid {
  margin-top: 15px;
  display: grid;
  gap: 25px;

  grid-template-columns: repeat(4, 1fr);
}

/* ========== CENTER LAST SINGLE CARD (5, 9, 13...) ========== */
.info-card:last-child:nth-child(4n + 1) {
  grid-column: 2 / 4;
}

/* ========== CENTER LAST 2 CARDS (6, 10, 14...) ========== */
.info-card:nth-last-child(2):nth-child(4n + 1) {
  grid-column: 2 / 3;
}

.info-card:last-child:nth-child(4n + 2) {
  grid-column: 3 / 4;
}

/* ========== TABLET ========== */
@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== MOBILE (100% FIXED 1 COLUMN) ========== */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr !important;
    justify-items: center;
  }

  .info-card {
    width: 100%;
    max-width: 500px;
    grid-column: auto !important;
  }
}

.info-card {
  /* background: #fff; */
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border-left: 4px solid #c9a94d;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-card i {
  font-size: 30px;
  /* color: var(--golden-light); */
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 18px;
  color: #1d2b4f;
  margin-bottom: 12px;
}

.info-card ul {
  list-style: disc;
  padding-left: 20px;
  color: #4b5563;
}

.info-card ul li {
  list-style: none;
  /* removes default dots */

  margin-bottom: 8px;
  font-size: 14px;
}


.eligibility-section {
  padding: 60px 15px;
  background: #f9fafb;
  font-family: 'Inter', sans-serif;
}

.section-header h2 {
  text-align: center;
  font-size: 28px;
  color: #1d2b4f;
  margin-bottom: 40px;
}

/* Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Cards */
.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  border: 2px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  border: 2px solid transparent;
  /* initial transparent border */
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Show animated border on hover */
.step-card:hover::before {
  opacity: 1;
  animation: borderGlow 3s linear infinite;
}

/* Keyframes for moving gradient */
@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Icon */
.step-icon {
  font-size: 28px;
  color: var(--golden-light);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #eef0ff;
  border-radius: 50%;
}

/* Card heading */
.step-card h4 {
  font-size: 16px;
  color: #1d2b4f;
  margin-bottom: 6px;
}

/* Card text */
.step-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
}

/* Responsive */
@media(max-width:768px) {
  .section-header h2 {
    font-size: 24px;
  }

  .step-card {
    padding: 18px 12px;
  }

  .step-icon {
    width: 45px;
    height: 45px;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .step-card h4 {
    font-size: 15px;
  }

  .step-card p {
    font-size: 12px;
  }
}

@media(max-width:480px) {
  .section-header h2 {
    font-size: 20px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-bottom: 8px;
  }

  .step-card h4 {
    font-size: 14px;
  }

  .step-card p {
    font-size: 12px;
  }
}

.gem-success-section {
  margin-top: 50px;
}

.categories-section {
  text-align: center;
  /* padding: 60px 20px;
  background: #f3f4f6; */
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 45px;
  color: #0f2a44;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.step-card {
  background: #f9fafb;
  padding: 30px 20px 25px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  position: relative;
  transition: 0.3s ease;

  /* GOLD LEFT BORDER */
  border-left: 4px solid #c9a94d;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);

  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 600;
  color: white;

  background: linear-gradient(135deg, #c9a94d, #5c4a1a);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 10px;
  color: #0f2a44;
}

.step-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 240px;
  margin: auto;
}

/* CTA */
.cta-section {
  margin-top: 50px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #c9a94d, #5c4a1a);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-button:hover {
  opacity: 0.9;
}

.policy-box {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  line-height: 1.7;
  font-size: 15px;
  color: #333;
}

.policy-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}

.policy-box p {
  margin-bottom: 15px;
  text-align: justify;
}

.policy-box strong {
  color: #111;
}

.policy-box p {
  margin: 0 0 14px;
}

.policy-box br {
  display: none;
}

.blog-detail-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 20px auto;
}

.contact-form {
  max-width: 650px;
  margin: 50px auto;
  padding: 35px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: 'Poppins', sans-serif;
}

.contact-form h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.form-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group {
  position: relative;
  margin-bottom: 18px;
  flex: 1;
}

.form-group i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #888;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

.form-group textarea {
  padding-top: 12px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

.textarea-group i {
  top: 18px;
  transform: none;
}


/* ===== FLOATING TOP BAR ===== */
.floating-bar {
  position: sticky;
  top: 80px;
  z-index: 999;

  background: #0A1628;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
}

/* marquee effect */
.marquee {
  white-space: nowrap;
  display: flex;
  width: 100%;
}

/* text animation */
.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 18s linear infinite;
  font-size: 14px;
  font-weight: 500;
  color: #f5d36b;
}

/* pause animation on hover */
.floating-bar:hover .marquee span {
  animation-play-state: paused;
}

/* animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* links inside marquee */
.marquee a {
  color: inherit;
  text-decoration: none;
}

/* underline on hover */
.marquee a:hover {
  text-decoration: underline;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.custom-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--navy-blue);
  text-align: left;
}

.custom-list li::before {
  content: "\f058";
  /* check-circle icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--golden);
  font-size: 14px;
}

.market-insights-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.market-insights-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.market-insights-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.market-insights-section .subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.insight-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.insight-list li {
  margin-bottom: 15px;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.insight-list .tick {
  color: #4CAF50;
  font-weight: bold;
  margin-right: 10px;
}

.highlight-text {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  color: #333;
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background-color: #D4AF37;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #b8962e;
}

.section-header h2 {
  margin-top: 0;
}

.section-header p {
  margin-top: 0;
}

.click-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--golden);
  border-radius: 12px;
  vertical-align: middle;
  animation: pulse 1.5s infinite;
}

/* optional attention animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card {
  cursor: pointer;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* optional: remove default link highlight */
.service-card-link:focus,
.service-card-link:active {
  outline: none;
}

.services-box {
  margin-top: 10px;
}

.services-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9ff;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
  border: 1px solid #eee;
}

.service-item:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
}

.service-item input {
  width: 16px;
  height: 16px;
  accent-color: var(--golden-light);
}

.form-box form {
  display: flex;
  flex-direction: column;
}

/* 2 column layout */
.input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 12px;
  border-radius: 8px;
}

/* GRID for inputs */
.form-box form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Full width fields (services + button) */
.services-box,
.form-box button {
  grid-column: span 2;
}

/* icon styling */
.input-group i {
  color: var(--golden);
  width: 18px;
}

/* input clean */
.input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}

/* responsive */
@media (max-width: 768px) {
  .form-box form {
    grid-template-columns: 1fr;
  }

  .services-box,
  .form-box button {
    grid-column: span 1;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.video-card {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.video-card:hover {
  transform: translateY(-5px);
}

/* YouTube frame */
.video-card iframe {
  width: 100%;
  height: 220px;
  border: none;
}

/* Responsive */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card iframe {
    height: 200px;
  }
}


.dashboard-section {
  padding: 50px 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kpi-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.kpi-card h3 {
  font-size: 14px;
  color: #666;
}

.kpi-card p {
  font-size: 28px;
  font-weight: bold;
  color: #111;
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.chart-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.slider {
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {

  .hero {
    height: 30vh !important;
    /* reduce extra space */
  }

  .slider-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }

  .slide {
    position: absolute;
    top: -90px !important;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  }
}

.services-grid {
  display: flex;
  gap: 22px;
  flex-wrap: nowrap;
  /* keep all cards in one row on desktop */
  overflow-x: auto;
  /* allows scroll if screen is small */
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

/* Hide scrollbar (optional clean look) */
.services-grid::-webkit-scrollbar {
  display: none;
}

.services-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.service-card-link {
  flex: 1;
  min-width: 260px;
  /* ensures proper card size */
  text-decoration: none;
}

/* Card base styling (keep your existing design intact) */
.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

/* Content styling */
.service-card .content {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  .services-grid {
    flex-wrap: wrap;
    /* allow stacking */
    overflow-x: unset;
    gap: 16px;
  }

  .service-card-link {
    flex: 0 0 100%;
    /* full width card */
    width: 100%;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 25px !important;
  }
}

/* SECTION */

.consult-section {
  padding: 80px 20px;
}

.consult-wrapper {
  max-width: 1400px;
  margin: auto;

  display: flex;
  align-items: stretch;

  background: #fff;
  border-radius: 24px;
  overflow: hidden;

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08);
}

/* =========================
   LEFT IMAGE
========================= */

.consult-image {
  width: 45%;
  position: relative;
}

.consult-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DARK OVERLAY */

.consult-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.2));
}

/* TEXT OVER IMAGE */

.image-content {
  position: absolute;
  left: 40px;
  bottom: 40px;

  z-index: 2;
  color: #fff;
}

.image-content h2 {
  font-size: 38px;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--golden-dark);
}

.image-content p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;
}

/* =========================
   FORM SIDE
========================= */

.consult-form {
  width: 55%;
  padding: 50px;
}

.consult-form h2 {
  font-size: 34px;
  color: #111827;
  margin-bottom: 12px;
}

.consult-form .subtitle {
  color: #6b7280;
  margin-bottom: 35px;
  font-size: 15px;
}

/* =========================
   FORM GRID
========================= */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

  margin-bottom: 35px;
}

/* INPUT */

.input-box input {
  width: 100%;
  height: 58px;

  border: 1px solid #dbe1ea;
  border-radius: 14px;

  padding: 0 18px;

  font-size: 15px;
  background: #f9fbff;

  transition: 0.3s;
  outline: none;
}

.input-box input:focus {
  border-color: var(--golden-light);
  background: #fff;

  box-shadow:
    0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* =========================
   SERVICES
========================= */

.service-heading {
  font-size: 22px;
  margin-bottom: 20px;
  color: #111827;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;

  margin-bottom: 35px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px;

  border: 1px solid #dbe1ea;
  border-radius: 14px;

  background: #fafcff;

  cursor: pointer;
  transition: 0.3s;
}

.service-item:hover {
  border-color: var(--golden-light);
  background: #f3f4ff;
}

.service-item input {
  width: 18px;
  height: 18px;

  accent-color: var(--golden-light);
}

.service-item span {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  line-height: 1.4;
}

/* =========================
   BUTTON
========================= */

.submit-btn {
  width: 100%;
  height: 60px;

  border: none;
  border-radius: 14px;

  background: linear-gradient(135deg,
      var(--golden-light),
      var(--golden-light));

  color: #fff;
  font-size: 17px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 25px rgba(79, 70, 229, 0.25);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

  .consult-wrapper {
    flex-direction: column;
  }

  .consult-image,
  .consult-form {
    width: 100%;
  }

  .consult-image {
    height: 420px;
  }

}

@media(max-width:768px) {

  .consult-form {
    padding: 30px 20px;
  }

  .form-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .consult-form h2 {
    font-size: 28px;
  }

  .image-content {
    left: 25px;
    bottom: 25px;
  }

  .image-content h2 {
    font-size: 28px;
  }


}

#goodsChart,
#msmeChart,
#buyerChart,
#successChart {
  height: 300px !important;
}

#growthChart {
  height: 85% !important;
}

.marquee span {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
  /* 👈 increase time = slower */
}

.logo-track {
  animation: scroll 3s linear infinite;
}

.service-intro h1 {
  font-size: 30px;
}


.tender-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.tender-item {
  border-left: 4px solid var(--golden);
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  gap: 15px;
}

.tender-main {
  flex: 1;
  min-width: 250px;
}

.tender-title {
  text-align: left;
  font-size: 18px;
  color: #0a1628;
  margin-bottom: 8px;
}

.tender-desc {
  text-align: left;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.tender-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #777;
}

.tender-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 120px;
}

.amount-btn {
  background-color: #f39c12;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 14px;
}

.action-btns button {
  margin-left: 5px;
  padding: 6px 10px;
  border-radius: 50%;
  border: none;
  background: #eee;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.action-btns button:hover {
  background: #f39c12;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .tender-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .tender-actions {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
  }
}


.slider {
  position: relative;
  overflow: hidden;
  height: 400px;
  /* adjust as needed */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  /* subtle zoom for premium effect */
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* corporate look */
  display: block;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #ffffff;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s;
}

/* Tender Filter Form */
.tender-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  background: #f7f7f7;
  padding: 15px 20px;
  border-radius: 8px;
  align-items: flex-end;
}

.tender-page {
  margin-top: 150px;
  margin-bottom: 50px;
}

.tender-filter .filter-group {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.tender-filter label {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
}

.tender-filter select,
.tender-filter input {
  padding: 8px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border 0.2s;
}

.tender-filter select:focus,
.tender-filter input:focus {
  border-color: #007bff;
}

.tender-filter button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.tender-filter button:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .tender-filter {
    flex-direction: column;
    gap: 10px;
  }

  .tender-filter .filter-group {
    width: 100%;
  }
}


.analytics-page {
  background: #ffffff;
  padding: 40px 0;
}

.charts-section {
  background: #ffffff;
  border-radius: 32px;
  padding: 24px 0;
  width: 100%;
}

/* ROW */
.chart-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
}

/* CARD */
.chart-container {
  flex: 1 1 calc(50% - 14px);
  min-width: 320px;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #eef2ff;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.03),
    0 10px 25px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.chart-container:hover {
  transform: translateY(-2px);
}

/* FULL WIDTH */
.chart-container.full-width {
  flex: 1 1 100%;
}

/* TITLE */
.chart-container h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0f172a;
}

/* HD CANVAS */
.chart-container canvas {
  width: 100% !important;
  height: 340px !important;
  display: block;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {

  .chart-container {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .chart-container canvas {
    height: 380px !important;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .charts-section {
    padding: 10px 0;
  }

  .chart-row {
    gap: 18px;
    margin-bottom: 20px;
  }

  .chart-container {
    padding: 16px;
    border-radius: 18px;
  }

  .chart-container h3 {
    font-size: 15px;
    margin-bottom: 14px;
    text-align: center;
  }

  /* Perfect mobile height */
  .chart-container canvas {
    height: 300px !important;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  .chart-container {
    padding: 14px;
  }

  .chart-container canvas {
    height: 260px !important;
  }

  .chart-container {
    width: 100%;
    height: 350px;
    position: relative;
  }
}

.balance-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
  margin-bottom: 10px;
  color: #e74c3c;
}

.popup-content button {
  margin-top: 15px;
  padding: 8px 15px;
  border: none;
  background: #e74c3c;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

@media (max-width: 768px) {

  .nav-user-profile {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
  }

  .logout-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

}

.badge {
  background-color: #D4AF37;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  margin-left: 8px;
}

.input-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.input-box i {
  position: absolute;
  left: 14px;
  color: var(--golden);
  font-size: 15px;
  pointer-events: none;
}

.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  padding: 14px 14px 14px 42px;
  border: 1px solid #d6dce5;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  background: #fff;
}

.input-box textarea {
  min-height: 90px;
  resize: none;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
  border-color: #024A8D;
  box-shadow: 0 0 0 3px rgba(2, 74, 141, 0.12);
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group label i {
  color: #024A8D;
}

/* Overlay background */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal box */
.modal {
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Close button */
.modal button {
  margin-top: 15px;
  padding: 8px 15px;
  border: none;
  background: #007BFF;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.modal button:hover {
  background: #0056b3;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-box {
  width: 90%;
  max-width: 500px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.popup-box h3 {
  margin-bottom: 10px;
  color: #0c5adb;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.popup-box button[type="submit"] {
  width: 100%;
  background: #0c5adb;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
}
/* POPUP CONTAINER */
.popup-box {
  background: #ffffff;
  width: 90%;
  max-width: 650px;  /* Increased for better balance */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* INNER LAYOUT */
.popup-inner {
  display: flex;
  min-height: 480px; /* Better proportion for 1024x1006 image */
}

/* IMAGE SIDE */
.popup-image {
  width: 50%;
  background: #f4f6f9;
  display: flex;
}


/* FORM SIDE */
.popup-form {
  /* width: 50%;
  padding: 30px 25px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1d4ed8;
}

.popup-form p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

/* INPUTS */
.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s ease;
}

.popup-form input:focus,
.popup-form textarea:focus {
  border-color: #1d4ed8;
  outline: none;
  box-shadow: 0 0 0 2px rgba(29,78,216,0.1);
}

.popup-form textarea {
  resize: none;
  height: 80px;
}

/* BUTTON */
.popup-form button {
  margin-top: 5px;
  padding: 12px;
  background: #1d4ed8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.popup-form button:hover {
  background: #163bb5;
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 20px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 10;
}

/* OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .popup-inner {
    flex-direction: column;
    min-height: auto;
  }

  .popup-image {
    width: 100%;
    height: 220px;
  }

  .popup-form {
    width: 100%;
    padding: 20px;
  }
}
/* OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

/* BOX */
.popup-box {
    /*margin-top:15%;*/
    /*height: 90%;*/
  background: #fff;
  width: 90%;
  max-width: 900px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.popup-image {
  flex: 0 0 50%;
}

.popup-form {
  flex: 0 0 50%;
}

/* IMAGE */
.popup-image {
  width: 40%;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.popup-image img {
  max-width: 100%;
  max-height: 420px;
  object-fit: cover; /* BEST FOR YOUR BANNER */
}

/* FORM */
.popup-form {
  width: 40%;
  padding: 25px;
}

.popup-form h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #1d4ed8;
}

.popup-form p {
  font-size: 13px;
  margin-bottom: 15px;
  color: #666;
}

/* INPUTS */
.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

/* BUTTON */
.popup-form button {
  width: 100%;
  padding: 12px;
  background: #0c5adb;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.popup-form button:hover {
  background: #0947a6;
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .popup-box {
    margin-top: 5%;
    height: 90%;
    background: #fff;
    width: 90%;
    max-width: 900px;
    border-radius: 14px;
    overflow: hidden;
    overflow-y: auto; /* Enables vertical scrolling */
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  }


  .popup-inner {
    flex-direction: column;
  }

  .popup-image {
    width: 100%;
    height: 200px;
  }

  .popup-form {
    width: 100%;
  }
}

/* Popup Hidden By Default */
.success-plan-popup {
    display: none; /* IMPORTANT */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

/* Popup Box */
.success-plan-box {
    position: relative;
    width: 100%;
    max-width: 1150px;
    min-height: 550px;
    padding: 60px;
    border-radius: 20px;
    overflow: hidden;

    background: url('../images/success-plan-banner.png') no-repeat center center;
    background-size: cover;

    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Optional overlay */
.success-plan-box::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(5, 25, 90, 0.25); */
}

.success-plan-box > * {
    position: relative;
    z-index: 2;
}

/* Close Button */
.success-plan-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 3;
}

/* Heading */
.success-plan-box h2 {
    margin: 0 0 25px;
    max-width: 700px;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

/* Text */
.success-plan-box p {
    margin: 0 0 12px;
    max-width: 550px;
    font-size: 24px;
    line-height: 1.5;
    color: #fff;
}

/* Buttons */
.success-plan-actions {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-proposal {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 12px;
    background: linear-gradient(to bottom, #ff8d2b, #ff4d00);
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(255, 77, 0, 0.4);
}

.btn-proposal:hover {
    color: #fff;
    transform: translateY(-2px);
}

.btn-learn {
    color: #fff;
    font-size: 22px;
    text-decoration: underline;
}

.btn-learn:hover {
    color: #ffb300;
}

/* Mobile */
@media (max-width: 768px) {
    .success-plan-box {
        padding: 35px 25px;
        min-height: auto;
    }

    .success-plan-box h2 {
        font-size: 32px;
    }

    .success-plan-box p {
        font-size: 16px;
    }

    .success-plan-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-proposal {
        width: 100%;
        text-align: center;
    }
}