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

body {
  overflow-x: hidden;
}

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

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

.menu {
  list-style: none;
  display: flex;
  gap: 35px;
  background: #f1f1f1;
  padding: 20px 40px;
  border-radius: 30px;
}

.menu li {
  cursor: pointer;
  white-space: nowrap;
}

.menu .active {
  border-bottom: 2px solid #000;
}

.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: 60px 0;
}

.hero-section h1 {
  font-size: 42px;
  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;
}

/* ========== 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;
}

/* ========== TABLET ========== */
@media (max-width: 992px) {

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

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

/* ========== MOBILE ========== */
@media (max-width: 576px) {

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

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

  .tag {
    font-size: 12px;
  }

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

  .slider-nav span {
    padding: 8px;
  }
}
/* ================= SERVICES SECTION ================= */
.services {
  padding: 80px 0;   /* container padding bootstrap से आएगा */
}

.section-tag {
  color: #000;
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

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

.services-head h2 {
  font-size: 36px;
  font-weight: 700;
  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: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

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

/* ---------- LAPTOP SMALL ---------- */
@media (max-width: 1200px) {
  .cards {
    gap: 30px;
  }

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

/* ---------- TABLET ---------- */
@media (max-width: 992px) {

  .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: 30px;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 576px) {

  .services {
    padding: 40px 0;
  }

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

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

  .outline-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 80px 0;
  background: #fff;
}

.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%; */
  width: 130%;
  height: auto;
}

/* ---------- CONTENT ---------- */
.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.about-text {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  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;
}

/* ---------- BUTTON ---------- */
.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 ---------- */
.since-text {
  font-size: 80px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgb(92, 88, 88);
  opacity: 0.6;
  margin-top: 30px;
}

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

/* ---------- LAPTOP SMALL ---------- */
@media (max-width: 1200px) {
  .about-container {
    gap: 40px;
  }

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

/* ---------- TABLET ---------- */
@media (max-width: 992px) {

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

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-list {
    gap: 40px;
  }

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

/* ---------- MOBILE ---------- */
@media (max-width: 576px) {

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

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

  .about-text {
    font-size: 14px;
  }

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

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

/* ================= CLIENT LOGO SLIDER ================= */
.clients-section {
  text-align: center;
  padding: 60px 0 40px;
  background: #fff;
}

.clients-section h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

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

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  height: 40px;
  margin: 0 40px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* ---------- LOGO RESPONSIVE ---------- */
@media (max-width: 768px) {
  .logo-track img {
    height: 32px;
    margin: 0 25px;
  }
}

@media (max-width: 576px) {
  .logo-track img {
    height: 28px;
    margin: 0 20px;
  }
}

/* ---------- ANIMATION ---------- */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ================= FEATURES ================= */
.features-section {
  padding: 80px 0;
}

.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: 600;
}

.feature-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 30px 20px;
  }
}

/* ================= 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(41, 40, 40, 0.75);
}

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

.project-content h2 {
  font-size: 42px;
  margin-bottom: 60px;
}

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

.project-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all 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);
}

/* ---------- TEXT & BUTTON ---------- */
.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 20px;
  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;
}

/* ---------- SIDE NUMBERS ---------- */
.project-nav {
  position: absolute;
  right: 40px;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.project-nav span.active {
  opacity: 1;
  border-bottom: 2px solid #fff;
  width: fit-content;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .project-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .project-section {
    padding: 80px 0 100px;
  }

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

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

  .project-nav {
    display: none;
  }
}

@media (max-width: 576px) {
  .project-content h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

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

  .card-info {
    left: 20px;
    bottom: 20px;
  }
}
/* =========================
   COMMON CONTAINER FIX
========================= */
.container {
  /* max-width: 1320px; */
  max-width: 1544px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

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

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.why-content h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 15px 0;
}

.company-name {
  display: block;
  margin: 15px 0;
  font-weight: 600;
}

.why-content p {
  color: #555;
  margin-bottom: 14px;
  line-height: 1.7;
}

/* Tablet */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* Mobile */
@media (max-width: 576px) {
  .why-choose {
    padding: 60px 0;
  }

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

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

.center {
  text-align: center;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
  padding-left: 120px;
  padding-right: 120px;
}

.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 {
  color: #444;
  line-height: 1.7;
}

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

/* Dots */
.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;
}

/* Tablet */
@media (max-width: 992px) {
  .testimonial-cards {
    grid-template-columns: 1fr;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonial-cards {
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonial-card {
    padding: 25px;
  }
}
/* ================= FOOTER ================= */

.site-footer {
  background: #2c2b28;
  color: #cfcfcf;
  font-size: 14px;
}

/* TOP */
.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 {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 13px;
}

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

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

/* BOTTOM */
.footer-bottom {
  background: #262522;
  padding: 18px 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 a {
  color: #aaa;
  font-size: 12px;
  margin-left: 20px;
  text-decoration: none;
}

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

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

@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .social-links a {
    margin: 0 10px;
  }
}


/* Mobile */
@media (max-width: 576px) {
  .footer-menu a {
    font-size: 14px;
  }

  .footer-top {
    padding: 60px 0 30px;
  }
}
/* ================= MOBILE SIDEBAR ================= */

.mobile-menu span {
  font-size: 28px;
  cursor: pointer;
}

/* Sidebar */
.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;
}

/* Active */
.mobile-sidebar.active {
  left: 0;
}

/* Overlay */
.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;
}

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

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

.sidebar-header span {
  font-size: 22px;
  cursor: pointer;
}

/* Menu */
.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;
}
.menu a {
  text-decoration: none;
  color: #000;
}

/* Footer */
.sidebar-footer {
  margin-top: auto;
}

.sidebar-footer p {
  margin-bottom: 15px;
  font-weight: 600;
}
.mobile-menu {
  z-index: 10000;
}
/* ================= ABOUT PAGE ================= */

.about-hero {
  padding: 43px 0 70px;
  max-width: 901px;
}

.about-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 25px;
}

.about-desc {
font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* Vision Mission */
.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: 700;
  margin-bottom: 15px;
}

.vm-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

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

/* Tablet */
@media (max-width: 992px) {
  .about-title {
    font-size: 28px;
  }

  .about-hero {
    padding: 70px 20px 50px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-title {
    font-size: 22px;
  }

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

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

/* ================= INCOTERMS ================= */

.incoterms-section {
  padding: 80px 0;
}

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

/* LEFT MENU */
.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;
}

/* RIGHT CONTENT */
.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 {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .incoterms-menu {
    margin-bottom: 25px;
  }

  .incoterm-content {
    padding: 20px;
  }
}

/* ================= 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: 700;
  margin-top: 10px;
}

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

/* LEFT INFO BOX */
.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;
}

/* FORM BOX */
.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;
}

/* BUTTON */
.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;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .contact-banner {
    height: 220px;
  }

  .contact-section {
    padding: 50px 0;
  }
}
/* =========================
   GOOGLE MAP SECTION
========================= */

.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;
}

/* Tablet */
@media (max-width: 991px) {
  .map-wrapper {
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .map-wrapper {
    height: 300px;
  }
}
/* ===== 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 SECTION ===== */
.services-subtitle {
  max-width: 600px;
  margin: auto;
  color: #777;
  font-size: 15px;
}

/* ===== SERVICE CARD ===== */
.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%;
  height: 180px;
  object-fit: cover;
}

.service-content {
  padding: 16px;
}

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

.service-content p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .services-hero {
    height: 200px;
  }

  .services-hero h1 {
    font-size: 30px;
  }
}
/* ===== 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 CONTENT ===== */
.policy-section h4,
.policy-section h5 {
  font-weight: 600;
  margin-top: 15px;
}

.policy-section p {
  color: #666;
  font-size: 15px;
}

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

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

/* ===== VALUE TABLE ===== */
.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;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .policy-hero {
    height: 200px;
  }

  .policy-hero h1 {
    font-size: 28px;
  }
}
/* ===== 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 ===== */
.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 {
  font-size: 13px;
  color: #666;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .group-hero {
    height: 200px;
  }

  .group-hero h1 {
    font-size: 28px;
  }
}
/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  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;
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
} 

/* Mobile Fix */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
}

/*  About Us Drop Down css start here */
/* ===== HEADER DROPDOWN FIX ===== */
.menu {
  position: relative;
}

.menu li {
  position: relative;
}

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

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

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

.menu .dropdown:hover .dropdown-menu {
  display: block;
}

/*  About Us Drop Down css end here */