/* ===== 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: 10px;
  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 {
  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: 500px;
  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: 80px 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: 42px;
  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 {
  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: 42px;
  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 {
  padding: 60px 0;
  background: #ffffff;
}

.tender-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tenders h2 {
  font-size: 42px;
  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: 72px;
  background: linear-gradient(135deg, var(--navy-blue), 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: 42px;
  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 {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.faq-section h2 {
  font-size: 42px;
  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 {
  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: 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  padding: 0 5% 60px;
}

.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 {
    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: 12px 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: 10px 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%;
  }
  
  .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: 42px;
  }
  
  .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: 32px;
  }
  
  .page-hero p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  /* Extra small container padding for small mobile */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }
  
  /* Extra small logo for mobile */
  .logo-image {
    height: 45px;
  }
  
  .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: 42px;
  }
  
  .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-container {
  background: var(--white);
  border-radius: 24px;
  padding: 50px 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: 90vh;
  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: 60px;
  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: 50px;
  }
  
  .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: 100px 0 60px;
  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;
}

.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: 56px;
  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: 20px;
  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: 42px;
  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: left;
}

.service-intro {
  max-width: 900px;
  margin: 0 auto;
}

.service-intro h2 {
  font-size: 40px;
  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 var(--navy-light);
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.highlight-box i {
  font-size: 32px;
  color: var(--navy-light);
  flex-shrink: 0;
}

.highlight-box h4 {
  font-size: 20px;
  color: var(--navy-light);
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
  text-align: left;
}

/* 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: 80px 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: 30px;
  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);
}

.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: 44px;
  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: 42px;
  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);
}

.faq-item:hover {
  border-color: var(--navy-light);
  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 {
  padding: 0 30px 25px;
  display: none;
}

.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: 42px;
  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: 40px;
  }
  
  .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: 42px;
  color: var(--navy-light);
  margin-bottom: 25px;
}

.service-intro p {
  font-size: 18px;
  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: 22px;
  color: var(--navy-light);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.info-card p {
  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;
}

.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 40px;
  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);
}

.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;
}

.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-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: 32px;
  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: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float i {
    font-size: 26px;
  }
}

.hero-image-only {
    width: 100%;
    height: 100%;
}

.hero-image-only img {
    width: 100%;
    height: 500px; 
    margin-top:4%;
    object-fit: cover;
    display: block;
}