/* ========== FONTS (site-wide — original Poppins only) ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --paragraph-color: #555555;
  --paragraph-size: 14px;
  --paragraph-lh: 1.65;
  --paragraph-weight: 400;
  --heading-color: #111111;
  --heading-weight: 500;
  --heading-weight-emphasis: 600;
  --label-size: 14px;
  --label-weight: 400;
  --label-color: #111111;
  --label-spacing: 1px;
  --display-size: 40px;
  --display-size-md: 36px;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: var(--paragraph-size);
  color: var(--paragraph-color);
}

p {
  font-family: 'Poppins', sans-serif;
  font-size: var(--paragraph-size);
  font-weight: var(--paragraph-weight);
  line-height: var(--paragraph-lh);
  color: var(--paragraph-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--heading-color);
  font-weight: var(--heading-weight);
}

h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.625rem, 3.2vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 1.125rem;
  font-weight: var(--heading-weight-emphasis);
  text-transform: none;
  letter-spacing: 0;
}

h4 {
  font-size: 1rem;
  font-weight: var(--heading-weight-emphasis);
  text-transform: none;
  letter-spacing: 0;
}

/* Section label — / WHY CHOOSE US / */
.section-tag,
.hp-label {
  font-family: 'Poppins', sans-serif;
  font-size: var(--label-size);
  font-weight: var(--label-weight);
  color: var(--label-color);
  letter-spacing: var(--label-spacing);
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Quoted company line — "SV OCEAN SERVICES" */
.company-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: var(--heading-weight-emphasis);
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 15px 0;
}

/* Large section titles — FEW REASONS WHY YOU CHOOSE US! */
.hp-display,
.why-content h2,
.services-head h2,
.about-content h2,
.about-title,
.project-content h2 {
  font-weight: var(--heading-weight);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--heading-color);
}

.section-tag,
.footer-title,
.btn-main,
.btn-quote {
  font-family: 'Poppins', sans-serif;
}

/* ========== BASE CONTAINER (Desktop default) ========== */
.container {
  width: 100%;
  max-width: 1544px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 135px;
  padding-right: 135px;
}

/* ========== HEADER ========== */
.header {
  background: #fff;
  padding: 15px 33px;
}

.logo img {
  max-height: 100px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 18px;
  background: #f1f1f1;
  padding: 17px 24px;
  border-radius: 17px;
}

.menu li {
  cursor: pointer;
  white-space: nowrap;
  font-size: small;
  position: relative;
}

.menu a {
  text-decoration: none;
  color: #000;
}

/* पुराने वाले को हटाएं */
/* .menu .active { border-bottom: 2px solid #000; } */

/* Parent menu */
.menu{
  position: relative;
}

/* LI को full height में stretch */
.menu li{
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

/* Anchor को proper padding दें (optional) */
.menu li a{
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 6px 2px; /* text spacing */
}

/* MENU must be relative */
.menu {
  position: relative;
}

/* Remove any old underline */
.menu li {
  position: relative;
}

/* Active underline touching menu bottom */
.menu li.active::after {
  content: "";
  position: absolute;

  /* FULL menu bottom */
  left: 0;
  width: 100%;

  /* 👇 magic number = menu padding-bottom */
  bottom: -17px;

  height: 2px;
  background: #000;
  border-radius: 2px;
}


.right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-main {
  background: #b57b1e;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero-section {
  padding: 18px 91px;
}

.hero-section h1 {
  font-size: 36px;
  line-height: 1.2;
}

.tag {
  font-size: 14px;
}

.contact-btn {
  display: inline-block;
  margin-top: 20px;
  background: #b57b1e;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
}

/* ========== DESKTOP DROPDOWN (Clean - Only One) ========== */
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.arrow {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(68% + 10px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 0;
  list-style: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 9999;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
}

.dropdown-menu li a:hover {
  background: #b57b1c;
  color: #fff;
  width: 100%;
}

@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .dropdown:hover > .dropdown-toggle .arrow {
    transform: rotate(180deg);
  }
}

/* ========== MOBILE SIDEBAR DROPDOWN (Accordion) ========== */
.m-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.m-mainlink {
  flex: 1;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.m-arrow {
  font-size: 24px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.m-submenu {
  list-style: none;
  padding: 10px 0 0 12px;
  display: none;
}

.m-submenu li {
  margin: 10px 0;
}

.m-submenu a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
}

.m-dropdown.active .m-submenu {
  display: block;
}

.m-dropdown.active .m-arrow {
  transform: rotate(180deg);
}

/* ========== SLIDER ========== */
.slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slides img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: none;
}

.slides img.active {
  display: block;
}

.slider-nav {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.slider-nav span {
  background: #fff;
  padding: 12px;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
}

/* ================= SERVICES SECTION ================= */
.services {
  padding: 80px 0;
}

.section-tag {
  color: var(--label-color);
  font-size: var(--label-size);
  margin-bottom: 15px;
  letter-spacing: var(--label-spacing);
  font-weight: var(--label-weight);
}

/* ---------- HEAD ---------- */
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.services-head h2 {
  font-size: var(--display-size-md);
  font-weight: var(--heading-weight);
  line-height: 1.2;
  max-width: 650px;
}

/* ---------- BUTTON ---------- */
.outline-btn {
  border: 1px solid #ccc;
  background: transparent;
  padding: 12px 22px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.outline-btn:hover {
  background: #b57b1e;
  color: #fff;
  border-color: #b57b1e;
}

/* ---------- CARDS GRID ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ---------- CARD ---------- */
.card {
  border: none;
  background: transparent;
}

.card img {
  width: 55px;
  height: auto;
  margin-bottom: 20px;
}

.card .line {
  display: block;
  width: 100%;
  height: 1px;
  background: #ddd;
  margin-bottom: 20px;
}

.card h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 0;
}

/* ================= RUNNING TEXT SECTION ================= */
.running-text {
  width: 100%;
  background: #fff;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-content span {
  font-size: 38px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  color: #000;
  margin-right: 40px;
}

.marquee-content .dot {
  width: 12px;
  height: 12px;
  background: #b57b1e;
  border-radius: 50%;
  display: inline-block;
  margin-right: 40px;
}

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

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 80px 0;
  background: #fff;
  overflow-x: hidden;
}

.about-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  font-size: var(--display-size-md);
  font-weight: var(--heading-weight);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content h2 span {
  display: block;
}

.about-text {
  margin-bottom: 30px;
}

.about-list {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
}

.about-list ul {
  list-style: none;
  padding: 0;
}

.about-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 14px;
}

.about-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #b57b1e;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

.read-btn {
  background: #fff;
  border: 1px solid #ccc;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-btn:hover {
  background: #b57b1e;
  color: #fff;
  border-color: #b57b1e;
}

.since-text {
  font-size: 80px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgb(92, 88, 88);
  opacity: 0.6;
  margin-top: 30px;
}

/* Desktop image scale */
@media (min-width: 1200px) {
  .about-image img {
    transform: scale(1.1);
  }
}

/* ================= CLIENT LOGO SLIDER ================= */
.clients-section {
  text-align: center;
  padding: 70px 0 50px;
  background: #fff;
  overflow: hidden;
}

.clients-section h3 {
  font-size: 33px;
  font-weight: 599;
  letter-spacing: 2px;
  margin-bottom: 75px;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.logo-track img {
  height: 40px;
  margin: 0 45px;
  filter: none;
  opacity: 1;
  transform: none;
  transition: transform 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.05);
}

/* ================= FEATURES ================= */
.features-section {
  padding: 80px -1px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.35s ease;
  background: #fff;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  height: 50px;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.feature-card p {
  margin-bottom: 0;
}

/* ================= PROJECT SECTION ================= */
.project-section {
  position: relative;
  padding: 100px 0 140px;
  background: url('../images/9a3fdfd10c03d40c55fb818165c94cdf1007b3e4.jpg') center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.78);
}

.project-content {
  position: relative;
  z-index: 2;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.section-tag.white {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #fff;
}

.project-content h2 {
  font-size: 42px;
  font-weight: var(--heading-weight);
}

.project-nav {
  display: flex;
  gap: 44px;
  margin-top: 63px;
}

.project-nav span {
  font-size: 18px;
  opacity: 0.5;
  cursor: pointer;
  position: relative;
}

.project-nav span.active {
  opacity: 1;
}

.project-nav span.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.project-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.project-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.project-card:hover {
  transform: translateY(-18px) scale(1.04);
  box-shadow: 0 50px 90px rgba(0, 0, 0, 0.65);
}

.card-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}

.card-info span {
  display: block;
  font-size: 16px;
  margin-bottom: 12px;
}

.read-more {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.read-more:hover {
  background: #fff;
  color: #000;
}

/* ================= WHY CHOOSE US ================= */
.why-choose {
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-left: 8%;
  padding-right: 8%;
}

.why-image img {
  width: 100%;
  height: 576px;
  border-radius: 24px;
  object-fit: cover;
}

.why-content h2 {
  font-size: var(--display-size);
  line-height: 1.2;
  margin: 15px 0;
  font-weight: var(--heading-weight);
}

.company-name {
  display: block;
  margin: 15px 0;
  font-weight: var(--heading-weight-emphasis);
}

.why-content p {
  margin-bottom: 14px;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 100px 0;
  background: #ffffff;
}

.center {
  text-align: center;
}

.section-tag.white {
  color: #fff;
}

.testimonial-cards {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 0 24px;
}

.testimonial-card {
  background: #f7f7f7;
  padding: 40px;
  border-radius: 20px;
}

.quote-icon {
  width: 50px;
  height: 50px;
  background: #b57b1c;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.testimonial-card p {
  margin-bottom: 0;
}

.testimonial-card strong {
  display: block;
  margin-top: 20px;
  font-weight: 600;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
}

.dots span.active {
  background: #b57b1c;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #2c2b28;
  color: #cfcfcf;
}

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-about {
  font-size: 13px;
  line-height: 1.8;
  color: #bdbdbd;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 1px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.8;
}

.footer-links a {
  color: #bdbdbd;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.footer-links a i {
  color: #b57b1c;
  min-width: 16px;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact i {
  color: #b57b1c;
  margin-right: 10px;
}

.footer-offices {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-offices .footer-title {
  margin-bottom: 18px;
}

.footer-office-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  height: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.footer-office-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(181, 123, 28, 0.35);
}

.footer-office-card > i {
  color: #b57b1c;
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-office-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: #bdbdbd;
}

.footer-address-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b57b1c;
  margin-bottom: 6px;
}

.footer-bottom {
  background: #262522;
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #aaa;
}

.social-links {
  display: flex;
  gap: 18px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #b57b1c;
  transform: translateY(-4px);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(181, 123, 28, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(181, 123, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(181, 123, 28, 0); }
}

.pulse {
  animation: pulse 2.5s infinite;
}

.pulse.delay {
  animation-delay: 1.2s;
}

/* ================= MOBILE SIDEBAR ================= */
.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #111;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn--close {
  font-size: 22px;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: left 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-sidebar.active {
  left: 0;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-header img {
  max-height: 60px;
}


.sidebar-menu {
  list-style: none;
  padding: 30px 0;
}

.sidebar-menu li {
  margin-bottom: 18px;
}

.sidebar-menu a {
  text-decoration: none;
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.sidebar-footer {
  margin-top: auto;
}

.sidebar-footer p {
  margin-bottom: 15px;
  font-weight: 600;
}

.mobile-menu {
  z-index: 10001;
  display: flex;
  align-items: center;
}

.header-v2-actions {
  position: relative;
  z-index: 10001;
}

/* ================= ABOUT PAGE ================= */
.about-hero {
  padding: 43px 0 70px;
  max-width: 901px;
}

.about-title {
  font-size: 34px;
  font-weight: var(--heading-weight);
  line-height: 1.25;
  margin-bottom: 25px;
}

.about-desc {
  margin-bottom: 0;
}

.vision-mission {
  padding-bottom: 100px;
}

.vm-card {
  background: #f9f9f9;
  border-radius: 18px;
  padding: 40px 35px;
  height: 100%;
  text-align: left;
}

.vm-card img {
  width: 45px;
  margin-bottom: 20px;
}

.vm-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.vm-card p {
  margin-bottom: 0;
}

/* ================= INCOTERMS ================= */
.incoterms-section {
  padding: 80px 0;
}

.incoterms-title {
  font-weight: 600;
  letter-spacing: 1px;
}

.incoterms-menu {
  list-style: none;
  padding: 0;
  background: #f8f8f8;
  border-radius: 6px;
  overflow: hidden;
}

.incoterms-menu li {
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s;
}

.incoterms-menu li:hover,
.incoterms-menu li.active {
  background: #b57b1c;
  color: #fff;
}

.incoterm-content {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.incoterm-content h3 {
  margin-bottom: 15px;
  font-weight: 600;
}

.incoterm-content p {
  margin-bottom: 12px;
}

/* ================= CONTACT BANNER ================= */
.contact-banner {
  position: relative;
  height: 320px;
  background: url('../images/c8337f93438fd1ad24181ad212997d1b04ee8c0e.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.contact-banner1 {
  position: relative;
  height: 320px;
  background: url('../images/Group 1.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.contact-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.contact-banner-content small {
  letter-spacing: 2px;
  opacity: 0.9;
}

.contact-banner-content h1 {
  font-weight: 600;
  margin-top: 10px;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 80px 0;
  background: #fafafa;
}

.contact-info-box {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-box h5 {
  margin-bottom: 25px;
  font-weight: 600;
}

.info-item {
  margin-bottom: 22px;
}

.info-item strong {
  display: block;
  margin-bottom: 6px;
}

.contact-form-box {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-form-box h5 {
  margin-bottom: 25px;
  font-weight: 600;
}

.form-control {
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 14px;
}

.send-btn {
  background: #b57b1c;
  color: #fff;
  padding: 10px 28px;
  border-radius: 20px;
  font-size: 14px;
  transition: 0.3s;
}

.send-btn:hover {
  background: #9e6815;
  color: #fff;
}

/* ================= GOOGLE MAP ================= */
.map-section {
  width: 100%;
  margin-top: 60px;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= SERVICES HERO ================= */
.services-hero {
  background: url('../images/services/329389ff45cb3335c2ba145bdfc7f60200d1e1f1.jpg') center/cover no-repeat;
  height: 280px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  max-width: 1200px;
}

.services-hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
}

.services-subtitle {
  max-width: 600px;
  margin: auto;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
}

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

.service-content {
  padding: 16px;
}

.service-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-content p {
  margin: 0;
}

/* ================= POLICY HERO ================= */
.policy-hero {
  background: url('../images/policy/03d79f54d83a344af7e9deac4db1cb6fb8393106(1).jpg') center/cover no-repeat;
  height: 260px;
  border-radius: 18px;
  margin: 30px auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-hero h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
}

.policy-section h4,
.policy-section h5 {
  font-weight: 600;
  margin-top: 15px;
}

.policy-section p {
  margin-bottom: 12px;
}

.policy-list {
  padding-left: 18px;
}

.policy-list li {
  margin-bottom: 8px;
  font-size: 14px;
}

.value-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.value-table thead {
  background: #0d6efd;
  color: #fff;
}

.value-table th,
.value-table td {
  padding: 14px;
  font-size: 14px;
}

/* ================= GROUP HERO ================= */
.group-hero {
  background: url('../images/companyGroup/03d79f54d83a344af7e9deac4db1cb6fb8393106(2).jpg') center/cover no-repeat;
  height: 260px;
  border-radius: 18px;
  margin: 30px auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.group-hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
}

.group-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.group-card:hover {
  transform: translateY(-6px);
}

.group-card img {
  max-height: 80px;
  margin-bottom: 15px;
}

.group-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.group-card p {
  margin-bottom: 0;
}

/* ================= FLOATING WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 22px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: pulse 1.5s infinite;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */

/* ---------- <= 1200px ---------- */
@media (max-width: 1200px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .header {
    padding: 15px 20px;
  }

  .menu {
    gap: 14px;
    padding: 14px 18px;
  }

  .hero-section {
    padding: 18px 40px;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .cards {
    gap: 30px;
  }

  .services-head h2 {
    font-size: 32px;
  }

  .about-container {
    gap: 40px;
  }

  .since-text {
    font-size: 65px;
  }

  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-content h2 {
    font-size: 36px;
  }
}

/* ---------- <= 992px (Tablet) ---------- */
@media (max-width: 992px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .header {
    padding: 12px 0;
  }

  .logo img {
    max-height: 70px;
  }

  .hero-section {
    padding: 22px 0;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .slider,
  .slides img {
    height: 400px;
  }

  .services {
    padding: 60px 0;
  }

  .services-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services-head h2 {
    font-size: 30px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .marquee-content span {
    font-size: 28px;
    margin-right: 30px;
  }

  .marquee-content .dot {
    width: 10px;
    height: 10px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 35px;
    width: 100%;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-list {
    gap: 40px;
  }
  @media (max-width: 992px) {
  .about-content {
    padding-left: 3%;
    padding-right: 3%;
  }
  }
  .since-text {
    font-size: 55px;
  }

  .logo-track img {
    height: 32px;
    margin: 0 30px;
  }

  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .project-section {
    padding: 80px 0 100px;
  }

  .project-header {
    flex-direction: column;
    gap: 20px;
  }

  .project-nav {
    display: none;
  }

  .project-cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project-card img {
    height: 340px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .why-image img {
    height: auto;
    max-height: 420px;
  }

  .why-content h2 {
    font-size: 32px;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 22px;
  }
}

/* ---------- <= 576px (Mobile) ---------- */
@media (max-width: 576px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo img {
    max-height: 60px;
  }

  .btn-main {
    padding: 10px 18px;
    font-size: 13px;
  }

  .hero-section h1 {
    font-size: 24px;
    line-height: 1.25;
  }

  .tag {
    font-size: 12px;
  }

  .slider,
  .slides img {
    height: 260px;
  }

  .slider-nav span {
    padding: 8px;
  }

  .services {
    padding: 45px 0;
  }

  .services-head h2 {
    font-size: 22px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .outline-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .marquee-content span {
    font-size: 18px;
    margin-right: 18px;
  }

  .marquee-content .dot {
    width: 8px;
    height: 8px;
    margin-right: 18px;
  }

  .about-section {
    padding: 45px 0;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-list {
    flex-direction: column;
    gap: 16px;
  }

  .since-text {
    font-size: 40px;
  }

  .clients-section {
    padding: 45px 0 30px;
  }

  .clients-section h3 {
    font-size: 22px;
    margin-bottom: 35px;
  }

  .logo-track img {
    height: 26px;
    margin: 0 18px;
  }

  .features-section {
    padding: 45px 0;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    padding: 26px 18px;
  }

  .project-section {
    padding: 60px 0 70px;
  }

  .project-content h2 {
    font-size: 26px;
  }

  .project-card img {
    height: 280px;
  }

  .card-info {
    left: 18px;
    bottom: 18px;
  }

  .why-choose {
    padding: 60px 0;
  }

  .why-content h2 {
    font-size: 26px;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 24px;
    border-radius: 16px;
  }

  .footer-top {
    padding: 45px 0 35px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }

  .map-wrapper {
    height: 300px;
  }

  .contact-banner {
    height: 220px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .services-hero {
    height: 200px;
  }

  .services-hero h1 {
    font-size: 30px;
  }

  .policy-hero {
    height: 200px;
  }

  .policy-hero h1 {
    font-size: 28px;
  }

  .group-hero {
    height: 200px;
  }

  .group-hero h1 {
    font-size: 28px;
  }

  .about-title {
    font-size: 22px;
  }

  .about-desc {
    font-size: 13px;
  }

  .vm-card {
    padding: 30px 25px;
  }
}

/* ========== HEADER V2 (site-wide, matches homepage) ========== */
:root {
  --sv-gold: #c9a227;
  --sv-gold-dark: #b08d1f;
  --sv-black: #111111;
}

.header-v2-container {
  max-width: 1240px;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.header.header--v2 {
  padding: 18px 0 !important;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}

.header-v2-inner {
  display: grid;
  grid-template-columns: minmax(160px, auto) 1fr minmax(140px, auto);
  align-items: center;
  gap: 20px;
}

.header--v2 .logo img {
  max-height: 56px;
  width: auto;
}

.header-v2-menu {
  justify-content: center;
  background: transparent !important;
  padding: 0 !important;
  gap: 6px !important;
  margin: 0 auto;
  display: flex;
}

.header--v2 .menu li a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #777;
  border-radius: 8px;
  text-decoration: none;
}

.header--v2 .menu li.active a {
  background: #ececec;
  color: var(--sv-black);
}

.header--v2 .menu li.active::after {
  display: none;
}

.header--v2 .btn-quote {
  background: var(--sv-gold);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  align-items: center;
}

.header--v2 .btn-quote:hover {
  background: var(--sv-gold-dark);
  color: #fff;
}

.header-v2-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.sidebar-quote-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: 6px;
}

@media (max-width: 991px) {
  .header-v2-container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .header-v2-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .header-v2-menu {
    display: none !important;
  }
}
