/* ===== GLOBAL ===== */
:root {
  --brand: #d4a017; /* golden yellow */
  --muted: #6b7280;
  --bg: #fffbea; /* light yellow-white background */
  --card: #ffffff;
  --shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
  --radius: 10px;
  --maxwidth: 1200px;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

html {
  scroll-behavior: smooth;
}
* {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  transform: translateZ(0);
  will-change: transform;
}


/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #fff, #fff8dc);
  border-bottom: 2px solid rgba(212, 160, 23, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* Header Container */
.header-container {
  width: 100%;
  padding: 4px 20px; /* compact top-bottom */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo-area {
  max-width: 45%;
}

.header-logo {
  height: 70px; /* slightly smaller, balanced with nav */
  width: auto;
  object-fit: contain;
}

/* ===== NAVIGATION ===== */
.nav {
  margin-left: 60px;  /* shift nav left toward logo */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align nav items toward left */
  flex-wrap: nowrap;
}

/* Menu Styles */
.menu {
  display: flex;
  gap: 12px; /* equal gap between items */
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.menu a:hover {
  color: var(--brand);
  background: rgba(212, 160, 23, 0.08);
  transform: scale(1.08);
}

/* Contact (Login) Button */
.contact-pill {
  background: var(--brand);
  color: white !important;
  padding: 8px 20px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.contact-pill:hover {
  background: #b68c10;
  transform: scale(1.1);
}

/* ====== HAMBURGER MENU (Mobile) ====== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 2100;
  position: relative;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ====== RESPONSIVE BEHAVIOR ====== */
@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-logo {
    height: 60px;
  }
}
/* 




===== GLOBAL ===== */
:root {
  --brand: #d4a017; /* golden yellow */
  --muted: #6b7280;
  --bg: #fffbea; /* light yellow-white background */
  --card: #ffffff;
  --shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
  --radius: 10px;
  --maxwidth: 1200px;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}



/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #fff, #fff8dc);
  border-bottom: 2px solid rgba(212, 160, 23, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.header-container {
  width: 100%;
  padding: 4px 20px; /* smaller top-bottom spacing */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}


/* LOGO AREA */
.logo-area {
  max-width: 45%; /* Limit logo+text width */
}


.header-logo {
  height: 85px; /* increased logo size */
  width: auto;
  object-fit: contain;
}


.logo-text h1 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  white-space: nowrap;
  color: #1f2937;
}

/* NAVIGATION */
/* ===== NAVIGATION BAR ===== */
.nav {
 margin-left: 0px;
; /* moves navbar slightly left toward logo */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align items toward left side */
  flex-wrap: nowrap;
}


.menu a {
  padding: 6px 10px; /* compact look */
}

.menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Add hover scale effect */
.menu a:hover {
  color: var(--brand);
  transform: scale(1.15);
  background: rgba(212, 160, 23, 0.08);
}

/* Smooth return to normal size */
.menu a {
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

/* Fix contact button position */
.contact-pill {
  background: var(--brand);
  color: white !important;
  padding: 8px 20px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.contact-pill:hover {
  background: #b68c10;
  transform: scale(1.15);
}

/* ====== HAMBURGER MENU ====== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 2100;
  position: relative;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ====== MOBILE MENU ====== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  z-index: 5000;
  padding: 40px 20px;
  display: block !important;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #111;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: #d4a017;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: #111;
  cursor: pointer;
}

.mobile-menu.active {
  right: 0;
}

/* RESPONSIVE BEHAVIOR */
@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


/* Menu */
.menu{display:flex; gap:18px; list-style:none; margin:0; padding:0; align-items:center}
.menu a{text-decoration:none; color:#222; font-weight:600; padding:8px 12px; border-radius:999px; transition:all .18s}
.menu a:hover{background:rgba(192,24,116,0.06); color:var(--brand)}
.hamburger{display:none; border:0; background:none; font-size:22px}

/* Hero */
.hero{padding:80px 0; background:linear-gradient(180deg,#fff,#f9f6fb); border-bottom:1px solid rgba(16,24,40,0.02)}
.hero-inner{display:grid; grid-template-columns:1fr 460px; gap:36px; align-items:center}
.kicker{color:var(--brand); font-weight:700; margin:0 0 8px}
.hero h1{font-size:2.6rem; line-height:1.03; margin:0 0 14px; font-weight:800}
.hero-desc{color:var(--muted); margin-bottom:18px; font-size:1.05rem}
.hero-visual img{width:100%; height:320px; object-fit:cover; border-radius:var(--radius); box-shadow:var(--shadow)}
.hero-actions{display:flex; gap:12px}

/* Buttons */
.btn{display:inline-block; padding:10px 18px; border-radius:999px; text-decoration:none; font-weight:700}
.btn-outline{background:transparent; border:2px solid rgba(192,24,116,0.08); color:var(--brand)}
.btn-primary{background:linear-gradient(90deg,var(--brand),#ff79b0); color:#fff; box-shadow:0 10px 30px rgba(192,24,116,0.08)}

/* Sections general */
.section{padding:64px 0}
.section-title{text-align:center; color:var(--brand); font-size:1.6rem; font-weight:700; margin-bottom:34px}

/* SERVICES */
/* --- Services Section --- */
.services-section {
  padding: 80px 20px;
  background-color: #fafafa;
  text-align: center;
}

.services-section .section-title {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color:  #b68c10;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.service-content {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
}

.service-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-box:hover .service-content {
  opacity: 1;
}

.service-box:hover img {
  filter: blur(3px) brightness(0.7);
}

/* Highlighted service */
.service-card.highlight{background:var(--brand); color:#fff; border:2px solid var(--brand); display:flex; align-items:center; justify-content:center}
.service-card.highlight .highlight-text{padding:30px 18px; font-style:italic}
.service-card.highlight h3{color:#fff}

/* === ACHIEVEMENTS SECTION === */
/* === FINAL FIX — ALIGN ACHIEVEMENT BOXES INTO 4 + 4 === */
.achievements-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.achievements-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important; /* 4 per row */
  gap: 30px !important;
  text-align: center;
  justify-items: center;
  align-items: stretch;
}

.achievement-box {
  width: 100%;
  max-width: 260px; /* keeps all boxes equal width */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .achievements-grid {
    grid-template-columns: 1fr !important;
  }
}


/* DEALS */
.deals-section{background:var(--card)}
.deals-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px}
.deal-card{background:var(--card); border-radius:10px; border:1px solid #eee; overflow:hidden; transition:all .25s; display:flex; flex-direction:column}
.deal-media{height:160px; overflow:hidden}
.deal-media img{width:100%; height:100%; object-fit:cover; display:block}
.deal-body{padding:20px; flex:1}
.deal-body h3{color:var(--brand); margin:0 0 8px}
.deal-body p{color:var(--muted); margin-bottom:12px}
.deal-footer{color:var(--muted); font-size:0.92rem}
.deal-card.highlight{border:2px solid var(--brand); box-shadow:var(--shadow)}
.deal-card:hover{transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--brand)}
.deals-logos{display:flex; gap:18px; justify-content:center; flex-wrap:wrap; margin-top:26px}
.deals-logos img{height:46px; object-fit:contain; filter:grayscale(.25); transition:all .2s}
.deals-logos img:hover{filter:none; transform:scale(1.03)}

/* TESTIMONIALS */
.testimonials-section{background:var(--bg)}
.testimonial-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px}
.testimonial{background:var(--card); border-radius:10px; padding:14px; text-align:center; border:1px solid #eee}
.thumb{position:relative; height:160px; overflow:hidden; border-radius:8px}
.thumb img{width:100%; height:100%; object-fit:cover}
.thumb .play{position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; font-size:28px; background:linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.3))}

/* CONTACT */
.contact-section{background:var(--card)}
.contact-inner{display:grid; grid-template-columns:1fr 420px; gap:30px; align-items:start}
.contact-card{background:var(--card); border-radius:10px; padding:22px; border:1px solid #eee; box-shadow:0 6px 18px rgba(16,24,40,0.03)}
.contact-card h3{margin:0 0 12px}
.contact-card input, .contact-card textarea{width:100%; padding:12px; margin-bottom:12px; border-radius:8px; border:1px solid #e5e7eb}
.map-card iframe{width:100%; height:100%; min-height:320px; border-radius:8px; border:0}

/* FOOTER */
.footer{background:#0f1724; color:#ddd; padding:24px 0; text-align:center}

/* ANIMATIONS - fade on scroll */
.section{opacity:0; transform:translateY(28px); transition:all .8s cubic-bezier(.2,.9,.2,1)}
.section.visible{opacity:1; transform:translateY(0)}


@keyframes slideRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}

@keyframes slideLeft {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(-120%); opacity: 0; }
}



/* RESPONSIVE */
@media (max-width:1100px){
  .hero-inner{grid-template-columns:1fr 360px}
  .contact-inner{grid-template-columns:1fr}
}
@media (max-width:820px){
  .hero-visual img{height:220px}
  .menu{display:none}
  .hamburger{display:inline-block}
  .menu.show{display:flex; flex-direction:column; position:absolute; right:12px; top:62px; background:#fff; padding:16px; box-shadow:var(--shadow)}
  .hero h1{font-size:1.8rem}
  .services-grid{grid-template-columns:repeat(auto-fit,minmax(200px,1fr))}
  .achievements-grid{grid-template-columns:repeat(auto-fit,minmax(150px,1fr))}
}
/* FOOTER */
.footer {
  background: #0b0b0b;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-column h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
  border-bottom: 2px solid #b68c10;
  display: inline-block;
  padding-bottom: 6px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.social-links a {
  display: inline-block;
  margin-right: 12px;
  color: #bbb;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color:  #b68c10;
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 5px;
}

.footer-links a:hover {
  color: #fff;
}

.footer p {
  font-size: 0.85rem;
  color: #aaa;
}
/* Fix nav alignment after adding icons */
.menu a i {
  font-size: 16px;
  margin-right: 6px;
  display: inline-block;
}

/* Ensure navigation stays horizontal on desktop */
@media (min-width: 993px) {
  .menu {
    flex-direction: row !important;
  }
}

/* Only vertical on mobile menu — not desktop */
.mobile-menu ul li a i {
  margin-right: 10px;
}
/* Slightly shift navigation to the left */


.nav {
  margin-right: 0;
}



/* Prevent nav items from breaking into two lines */
.menu a {
  white-space: nowrap;
}
/* Slightly reduce text size only on tablets */
@media (max-width: 1200px) {
  .menu a {
    font-size: 0.95rem;
  }
}


@media (max-width: 992px) {
  .logo-area {
    margin-right: 0; /* reset on mobile */
  }

  .header-logo {
    height: 60px;
  }

  .logo-text h1 {
    font-size: 1.3rem;
  }
}



/* Active menu link (while scrolling) */
.menu a.active {
  color: #d4a017 !important;
}

.menu a.active::after {
  width: 100% !important;
}


/* Elegant menu spacing refinement */
.menu a {
  padding: 10px 18px;
  letter-spacing: .3px;
}

.menu {
  gap: 10px; /* reduce gap between each menu item */
}

.menu a {
  padding: 6px 12px; /* reduce internal padding */
  letter-spacing: 0;
}




/* Dropdown Container */
.menu .dropdown {
  position: relative;
}

/* Hide submenu initially */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 38px;
  left: 0;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 8px 0;
  border-radius: 6px;
  min-width: 220px;
  z-index: 1000;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown Items */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #111;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: #faf7e8;
  color: #b68c10;
}






.office-location-box {
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid rgba(212,160,23,0.25);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  max-width: 500px;
  font-family: 'Inter', sans-serif;
}

.location-pin {
  font-size: 28px;
  line-height: 1;
  color: #d4a017;
}

.location-text {
  font-size: 15px;
  line-height: 1.45;
  color: #2b2b2b;
}




/* ===== HERO SECTION (Corporate DAM Capital Style) ===== */
.hero-section {
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-text-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-left: 5px solid #b68c10;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  border-bottom: 2px solid #d4a017;
  display: inline-block;
  padding-bottom: 5px;
}

.hero-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.hero-image-box {
  text-align: center;
}

.hero-round-image {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 3px solid rgba(212, 160, 23, 0.3);
  transition: transform 0.4s ease;
}

.hero-round-image:hover {
  transform: scale(1.03);
}

/* Responsive Layout */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text-box {
    text-align: left;
    padding: 30px;
  }
  .hero-round-image {
    width: 300px;
    height: 300px;
  }
}



/* ====== HERO SECTION (DAM Capital Style) ====== */
.hero-section {
  position: relative;
  background: #f9fafc;
  padding: 100px 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Faint skyline/graph watermark effect */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/graphy.png') repeat;
  opacity: 0.08;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-left .hero-card {
  background: #fff;
  padding: 40px 45px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  border-left: 6px solid #b68c10;
}

.hero-left h1 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
}

.hero-left .highlight {
  color: #b68c10;
  border-bottom: 3px solid #b68c10;
  padding-bottom: 3px;
}

.hero-left p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 14px;
}

.hero-right {
  text-align: center;
}

.circle-image {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(182, 140, 16, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.circle-image:hover {
  transform: scale(1.03);
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }
  .hero-left .hero-card {
    padding: 30px;
  }
  .circle-image {
    width: 300px;
    height: 300px;
  }
}



/* ====== HERO SECTION — DAM Capital Full Layout ====== */
.hero-dam {
  background: #f7f8fa;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
}

.hero-dam-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  max-width: 1250px;
  margin: 0 auto;
  gap: 60px;
  padding: 0 40px;
}

/* LEFT CARD */
.hero-dam-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 45px;
  border-left: 6px solid #b68c10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.hero-dam-card h1 {
  font-size: 2.2rem;
  color: #1b1b1b;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-dam-card strong {
  color: #b68c10;
  border-bottom: 3px solid #b68c10;
  padding-bottom: 2px;
}

.hero-dam-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* RIGHT SIDE */
.hero-dam-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.hero-dam-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(182, 140, 16, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.hero-dam-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dam-circle:hover {
  transform: scale(1.03);
}

/* Investment Banking Text */
.hero-dam-text {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.hero-dam-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 15px;
}

.hero-dam-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-dam-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-dam-card {
    padding: 30px;
    text-align: left;
  }

  .hero-dam-inner {
    align-items: center;
  }

  .hero-dam-circle {
    width: 300px;
    height: 300px;
  }

  .hero-dam-text {
    text-align: left;
    padding: 25px;
  }



  
}






/* === Professional Contact Section Redesign === */
.contact-section {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(14, 76, 146, 0.05));
  padding: 80px 0;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

/* Left card – Contact Form */
.contact-card {
  flex: 1 1 480px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0e4c92;
  margin-bottom: 25px;
  text-align: center;
}

.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #0e4c92;
  outline: none;
  box-shadow: 0 0 6px rgba(14, 76, 146, 0.2);
}

.contact-card button {
  background: linear-gradient(90deg, #d4a017, #0e4c92);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-card button:hover {
  opacity: 0.9;
}

/* Right card – Map + Office Info */
.map-card {
  flex: 1 1 480px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.map-card iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 16px 16px 0 0;
}

.office-location-box {
  padding: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.location-pin {
  font-size: 1.5rem;
  color: #d4a017;
}

.location-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-section .container {
    flex-direction: column;
    padding: 0 20px;
  }
}





/* ===== NAVIGATION ALIGNED MORE LEFT ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 18px;
  margin-left: -80px; /* moved further left (was -40px) */
  transition: all 0.3s ease-in-out;
}

.menu {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.menu a:hover {
  color: var(--brand);
  background: rgba(212, 160, 23, 0.08);
  transform: translateX(-2px) scale(1.08);
}

/* Investor Login / Contact Button */
.contact-pill {
  background: var(--brand);
  color: white !important;
  padding: 8px 20px;
  border-radius: 999px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.contact-pill:hover {
  background: #b68c10;
  transform: scale(1.08);
}

/* Keep navbar visible and clean layout */
.header-container {
  overflow-x: visible;
  flex-wrap: nowrap;
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}




/* ===== FINAL HEADER + NAV ALIGNMENT FIX ===== */
.header-container {
  width: 100%;
  padding: 4px 10px; /* reduce right padding to move header left */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
  transform: translateX(-40px); /* move the entire header slightly left */
}

/* Adjust navigation placement */
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 18px;
  margin-left: -20px; /* fine-tune nav alignment */
  transition: all 0.3s ease-in-out;
}

/* Menu links smooth interaction */
.menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.menu a:hover {
  color: var(--brand);
  background: rgba(212, 160, 23, 0.08);
  transform: translateY(-1px) scale(1.06);
}

/* Investor Login button */
.contact-pill {
  background: var(--brand);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.contact-pill:hover {
  background: #b68c10;
  transform: scale(1.08);
}

/* Ensure responsive behavior remains intact */
@media (max-width: 992px) {
  .header-container {
    transform: none;
    padding: 4px 16px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}





/* ===== SMOOTH NAVIGATION INTERACTION (FINAL FIX) ===== */

/* Make hover, focus, and active transitions smoother */
.menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: 
    color 0.25s ease-in-out,
    background-color 0.25s ease-in-out,
    transform 0.25s ease-in-out,
    box-shadow 0.25s ease-in-out;
}

/* Smooth hover and active feedback */
.menu a:hover,
.menu a:focus {
  color: var(--brand);
  background: rgba(212, 160, 23, 0.08);
  transform: scale(1.05);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

/* Keep hover smooth on mouse leave */
.menu a {
  will-change: transform, color, background, box-shadow;
}

/* Contact button smooth animation */
.contact-pill {
  background: var(--brand);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s ease-in-out, transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.contact-pill:hover,
.contact-pill:focus {
  background: #b68c10;
  transform: scale(1.08);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Improve smoothness for header */
.header-container {
  transition: all 0.4s ease-in-out;
}

/* Slight scroll animation on hover (optional subtle polish) */
.nav {
  transition: all 0.3s ease-in-out;
}

/* Prevent layout shift while hovering */
.menu a,
.contact-pill {
  transform-origin: center;
}

/* =====✨ Enhanced Professional Navigation Animations ===== */

/* Smooth underline animation on hover */
.menu a {
  position: relative;
  overflow: hidden;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: var(--brand);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.menu a:hover::after {
  width: 70%;
}

/* Subtle glow + slide-up effect */
.menu a {
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.menu a:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 10px rgba(212, 160, 23, 0.15);
}

/* Dropdown fade & slide animation */
.dropdown-menu {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.35s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Floating Investor Login Button */
.contact-pill {
  background: linear-gradient(90deg, #d4a017, #0e4c92);
  transition: all 0.35s ease;
}

.contact-pill:hover {
  background: linear-gradient(90deg, #0e4c92, #d4a017);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Fade-down animation for header appearance */
.header {
  animation: fadeDown 0.8s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slight hover brightness on logo */
.header-logo {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

/* === FINAL HEADER LOGO VISIBILITY FIX === */
.header-container {
  transform: none !important; /* reset shift */
  padding-left: 10px !important; /* add little breathing space */
}

.nav {
  margin-left: 0 !important; /* reset left shift */
}


/* ===== Enhanced Hero Section (White Background) ===== */
.clean-hero {
  background: #ffffff; /* keep your clean corporate white */
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.clean-hero .hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  padding: 0 40px;
}

/* Text Card */
.hero-card {
  background: #ffffff;
  border-left: 6px solid #b68c10;
  border-radius: 14px;
  padding: 45px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-card h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
}

.highlight-text {
  color: #b68c10;
  position: relative;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(212, 160, 23, 0.25);
  z-index: -1;
  animation: highlight-slide 2s infinite alternate ease-in-out;
}

@keyframes highlight-slide {
  from {
    width: 20%;
    opacity: 0.6;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

.hero-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn-primary {
  background: linear-gradient(90deg, #d4a017, #b68c10);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.3);
}

.btn-outline {
  border: 2px solid #b68c10;
  color: #b68c10;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #b68c10;
  color: white;
}

/* Circle Image */
.circle-image {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(212, 160, 23, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.circle-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Stats */
.floating-stats {
  position: absolute;
  bottom: 40px;
  right: 60px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  animation: floatUp 3s ease-in-out infinite;
}

.floating-stats i {
  font-size: 1.6rem;
  color: #b68c10;
}

.floating-stats p {
  font-size: 0.9rem;
  color: #333;
  margin-top: 5px;
}

/* Floating animation */
@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Scroll Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease forwards;
}

.animate-fade-in {
  opacity: 0;
  transform: scale(0.9);
  animation: fadeIn 1.3s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hero Float Motion */
.hero-float {
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .clean-hero .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }

  .circle-image {
    width: 320px;
    height: 320px;
  }

  .floating-stats {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 20px;
  }
}




/* Scroll/Entry Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease forwards;
}

.fade-in {
  opacity: 0;
  transform: scale(0.9);
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }
  .circle-image {
    width: 300px;
    height: 300px;
  }
}

/* =====✨ DARKER GOLDEN SHIMMER + FLOATING PARTICLES (Visible but Elegant) ===== */

/* Hero background animation with darker contrast */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(212, 160, 23, 0.20), transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(14, 76, 146, 0.15), transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,0.05), transparent 70%);
  animation: darkGlow 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes darkGlow {
  0% {
    transform: translate(-40px, -20px) scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: translate(40px, 30px) scale(1);
    opacity: 1;
  }
}

/* Floating particles with more visibility */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.25) 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(212, 160, 23, 0.25) 2px, transparent 3px),
    radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.18) 2px, transparent 4px),
    radial-gradient(circle at 80% 30%, rgba(212, 160, 23, 0.18) 3px, transparent 4px);
  background-size: 250px 250px;
  animation: brightParticles 18s linear infinite alternate;
  z-index: 1;
}

@keyframes brightParticles {
  0% {
    background-position: 0 0, 120px 200px, 250px 350px, 400px 100px;
  }
  100% {
    background-position: 250px 350px, 0px 0px, 100px 200px, 200px 100px;
  }
}

/* Keep hero content on top */
.hero-container {
  position: relative;
  z-index: 3;
}

/* Slight floating effect for hero image */
.circle-image {
  animation: floatHeroImage 6s ease-in-out infinite;
}

@keyframes floatHeroImage {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Fade-in animation for hero text */
.hero-card {
  animation: fadeHero 1.5s ease-in-out both;
}

@keyframes fadeHero {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== LIGHTER HERO TEXT FOR ELEGANT CORPORATE LOOK ===== */

/* Make main hero heading text lighter */
.hero-card h1 {
  color: #3f3f3f; /* lighter gray tone */
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1.2;
}

/* Soften the gold highlight text */
.highlight-light {
  color: #e9c35b; /* softer gold tone */
  text-shadow: 0 0 8px rgba(212, 160, 23, 0.25);
  border-bottom: 2px solid rgba(212, 160, 23, 0.3);
  transition: all 0.3s ease;
}

.highlight-light:hover {
  color: #d4a017;
  text-shadow: 0 0 12px rgba(212, 160, 23, 0.45);
}

/* Light gray for paragraph emphasis */
.soft-text {
  color: #4b4b4b; /* soft neutral tone */
}

/* Optional: make paragraphs slightly lighter too */
.hero-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

/* === ENHANCED ACHIEVEMENTS SECTION (Modern Animated Style) === */
.achievements-section {
  background: linear-gradient(180deg, #ffffff, #faf7e8);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.achievements-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(212,160,23,0.08), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(14,76,146,0.05), transparent 70%);
  animation: bgFlow 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes bgFlow {
  0% { transform: translate(-20px, -20px) scale(1); }
  100% { transform: translate(20px, 20px) scale(1.05); }
}

/* === FINAL ADJUSTMENTS: BIGGER BOXES + SMALLER GAPS === */
#achievements .achievements-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important; /* smaller gaps */
    justify-items: center;
    align-items: center;
}

/* Larger achievement boxes */
#achievements .achievement-box {
    max-width: 300px !important;   /* was 240–260px, now bigger */
    width: 100% !important;
    padding: 45px 30px !important; /* increase padding (height) */
    transform: scale(1.03);
}

/* === FIX BORDER VISIBILITY FOR ACHIEVEMENT BOXES === */
#achievements .achievement-box {
    border: 2px solid rgba(212,160,23,0.8) !important;  /* stronger visible gold border */
    background: #ffffff !important;                     /* remove gradient so border shows clearly */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important; /* softer shadow so border is not hidden */
}


.achievement-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212,160,23,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.achievement-box:hover::after {
  opacity: 1;
}

.achievement-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.achievement-box i {
  font-size: 3rem;
  color: #b68c10;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.achievement-box:hover i {
  transform: rotate(10deg) scale(1.2);
  color: #0e4c92;
}

.achievement-box h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 8px;
}

.achievement-box p {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}



/* Subtle floating animation on load */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.achievement-box {
  animation: fadeUp 1.2s ease forwards;
}

/* Responsive layout */
@media (max-width: 992px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .achievements-grid {
    grid-template-columns: 1fr !important;
  }
}



/* === COMPACT VERSION OF ACHIEVEMENTS BOXES === */
/* ===== MAKE ACHIEVEMENT BOXES PERFECT SQUARE ===== */
.achievement-box {
  width: 120px !important;
  height: 120px !important;
  max-width: none !important;
  padding: 8px !important;
  border-radius: 12px !important;

  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  overflow: hidden; /* ensures clean shape */
}

/* ICON inside square */
.achievement-box i {
  font-size: 45px !important;
  margin-bottom: 4px !important;
}

/* NUMBER inside square */
.achievement-box h3 {
  font-size: 1.45rem !important;
  margin-bottom: 3px !important;
}

/* DESCRIPTION inside square */
.achievement-box p {
  font-size: 1.35rem !important;
  line-height: 1 !important;
}





/* === ENHANCED LATEST DEALS SECTION (Modern & Professional Look) === */
.deals-section {
  background: linear-gradient(180deg, #ffffff, #faf7e8);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.deals-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,160,23,0.07), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(14,76,146,0.05), transparent 70%);
  animation: bgDrift 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes bgDrift {
  0% { transform: translate(-20px, -20px) scale(1); }
  100% { transform: translate(20px, 20px) scale(1.05); }
}

.deals-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.deal-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.25);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
}

.deal-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  border-color: rgba(14,76,146,0.3);
}

.deal-media {
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.deal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.deal-card:hover .deal-media img {
  transform: scale(1.1);
}

.deal-body {
  padding: 25px 20px;
  text-align: left;
  background: #fff;
}

.deal-body h3 {
  color: #0e4c92;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.deal-body p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.deal-body .deal-footer {
  color: #b68c10;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 10px;
  display: inline-block;
}

.deal-card.highlight {
  background: linear-gradient(180deg, #fff, #fffdf5);
  border: 1px solid rgba(212,160,23,0.4);
  box-shadow: 0 10px 35px rgba(212,160,23,0.15);
}

.deal-card.highlight h3 {
  color: #b68c10;
}

/* Floating tag for “Featured” deals */
.deal-card::before {
  content: "FEATURED";
  position: absolute;
  top: 15px;
  right: -45px;
  background: linear-gradient(90deg, #b68c10, #0e4c92);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 50px;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.deal-card.highlight::before {
  opacity: 1;
}

/* Smooth fade-in animation */
@keyframes fadeUpDeals {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.deal-card {
  animation: fadeUpDeals 1s ease forwards;
}



/* === PROFESSIONAL TESTIMONIALS SECTION (Same as Latest Deals) === */
.testimonials-section {
  background: linear-gradient(180deg, #ffffff, #faf7e8);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle animated background */
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,160,23,0.07), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(14,76,146,0.05), transparent 70%);
  animation: testiBgDrift 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes testiBgDrift {
  0% { transform: translate(-20px, -20px) scale(1); }
  100% { transform: translate(20px, 20px) scale(1.05); }
}

/* Testimonials grid (same structure as deals-grid) */
.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.25);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  border-color: rgba(14,76,146,0.3);
}

/* Testimonial Image */
.testimonial-media {
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-media img {
  transform: scale(1.08);
}

/* Testimonial Content */
.testimonial-body {
  padding: 25px 22px;
  background: #fff;
}

.testimonial-body h3 {
  color: #0e4c92;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.testimonial-body .position {
  font-size: 0.95rem;
  color: #b68c10;
  margin-bottom: 10px;
  font-weight: 600;
}

.testimonial-body p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Star Rating */
.star-rating {
  color: #f3b818;
  font-size: 1.1rem;
  margin-top: 8px;
}

/* Highlighted Testimonial */
.testimonial-card.highlight {
  background: linear-gradient(180deg, #fff, #fffdf5);
  border: 1px solid rgba(212,160,23,0.4);
  box-shadow: 0 10px 35px rgba(212,160,23,0.15);
}

.testimonial-card.highlight h3 {
  color: #b68c10;
}

/* Floating “Top Review” tag */
.testimonial-card::before {
  content: "TOP REVIEW";
  position: absolute;
  top: 15px;
  right: -45px;
  background: linear-gradient(90deg, #b68c10, #0e4c92);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 50px;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card.highlight::before {
  opacity: 1;
}

/* Smooth fade-up animation */
@keyframes fadeUpTestimonials {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  animation: fadeUpTestimonials 1s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .testimonial-media {
    height: 200px;
  }
  .testimonial-body {
    padding: 18px 16px;
  }
}




/* === TESTIMONIALS SECTION — EXACT SAME BOX SIZE AS LATEST DEALS === */
.testimonials-section {
  background: linear-gradient(180deg, #ffffff, #faf7e8);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Soft animated background like deals */
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(212,160,23,0.07), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(14,76,146,0.05), transparent 70%);
  animation: testiBgFlow 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes testiBgFlow {
  0% { transform: translate(-20px, -20px) scale(1); }
  100% { transform: translate(20px, 20px) scale(1.05); }
}

/* Grid layout same as deals-grid */
.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each testimonial box identical in size to deal cards */
.testimonial-card {
  background: var(--card);
  border-radius: 10px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 280px; /* same width as deal cards */
  min-height: 380px; /* ensures same height */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}

/* Top Image (client photo) */
.testimonial-media {
  height: 160px; /* same as deal-media height */
  overflow: hidden;
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-media img {
  transform: scale(1.08);
}

/* Body (same spacing as deal-body) */
.testimonial-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-body h3 {
  color: #0e4c92;
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 700;
}

.testimonial-body .position {
  color: #b68c10;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-body p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 10px;
}

/* Star rating (bottom footer area) */
.star-rating {
  color: #f3b818;
  font-size: 1rem;
  margin-top: auto;
}

/* Highlighted / featured testimonial */
.testimonial-card.highlight {
  border: 2px solid var(--brand);
  box-shadow: 0 8px 25px rgba(212,160,23,0.15);
}

.testimonial-card.highlight h3 {
  color: #b68c10;
}

/* Match fade animation from deals */
@keyframes fadeUpTestimonials {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  animation: fadeUpTestimonials 1s ease forwards;
}

/* Responsive adjustments same as deals */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 600px) {
  .testimonial-media {
    height: 140px;
  }
  .testimonial-body {
    padding: 16px;
  }
}



/* === INCREASE TESTIMONIAL BOX HEIGHT (same style as deals) === */
.testimonial-card {
  min-height: 460px !important;  /* increased from ~380px to 460px */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

/* Keep image section height same, only body area taller */
.testimonial-media {
  height: 180px !important; /* slightly taller image section */
  overflow: hidden;
}

.testimonial-body {
  padding: 22px !important;
  flex: 1;
}

.testimonial-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 14px;
}

/* Slightly bigger footer for balance */
.testimonial-footer {
  font-size: 0.9rem;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .testimonial-card {
    min-height: 420px !important;
  }
  .testimonial-media {
    height: 160px !important;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    min-height: 400px !important;
  }
  .testimonial-media {
    height: 140px !important;
  }
}


/* ===== Team Banner Section (same as NAV Capital style) ===== */
.team-banner {
  position: relative;
  width: 100%;
  height: 320px;
  background: url('Banner.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.team-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 76, 146, 0.75);
  z-index: 1;
}

.team-banner-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.team-banner-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.team-banner-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
}



/* === Hero Content Box Animation on Scroll === */
.hero-card {
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* When visible (JS will add this class) */
.hero-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional glowing border effect */
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid rgba(212, 160, 23, 0.4);
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-card.visible::after {
  opacity: 1;
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  from { box-shadow: 0 0 5px rgba(212, 160, 23, 0.3); }
  to { box-shadow: 0 0 20px rgba(212, 160, 23, 0.7); }
}

/* Gentle gold shimmer on brand */
@keyframes goldGlow {
  0% { text-shadow: 0 0 6px rgba(212,160,23,0.3); }
  100% { text-shadow: 0 0 14px rgba(212,160,23,0.8); }
}



/* === Continuous Typing + Fade-In + Slide-Up Animation === */

.typing-container {
  display: inline-block;
  position: relative;
  font-size: 2.4rem;
  font-weight: 800;
  color: #1f2937;
  overflow: hidden;
  white-space: nowrap;
}

.typing-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  border-right: 3px solid #b68c10;
  animation: typing 3.5s steps(32, end) forwards,
             fadeSlide 1s ease-out 3.5s forwards,
             hideText 0s 8s forwards;
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 1.3em;
  background: #b68c10;
  margin-left: 4px;
  animation: blink 0.8s step-end infinite;
  vertical-align: bottom;
}

/* Highlight Glow */
.typing-text .highlight {
  color: #b68c10;
  animation: goldGlow 3s ease-in-out infinite alternate;
}

/* Keyframes */
@keyframes typing {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goldGlow {
  0% { text-shadow: 0 0 6px rgba(212,160,23,0.3); }
  100% { text-shadow: 0 0 14px rgba(212,160,23,0.8); }
}

/* Hide text before restart */
@keyframes hideText {
  to {
    width: 0;
    opacity: 0;
  }
}


/* === Continuous Smooth Typing Animation (Professional) === */
.typing-container {
  display: inline-block;
  position: relative;
  font-size: 2.4rem;
  font-weight: 800;
  color: #1f2937;
  overflow: hidden;
  white-space: nowrap;
}

/* Typing text animation with fade-in + slide-up */
.typing-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  border-right: 3px solid #b68c10;
  animation: typing 4s steps(32, end) forwards,
             fadeSlide 1s ease-out 4s forwards,
             hold 1s 5s forwards,
             fadeOut 1s ease-in 6s forwards;
}

/* Blinking cursor */
.cursor {
  display: inline-block;
  width: 3px;
  height: 1.3em;
  background: #b68c10;
  margin-left: 4px;
  animation: blink 0.8s step-end infinite;
  vertical-align: bottom;
}

/* Highlight glow on "IRA Consulting" */
.typing-text .highlight {
  color: #b68c10;
  animation: goldGlow 4s ease-in-out infinite alternate;
}

/* Keyframes */
@keyframes typing {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hold {
  from { opacity: 1; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-8px); }
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes goldGlow {
  0% { text-shadow: 0 0 6px rgba(212,160,23,0.3); }
  100% { text-shadow: 0 0 16px rgba(212,160,23,0.8); }
}


/* === Continuous Smooth Typing Loop (No Pause Version) === */
.typing-container {
  display: inline-block;
  position: relative;
  font-size: 2.4rem;
  font-weight: 800;
  color: #1f2937;
  overflow: hidden;
  white-space: nowrap;
}

.typing-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  border-right: 3px solid #b68c10;
  animation: typing 3.5s steps(32, end) forwards,
             fadeSlide 0.6s ease-out 3.5s forwards,
             fadeOut 0.8s ease-in 4.2s forwards;
}

/* Cursor */
.cursor {
  display: inline-block;
  width: 3px;
  height: 1.3em;
  background: #b68c10;
  margin-left: 4px;
  animation: blink 0.8s step-end infinite;
  vertical-align: bottom;
}

/* Highlight glow */
.typing-text .highlight {
  color: #b68c10;
  animation: goldGlow 3s ease-in-out infinite alternate;
}

/* --- Keyframes --- */
@keyframes typing {
  from { width: 0; opacity: 1; }
  to { width: 100%; opacity: 1; }
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-8px); width: 0; }
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes goldGlow {
  0% { text-shadow: 0 0 6px rgba(212,160,23,0.3); }
  100% { text-shadow: 0 0 16px rgba(212,160,23,0.8); }
}


/* === Continuous Smooth Typing + Floating Effect (Letters Stay Visible) === */
.typing-container {
  display: inline-block;
  position: relative;
  font-size: 2.4rem;
  font-weight: 800;
  color: #1f2937;
  overflow: hidden;
  white-space: nowrap;
}

/* Typing + Subtle Floating Motion */
.typing-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  border-right: 3px solid #b68c10;
  animation: typing 3.5s steps(32, end) forwards,
             fadeSlide 1s ease-out 3.5s forwards,
             floating 4s ease-in-out infinite 4.5s;
}

/* Cursor */
.cursor {
  display: inline-block;
  width: 3px;
  height: 1.3em;
  background: #b68c10;
  margin-left: 4px;
  animation: blink 0.8s step-end infinite;
  vertical-align: bottom;
}

/* Highlight glow */
.typing-text .highlight {
  color: #b68c10;
  animation: goldGlow 3s ease-in-out infinite alternate;
}

/* --- Keyframes --- */
@keyframes typing {
  from { width: 0; opacity: 1; }
  to { width: 100%; opacity: 1; }
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Gentle floating movement */
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Blinking cursor */
@keyframes blink {
  50% { opacity: 0; }
}

/* Gold shimmer on IRA Consulting */
@keyframes goldGlow {
  0% { text-shadow: 0 0 6px rgba(212,160,23,0.3); }
  100% { text-shadow: 0 0 16px rgba(212,160,23,0.8); }
}



/* ===== MATCH TESTIMONIALS WITH LATEST DEALS ===== */
.testimonials-section {
  background: var(--bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial {
  background: var(--card);
  border-radius: 10px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}

.testimonial .thumb {
  height: 160px;
  overflow: hidden;
}

.testimonial .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.3));
}

.testimonial p {
  padding: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
  text-align: center;
  margin: 0;
}



/* ===== GENERAL ===== */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  height: 100%;
  width: 100%;
}


/* Button Style */
.btn-primary {
  background: linear-gradient(90deg, #d4a017, #0e4c92);
  color: white;
  text-decoration: none;
  padding: 14px 38px;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1.5s ease;
}

.btn-primary:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, #0e4c92, #d4a017);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Fade animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #fafafa;
  text-align: center;
  padding: 60px 20px;
}

.contact-container h2 {
  color: #0e4c92;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-container p {
  color: #333;
  margin: 5px 0;
  font-size: 1rem;
}


/* ===== GENERAL ===== */
html {
  scroll-behavior: smooth;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  height: 100%;
  width: 100%;
}

/* Button Style */
.btn-primary {
  background: linear-gradient(90deg, #d4a017, #0e4c92);
  color: white;
  text-decoration: none;
  padding: 14px 38px;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1.5s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, #0e4c92, #d4a017);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Fade animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #fafafa;
  text-align: center;
  padding: 80px 20px;
}

.contact-container {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-container h2 {
  color: #0e4c92;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.contact-container input:focus,
.contact-container textarea:focus {
  border-color: #0e4c92;
  box-shadow: 0 0 6px rgba(14, 76, 146, 0.2);
  outline: none;
}

/* ===== FOOTER ===== */
.footer {
  background: #0b0b0b;
  color: #ddd;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}



/* === Fine-tune Navbar Alignment === */
.nav {
  transform: translateX(-25px); /* adjust this value as needed */
  transition: transform 0.3s ease;
}


@media (max-width: 768px) {
  html, body {
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
  }
}



/* Prevent breaking the first line */
.nowrap {
  white-space: nowrap;
}


.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}


/* ===== Global Off-White Background Setup ===== */
body {
  background-color: #f4f7f9; /* soft off-white shade */
  color: #222;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}


.hero-section,
.services-section,
.footer {
  background-color: #f4f8f9;
}


/* ===== Consistent Footer (Same as Blogs Page) ===== */
.footer {
  background: #111; /* same dark tone */
  color: #fff;
  padding: 60px 0 30px;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3 {
  color: #d4a017;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  color: #ccc;
  font-size: 0.97rem;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #b68c10;
}

.social-links a {
  color: #fff;
  margin-right: 15px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #b68c10;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 45px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
}

.footer-bottom .footer-links {
  margin-bottom: 8px;
}

.footer-bottom .footer-links a {
  color: #b68c10;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
  color: #fff;
}


/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(135deg, #0e4c92, #083b72);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/graphy.png');
  opacity: 0.15;
  z-index: 0;
}

.newsletter-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-container p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 12px 16px;
  border-radius: 50px;
  border: none;
  width: 300px;
  max-width: 80%;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  background-color: #f5b301;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #d4a017;
  transform: scale(1.05);
}


/* =====✨ ENHANCED NEWSLETTER SECTION ===== */
.newsletter-section {
  position: relative;
  background: linear-gradient(135deg, #0b1b3f, #0e4c92);
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Glowing Animated Background */
.newsletter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(212,160,23,0.15), transparent 70%),
              radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05), transparent 60%);
  animation: glowMove 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes glowMove {
  0% { transform: translate(-30px, -30px) scale(1.1); }
  100% { transform: translate(30px, 40px) scale(1); }
}

/* Glassmorphism Card Container */
.newsletter-container {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border-radius: 20px;
  max-width: 850px;
  margin: 0 auto;
  padding: 50px 40px;
  animation: fadeUp 1.3s ease;
}

/* Title and text */
.newsletter-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.newsletter-title span {
  color: #d4a017;
  text-shadow: 0 0 10px rgba(212,160,23,0.6);
}

.newsletter-text {
  font-size: 1.1rem;
  color: #eaeaea;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Form Styling */
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.newsletter-form input {
  padding: 14px 20px;
  width: 320px;
  max-width: 80%;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #111;
  background: #fff;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  box-shadow: 0 0 10px rgba(212,160,23,0.6);
}

/* Subscribe Button */
.newsletter-form button {
  background: linear-gradient(90deg, #d4a017, #0e4c92);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease;
}

.newsletter-form button:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, #0e4c92, #d4a017);
  box-shadow: 0 5px 18px rgba(0,0,0,0.2);
}

/* Animation Effects */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Layout */
@media (max-width: 768px) {
  .newsletter-container {
    padding: 40px 20px;
  }

  .newsletter-title {
    font-size: 1.8rem;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
    justify-content: center;
  }
}

/* ===== COMPACT GOLDEN NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(135deg, #0b1b3f, #0e4c92);
  padding: 60px 20px;  /* reduced height */
  color: #fff;
  text-align: center;
}

.newsletter-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 750px;
  margin: 0 auto;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.newsletter-title {
  font-size: 1.9rem; /* smaller title */
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-title span {
  color: #d4a017;
}

.newsletter-text {
  font-size: 1rem;
  color: #eaeaea;
  margin-bottom: 25px; /* less gap */
  line-height: 1.6;
}

/* Form layout */
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 12px 18px;
  width: 280px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: #fff;
  color: #111;
  transition: box-shadow 0.3s ease;
}

.newsletter-form input:focus {
  box-shadow: 0 0 8px rgba(212, 160, 23, 0.6);
}

/* Golden Subscribe button */
.newsletter-form button {
  background-color: #d4a017; /* pure golden */
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #b68c10;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(212,160,23,0.4);
}

/* Thank-you message */
.form-message {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #f9d97d;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.form-message.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive layout */
@media (max-width: 768px) {
  .newsletter-container {
    padding: 30px 20px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}


/* ===== SUPER COMPACT GOLDEN NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, #0b1b3f, #0e4c92);
  padding: 35px 15px;  /* drastically reduced height */
  color: #fff;
  text-align: center;
}

.newsletter-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 25px 20px; /* smaller inner spacing */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.newsletter-title span {
  color: #d4a017;
}

/* --- FORM LAYOUT --- */
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 10px 16px;
  width: 260px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: #fff;
  color: #111;
  transition: box-shadow 0.3s ease;
}

.newsletter-form input:focus {
  box-shadow: 0 0 8px rgba(212, 160, 23, 0.6);
}

/* --- PURE GOLD SUBSCRIBE BUTTON --- */
.newsletter-form button {
  background-color: #d4a017; /* solid golden */
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #b68c10; /* darker golden hover */
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(212, 160, 23, 0.35);
}

/* --- THANK YOU MESSAGE --- */
.form-message {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #f9d97d;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-message.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    gap: 8px;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }


    /* ===== ULTRA LIGHT & FAST NEWSLETTER SECTION ===== */

.newsletter-section {
  background: #0e4c92;
  padding: 40px 15px;
  color: #fff;
  text-align: center;
}


.newsletter-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 25px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Title */
.newsletter-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.newsletter-title span {
  color: #d4a017;
}

/* Form */
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px 16px;
  width: 260px;
  border-radius: 25px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 1rem;
  background: #fff;
  color: #111;
  transition: all 0.25s ease;
}

.newsletter-form input:focus {
  border-color: #d4a017;
  box-shadow: 0 0 6px rgba(212, 160, 23, 0.4);
}

/* --- NEW GOLDEN OUTLINE BUTTON --- */
.newsletter-form button {
  background: transparent;
  border: 2px solid #d4a017;
  color: #d4a017;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #d4a017;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(212, 160, 23, 0.3);
}

/* Thank You Message */
.form-message {
  margin-top: 14px;
  font-size: 0.95rem;
  color: #f9d97d;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.form-message.visible {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}




/* Continuous right-to-left belt — override inline scroll / wrapping */
.industries-section { overflow: hidden !important; position: relative; }
.industries-wrapper {
  /* force single-line layout and hide native scrollbars */
  display: block !important;
  overflow: hidden !important;
  padding: 10px 15px !important; /* keep your padding (can be overridden) */
}

/* the moving rail that will contain two copies */
.marquee-rail {
  display: flex;
  gap: 16px;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

/* ensure each box keeps its inline style but is not wrapped */
.marquee-rail .industry-box {
  flex: 0 0 auto !important;
  display: inline-flex !important;
}

/* animation will be injected dynamically based on measured width */
.marquee-rail.animate {
  /* placeholder — real animation is added dynamically */
}

/* optional: make hovering not stop the belt — remove pause */
.industries-section:hover .marquee-rail { animation-play-state: running !important; }

/* responsive tweak if desired */
@media (max-width: 520px) {
  .marquee-rail { gap: 12px; }
  .marquee-rail .industry-box { padding: 8px 14px !important; font-size: 14px !important; }
}

/* --- Continuous horizontal movement for .industries-wrapper --- */
.industries-section {
  overflow: hidden !important;
  position: relative;
}

.industries-wrapper {
  /* force horizontal alignment even if inline styles say otherwise */
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  white-space: nowrap !important;
  width: max-content !important;
  animation: moveLeft 45s linear infinite;
}

/* keyframes for continuous belt */
@keyframes moveLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ===== CONTINUOUS MOVING INDUSTRY BELT ===== */
.industries-section {
  overflow: hidden !important;
  position: relative;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 30px 0;
}

/* force animation even if inline styles exist */
.industries-wrapper {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 20px !important;
  width: max-content !important;
  white-space: nowrap !important;
  overflow: visible !important; /* override inline scroll */
  animation: moveBelt 40s linear infinite !important;
}

.industry-box {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  color: #0e4c92;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.industry-box:hover {
  transform: scale(1.05);
}

/* keyframes for continuous right-to-left motion */
@keyframes moveBelt {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ✅ Continuous Moving Industry Boxes (Smooth Infinite Motion) */
.industries-section {
  overflow: hidden !important;
  position: relative;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 30px 0;
}

.industries-wrapper {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 20px !important;
  white-space: nowrap !important;
  width: max-content !important;
  animation: moveIndustries 40s linear infinite !important;
}

.industry-box {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  color: #0e4c92;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.industry-box:hover {
  transform: scale(1.05);
}

@keyframes moveIndustries {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



/* === Continuous Belt with No Blank Gap === */
.industries-section {
  overflow: hidden !important;
  position: relative;
}

.industries-wrapper {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 20px !important;
  width: max-content !important;
  white-space: nowrap !important;
  overflow: visible !important;
}

.industry-box {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  color: #0e4c92;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}

@keyframes industriesLoop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Section Fade-In on Scroll === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


body {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 768px) {
  * {
    transition: none !important; /* disables heavy animation on phones */
  }
}



/* ===== CONTINUOUS TYPING ANIMATION ===== */
.typing-container {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1f2937;
  font-family: 'Inter', sans-serif;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  border-right: 4px solid #b68c10;
  display: inline-block;
}

.cursor {
  display: inline-block;
  color: #b68c10;
  font-weight: bold;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50%, 100% { opacity: 0; }
}



/* ===== FORCE NAVY BLUE BACKGROUND BEHIND VIDEO & CONTENT ===== */
.mumbai-hero {
  background: #0a1a44 !important; /* strong navy blue */
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.mumbai-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0a1a44;
  z-index: -1;
}

.mumbai-hero .hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  color: white;
}

/* Left side content box */
.mumbai-hero .hero-left {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  color: #fff;
}

.mumbai-hero .hero-left h1,
.mumbai-hero .hero-left p {
  color: #fff;
}

/* Right video styling */
.mumbai-hero .video-mask {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  max-width: 500px;
}

.mumbai-hero video {
  width: 100%;
  height: auto;
  display: block;
}




/* ===== HERO VIDEO WIDTH ADJUSTMENT ===== */
.mumbai-hero .hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mumbai-hero .video-mask {
  width: 100%;
  max-width: 950px; /* Increase this number for wider video */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mumbai-hero .mumbai-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}



/* ===== FINAL FIX: Remove underline hover animation completely ===== */

/* Force-disable underline pseudo-element */
.menu a::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Modern clean hover effect (no underline) */
.menu a {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out !important;
}

.menu a:hover {
  color: #fff !important;
  background: linear-gradient(90deg, #b68c10, #0e4c92) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px) scale(1.05);
  text-shadow: none !important;
}

.menu a:active {
  transform: scale(0.97);
}

/* Ensure all ::after underline animations are fully disabled */
.menu a:hover::after,
.menu a::before {
  content: none !important;
  display: none !important;
}




/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(90deg, #0e4c92, #1a73e8);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.newsletter-container h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.newsletter-container p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #e0e0e0;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  width: 65%;
  max-width: 350px;
  font-size: 1rem;
}

.newsletter-form button {
  background: #ffcc00;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #ffd633;
}



.news-section {
  text-align: center;
  padding: 80px 10%;
  background-color: #f9fafc;
}

.news-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a2342;
  margin-bottom: 50px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.news-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.news-box img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.news-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Responsive layout */
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 900px) {
  #philosophy-home {
    padding: 60px 5% !important;
  }

  #philosophy-home > div {
    flex-direction: column !important;
    text-align: center !important;
  }

  #philosophy-home video {
    width: 100% !important;
    height: auto !important;
  }

  #philosophy-home div[style*='width: 700px'] {
    width: 90% !important;
    height: auto !important;
  }

  #philosophy-home h1 {
    font-size: 2rem !important;
  }
}



/* Know More Button in Services */
.service-btn {
  margin-top: 15px;
  padding: 10px 22px;
  background: linear-gradient(90deg, #d4a017, #0e4c92);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  transition: 0.3s ease;
}

.service-btn:hover {
  background: linear-gradient(90deg, #0e4c92, #d4a017);
  transform: scale(1.07);
}


/* Know More Button Under Services Box */
.service-box {
  padding-bottom: 20px;
  text-align: center;
}

.service-btn {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(90deg, #d4a017, #0e4c92);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.service-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, #0e4c92, #d4a017);
}


/* Force white Know More button */
.service-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 24px;
  background: #ffffff !important;
  color: #0e4c92 !important;
  border: 2px solid #0e4c92;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s;
}

.service-btn:hover {
  background: #0e4c92 !important;
  color: #ffffff !important;
  transform: scale(1.06);
}



/* FULL PAGE HERO */
.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;      /* FULL SCREEN */
  background-image: url("IMG_5624.JPG");  /* PUT YOUR IMAGE FILE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  color: white;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: white;
  color: black;
}


/* ===== Investment Banking Buttons ===== */
.ib-buttons-section {
  width: 100%;
  background: #f7f7f7;
  padding: 35px 0;
  display: flex;
  justify-content: center;
}

.ib-buttons-container {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.ib-btn {
  padding: 12px 30px;
  border: 1px solid #bfbfbf;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  background: white;
  transition: 0.3s ease;
}

.ib-btn:hover {
  border-color: #0e4c92;
  color: #0e4c92;
}

.ib-btn.active {
  border-color: #0e4c92;
  color: #0e4c92;
  font-weight: 600;
}


.contact-pill {
  text-decoration: none !important;
}




/* ===== Replace existing .ib-buttons-section and .ib-buttons-container rules with these ===== */

/* outer wrapper centers the content area (same pattern as your header .header-container / .leadership-section .container) */
.ib-buttons-section {
  width: 100%;
  display: flex;
  justify-content: center;   /* keeps the inner container centered on very wide screens */
  margin-top: 24px;
  box-sizing: border-box;
}

/* inner container matches header/content width and padding so buttons align with header items */
.ib-buttons-container {
  width: 100%;
  max-width: 1200px;       /* match your header/content container width */
  margin: 0 auto;
  padding: 0 24px;         /* match header left/right padding */
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* make items align the same way as header menu (left inside the container) */
  gap: 36px;               /* spacing between buttons - adjust value if you want slightly more/less */
  box-sizing: border-box;
}

/* button visual styling */
.ib-btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .18s ease, color .18s ease;
}

.ib-btn:hover,
.ib-btn.active {
  border-bottom-color: #0e4c92; /* or #000 depending on header underline color */
  color: #0e4c92;
}

/* responsive tweak: on small screens keep centered and wrap neatly */
@media (max-width: 720px) {
  .ib-buttons-container {
    justify-content: center;
    gap: 18px;
    padding: 0 14px;
  }
}


.tab-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.ib-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding-bottom: 6px;


  /* ===== NEWSLETTER SECTION (LEADERSHIP MATCH) ===== */
.newsletter-section {
  padding: 60px 0;
  text-align: center;
  background: transparent;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0e4c92;
  margin-bottom: 10px;
}

.newsletter-subtext {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 12px 22px;
  background: #0e4c92;
  color: #fff;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #09376d;
}



/* ===== Header/logo alignment fixes (applies globally) ===== */
.header {
  width: 100%;
  padding: 16px 0;
  background: linear-gradient(90deg, #fff, #fff8dc);
  border-bottom: 2px solid rgba(212, 160, 23, 0.3);
}

.header-container {
  width: 92%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Logo area: ensure perfect vertical centering with nav */
.logo-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Logo sizing - exact same as Philosophy page */
.header-logo {
  height: 64px;        /* tune this to match Philosophy exactly */
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform .2s ease, filter .2s ease;
}

/* If you need to target only Overview page (optional) */
.overview-page .header-logo {
  height: 64px; /* same size */
}

/* Nav spacing - keep items horizontally centered next to logo */
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

/* Make sure menu doesn't wrap */
.menu {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

/* Ensure the contact-pill stays aligned */
.contact-pill {
  margin-left: 8px;
}

/* Responsive tweak (same behavior as Philosophy page) */
@media (max-width: 992px) {
  .header-container { padding: 0 16px; }
  .header-logo { height: 56px; }
  .nav { display: none; }
  .hamburger { display: flex; }
}


/* Fix Overview page header alignment */
.header-container {
  width: 92%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 70px;
  object-fit: contain;
}

/* Make header logo same size as philosophy */
.header-logo {
  height: 70px !important;
  object-fit: contain;
}



/* ===== Exact Valuation layout override ===== */
.ib-content, .valuation-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box;
}

/* Title left aligned like screenshot */
.valuation-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 8px 0 18px;
  color: #111;
  text-align: left;
}

/* Paragraph styling */
.valuation-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 18px;
  max-width: 1100px;
}

/* three horizontal lines, visually aligned and centered under the paragraphs */
.valuation-lines {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin: 36px 0 14px;
  align-items: center;
  justify-items: center;
}
.valuation-lines .val-line {
  width: 90%;
  max-width: 360px;
  height: 3px;
  background: #333;
}

/* three equal columns under the lines */
.valuation-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
  margin-top: 10px;
  width: 100%;
}

.val-box {
  text-align: left;
  padding: 0 6px;
}
.val-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}
.val-box ul {
  padding-left: 18px;
  margin: 0;
}
.val-box ul li {
  margin-bottom: 8px;
  color: #444;
  font-size: 1rem;
}

/* Make sure these override any inline/other rules */
.valuation-inner, .valuation-title, .valuation-desc,
.valuation-lines .val-line, .valuation-boxes, .val-box {
  box-sizing: border-box !important;
}

/* Responsive: stack columns and full-width lines */
@media (max-width: 980px) {
  .valuation-lines .val-line { width: 100%; max-width: none; }
  .valuation-boxes { grid-template-columns: 1fr; gap: 20px; }
  .valuation-desc { font-size: 1rem; }
}



/* === TESTIMONIAL BOXES (6-GRID LIKE REFERENCE IMAGE) === */

.testimonial-grid.six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 30px;
}

.testimonial-box {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  padding: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

.testimonial-box:hover {
  transform: translateY(-5px);
}

.t-thumb {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: 8px;
}

.t-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-play {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 38px;
  opacity: 1;
}

.t-caption {
  text-align: center;
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #444;
  font-weight: 500;
}

/* Responsive */
@media(max-width: 900px){
  .testimonial-grid.six-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .testimonial-grid.six-grid {
    grid-template-columns: 1fr;
  }
}


.t-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}



/* ==== FORCE 3x3 TESTIMONIAL GRID (IMAGE + PLAY) ==== */

.testimonial-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* each card */
.testimonial {
  background: var(--card, #fff);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: left;
}

/* thumbnail */
.thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* center play overlay */
.play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  background: rgba(0,0,0,0.22);
}

/* caption under image */
.testimonial .muted.small {
  display: block;
  margin-top: 12px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* responsive rows */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }

  .thumb { height: 200px; }
}


.testimonial-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


/* ==== INCREASE TESTIMONIAL BOX SIZE + EQUAL HEIGHT ==== */

.testimonial-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 35px !important;
  align-items: stretch !important;
}

/* Bigger & equal height boxes */
.testimonial {
  background: #ffffff;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid #ddd;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  height: 460px;                /* ← INCREASED height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Increase thumbnail height */
.thumb {
  position: relative;
  height: 340px;                /* ← INCREASED height */
  overflow: hidden;
  border-radius: 10px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play icon stays same */
.play {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: #fff;
  background: rgba(0,0,0,0.25);
}

/* Caption text spacing */
.testimonial .muted.small {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
  .testimonial { height: auto; }
  .thumb { height: 220px; }
}




/* === BIG TESTIMONIAL CARDS (FULL SIZE, LIKE YOUR SAMPLE) === */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important; /* Always 3 per row */
  gap: 40px !important;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 20px;
}

/* Big box */
.testimonial {
  background: #ffffff;
  padding: 26px !important;
  border-radius: 16px !important;
  border: 1px solid #ccc;
  box-shadow: 0 8px 26px rgba(0,0,0,0.08);
  transition: .3s ease;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Big image */
.thumb {
  height: 300px !important;      /* Increased from 240 → 300 */
  border-radius: 14px !important;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bigger Play icon */
.thumb .play i {
  font-size: 52px !important; 
}

/* Larger name text */
.testimonial p {
  margin-top: 20px;
  font-size: 1.05rem !important;
  line-height: 1.55 !important;
}


/* === PREMIUM TESTIMONIAL SECTION (GLASS + ZOOM EFFECT) === */

#testimonials {
  background: linear-gradient(135deg, #ffffff, #faf6e9);
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  border: 1px solid rgba(210, 180, 75, 0.35);
  padding: 22px 22px 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all .35s ease;
}

.testimonial:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

/* Big image with zoom on hover */
.thumb {
  position: relative;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.testimonial:hover .thumb img {
  transform: scale(1.1);
}

/* Play button */
.play {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 52px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  transition: background 0.3s ease;
}

.testimonial:hover .play {
  background: rgba(0,0,0,0.5);
}

/* Text */
.testimonial p {
  margin-top: 20px;
  color: #333;
  font-size: 1.06rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}


/* === FINAL FIX: FORCE 3 × 3 ACHIEVEMENTS GRID === */
#achievements .achievements-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

#achievements .achievement-box {
    max-width: 240px !important;
}

/* Responsive */
@media (max-width: 992px) {
    #achievements .achievements-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    #achievements .achievements-grid {
        grid-template-columns: 1fr !important;
    }
}


/* === CENTER THE 3×2 ACHIEVEMENTS GRID === */
#achievements .container {
    max-width: 900px !important;   /* reduce container width */
    margin: 0 auto !important;     /* center the whole section */
}

#achievements .achievements-grid {
    justify-content: center !important;
    justify-items: center !important;
    align-items: center !important;
}


/* === Increase icon & text INSIDE the achievement box WITHOUT changing box size === */

/* Larger icon */
#achievements .achievement-box i {
    font-size: 7.5rem !important;   /* increase icon size */
    margin-bottom: 18px !important;
}

/* Larger number */
#achievements .achievement-box h3 {
    font-size: 4.6rem !important;   /* increase number size */
    font-weight: 800 !important;
    margin-bottom: 8px !important;
}

/* Larger description text */
#achievements .achievement-box p {
    font-size: 4.15rem !important;  /* make text slightly bigger */
    font-weight: 600 !important;
    color: #333 !important;
}

/* Keep the box size the same */
#achievements .achievement-box {
    padding: 40px 25px !important;  /* original padding restored */
}

/* === SMALLER ACHIEVEMENT BOXES (compact + clean) === */

#achievements .achievement-box {
    max-width: 200px !important;      /* reduce width more */
    padding: 18px 15px !important;    /* reduce height more */
    border-radius: 12px !important;   /* make corners tighter */
}

/* Keep icon and text spacing balanced */
#achievements .achievement-box i {
    margin-bottom: 10px !important;
}

/* Increase size of Achievements Section Heading */
#achievements .section-title {
    font-size: 2.8rem !important;   /* Increase heading size */
    font-weight: 800 !important;    /* Make it bolder */
    margin-bottom: 40px !important; /* Add spacing below */
}


/* FORCE SMALLER ACHIEVEMENT BOX SIZE */
.achievement-box {
  max-width: 160px !important;
  padding: 14px !important;
}

.achievement-box i {
  font-size: 28px !important;
}

.achievement-box h3 {
  font-size: 1.3rem !important;
}

.achievement-box p {
  font-size: 0.8rem !important;
}


* {
  scroll-behavior: smooth;
  backface-visibility: hidden;
}



/* Prevent layout shift */
img {
  display: block;
  width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

/* Prevent jumpy sections */
section, div, header, footer {
  min-height: 1px;
}

/* Fix hero jump */
.hero-section {
  min-height: 500px; /* adjust if needed */
}

/* Fix navbar jump */
.nav {
  min-height: 80px;
}


/* ----------------------------------------
   ⚡ UNIVERSAL SPEED BOOSTER (SAFE VERSION)
   Paste this inside style.css
----------------------------------------- */

/* 1️⃣ Make page paint faster */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* 2️⃣ Boost scroll performance */
html {
  scroll-behavior: smooth;
  will-change: scroll-position;
}

/* 3️⃣ Prevent layout shifting during load */
img {
  loading: lazy;
  decoding: async;
  max-width: 100%;
  height: auto;
  display: block;
}

/* 4️⃣ Faster animations (GPU accelerated) */
[class*="animate"],
[class*="fade"],
[class*="slide"],
[class*="zoom"] {
  will-change: transform, opacity;
  transform: translateZ(0);
}

/* 5️⃣ Improve rendering on all sections */
section, header, footer, div {
  will-change: auto;
}

/* 6️⃣ Reduce heavy box-shadow cost */
.shadow-heavy {
  box-shadow: none !important;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

/* 7️⃣ Faster background rendering */
.bg-cover, .bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: optimizeQuality;
}


/* === MAKE HOME PAGE BANNER BIGGER === */

.team-banner {
  height: 720px !important;          /* Increase height here */
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.team-banner-content {
  padding-top: 140px !important;     /* Moves the text lower */
}

.team-banner h2 {
  font-size: 3rem !important;
}

.team-banner p {
  font-size: 1.2rem !important;
  max-width: 650px;
}

/* ==========================================================================
   ADDITIONAL MOBILE FRIENDLY IMPROVEMENTS
   ========================================================================== */

@media (max-width: 768px) {
  * {
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Banner Fixes */
  #home-banner, .hero-slider, .team-banner {
    height: 350px !important;
  }
  
  .hero-content, .team-banner-content {
    padding-top: 100px !important;
    bottom: 80px !important;
  }

  .hero-content h2, .team-banner h2, #home-banner h2 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
  }

  .hero-content {
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    padding: 0 20px !important;
    bottom: 50px !important;
  }

  .hero-content p, .team-banner p, #home-banner p {
    font-size: 0.95rem !important;
    padding: 0 15px;
  }

  .start-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  /* Grid & Flex Stacking */
  .services-grid, .achievements-grid, .deals-grid, .footer-container, .contact-inner {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .container {
    padding: 0 20px !important;
  }

  /* Industries Section */
  .industries-wrapper {
    padding: 10px 5px !important;
  }
  .industry-box {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
  }

  /* Navigation Header */
  .header-logo {
    height: 50px !important;
  }

  /* Mobile Menu Enhancements */
  .mobile-menu {
    width: 85% !important;
    max-width: 320px;
    z-index: 5000 !important;
  }

  .mobile-menu ul li {
    margin: 15px 0 !important;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .mobile-menu ul li a {
    font-size: 1rem !important;
    display: block;
    width: 100%;
  }

  /* Utility */
  .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 25px !important;
  }

  /* Force visibility for sections on mobile to prevent reveal animation issues */
  .section, .reveal {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  /* Specific Grid Fixes for Overview & Services */
  .private-grid-4, #valuation .valuation-lines, #valuation .valuation-boxes {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .ib-buttons-container {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .ib-btn {
      font-size: 0.9rem;
      padding: 10px;
      text-align: center;
      width: 100%;
  }

  .tab-content > div {
      flex-direction: column !important;
  }

  .tab-content img {
      max-width: 100% !important;
      height: auto !important;
  }

  /* Fix for deal cards and other cards not being seen or overflowing */
  .deal-card, .all-blog-card, .achievement-box, .service-box, .founder-card, .team-card {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
  }
}

@media (max-width: 480px) {
  .hero-content h2, .team-banner h2 {
    font-size: 1.5rem !important;
  }
  
  .hero-slide {
      background-attachment: scroll !important; /* Fix for mobile background issues */
  }
}
}
}


