body {
  background: #f2f2f2;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #434343;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  -webkit-text-size-adjust: 100%;
}

.container {
  max-width: 1320px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

/* ================= TOP BAR ================= */
.top-bar {
  background-color: #fff;
}

.top-navbar {
  padding: 24px 0;
}

/* ================= CONTACT BLOCKS ================= */
.contact-title {
  font-size: 14px;
  font-weight: 700;
}

.phone-row {
  display: flex;
  gap: 11px;
  /*flex-wrap: wrap;*/
}

.phone-row div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-row img {
  width: 22px;
  height: 14px;
  object-fit: cover;
  border: 1px solid #ddd;
}

.phone-row a {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}

.email-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-row img {
  width: 24px;
}

.email-row a {
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}

/* ================= BUTTONS ================= */
.quote-btn,
.support-btn {
  background: #f1b400;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: inline-block;
}

.quote-btn:hover,
.support-btn:hover {
  background: #d9a200;
}

/* ================= NAVBAR ================= */
.main-navbar {
  background: #fff;
  padding: 12px 0;
}

.main-navbar .nav-link {
  font-weight: 700;
  letter-spacing: 2px;
  color: #333;
  font-family: "Open Sans", sans-serif !important;
}

.main-navbar .nav-link:hover {
  color: #f1b400;
}

.navbar-expand-lg .navbar-nav li.nav-item {
  list-style: disc !important;
}

.navbar-expand-lg .navbar-nav li.nav-item:first-child,
.navbar-expand-lg .navbar-nav li.nav-item:last-child {
  list-style: none !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .top-navbar {
    text-align: center;
  }

  .phone-row {
    justify-content: center;
  }

  .email-row {
    justify-content: center;
  }

  .quote-col {
    justify-content: center !important;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  /* ===== TOP BAR MOBILE LAYOUT ===== */
  .top-navbar {
    padding: 12px 0;
    flex-direction: column;
    gap: 12px;
  }

  .top-navbar > div {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  /* logo center */
  .top-navbar .logo-img {
    max-height: 55px;
  }

  /* Call us title */
  .contact-title {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
  }

  /* phone row center */
  .phone-row {
    justify-content: center;
    row-gap: 8px;
  }

  .phone-row div {
    font-size: 13px;
  }

  /* email center */
  .email-row {
    justify-content: center;
    text-align: center;
  }

  .email-row img {
    width: 20px;
  }
  .email-row a {
    font-size: 12px;
    word-break: break-all;
  }

  /* hide quote button on mobile (screenshot doesn't show it) */
  .quote-col {
    display: none !important;
  }

  /* ===== NAVBAR MOBILE ===== */
  .main-navbar {
    padding: 8px 0;
  }

  .main-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 10px;
  }
  .navbar-nav .dropdown-menu {
    display: none;
  }
  .navbar-expand-lg .navbar-nav li.nav-item {
    list-style: none !important;
  }
}

.header-menu li {
  font-size: 14px !important;
}
/* Default hidden state */
.dropdown-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform-origin: top;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

/* Hover state */
.nav-item.dropdown:hover .dropdown-menu {
  max-height: 300px; /* adjust based on content */
  opacity: 1;
}

.dropdown-menu {
  display: block;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: scaleY(1);
  border: none;
  border-radius: unset !important;
}
ul.dropdown-menu .dropdown-item {
  font-family: "Open Sans", sans-serif !important;
  color: #000;
  font-weight: 600;
  font-size: 13px;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* home slider css */

/* Hero Slider Container */
#heroCarousel {
  width: 100%;
  height: 90vh; /* Increased to show more video like the screenshot */
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item,
#heroCarousel .video-container {
  height: 100%;
  width: 100%;
}

/* Video Background Styling */
#heroCarousel .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This ensures the video fills the area without being cut weirdly */
  z-index: 1;
}

/* Overlay and Text Box */
#heroCarousel .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1); /* Lighter tint to let video colors show */
}

#heroCarousel .text-box {
  margin: 0 auto;
  /* Use rgba instead of opacity property so only background is transparent, not the text */
  background: rgba(0, 0, 0, 0.65) !important;
  padding: 50px 30px;
  width: 100%; /* Make it responsive */
  max-width: 1100px; /* Maximum width for large screens */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border like screenshot */
}

#heroCarousel .banner-text {
  color: #ffffff;
  font-size: 1.35rem; /* Matches the bold look in your screenshot */
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #heroCarousel {
    height: 70vh;
  }
  #heroCarousel .banner-text {
    font-size: 1rem;
    line-height: 1.4;
  }
  #heroCarousel .text-box {
    padding: 20px;
    width: 95%; /* Take up most of screen on mobile */
  }
}

/* step box css */

.step-box {
  background: white;
  padding: 50px 0px;
  border-radius: 5px;
  margin: auto 0px;
  border: 1px solid #fcd125;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 390px;
}

.step-box:hover {
  border: 1px solid #38416c;
}

.step-box p img {
  margin-bottom: 15px;
}

.step-icon {
  width: 80px;
  height: 80px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 15px;
}

.step-box p {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

/* specilization css */

.specialization-section .heading-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.specialization-section .bg-text {
  position: absolute;
  text-transform: lowercase;
  z-index: 1;
  white-space: nowrap;
  color: #414141;
  opacity: 0.1;
  font-size: 100px;
  letter-spacing: -3px;
  font-weight: 700;
}

.specialization-section .main-title {
  position: relative;
  font-size: 45px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #333;
  z-index: 2;
  margin-top: 20px;
}

.specialization-section .underline {
  width: 40px;
  height: 3px;
  background-color: #c5a059; /* Gold color from image */
  margin-top: 25px;
  z-index: 2;
}

.specialization-section .content-list p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .specialization-section .bg-text {
    font-size: 3rem;
  }
  .specialization-section .main-title {
    font-size: 1.8rem;
  }
}

/* about css */

.about-wrapper {
  width: 100%;
  padding: 100px 0;
  position: relative;

  background-image: url("../images/about.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 2;
}

/* =======================
     Heading Design
  ======================= */

.about-heading-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-bg-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  text-transform: lowercase;
  z-index: 1;
  pointer-events: none;
}

.about-title {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  z-index: 2;
}

.about-gold-line {
  width: 45px;
  height: 3px;
  background-color: #d4af37;
  margin-top: 8px;
  z-index: 2;
}

/* =======================
     Text Styling
  ======================= */

.about-lead {
  font-size: 15px;
  color: #000;
  line-height: 1.8;
}

.about-description {
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  text-align: justify;
}

/* =======================
     Mobile Optimization
  ======================= */

@media (max-width: 768px) {
  .about-bg-text {
    font-size: 3rem;
  }

  .about-title {
    font-size: 1.7rem;
  }

  .about-wrapper {
    padding: 70px 0;
  }
}

/* service css */

/* Section Background */
.services-section {
  background-color: #f2f2f2;
}

/* Layered Typography (Watermark) */
.section-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bg-watermark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05); /* Faint large text */
  z-index: 1;
  white-space: nowrap;
}

.section-title {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  z-index: 2;
}

.gold-divider {
  width: 40px;
  height: 3px;
  background-color: #d4af37;
  margin-top: 10px;
  z-index: 2;
}

/* Service Card Styling */
.service-card {
  background: #ffffff;
  padding: 50px 20px;
  text-align: left;
  width: 280px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 400;
  color: #555;
  padding-bottom: 5px;
  text-transform: uppercase;
  margin-bottom: 0px !important;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  font-size: 0.85rem;
  color: #777;
  padding: 5px 0;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 2px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .bg-watermark {
    font-size: 3rem;
  }
}

/* contact css */

/* Container Background */
.contact-section {
  background-color: #f8f9fa; /* Matches the light gray/white background in images */
  padding-bottom: 80px !important;
}

/* Layered Heading (Watermark effect) */
.contact-section .heading-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.contact-section .bg-watermark {
  position: absolute;
  font-size: 5.5rem; /* Large text behind */
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05); /* Faint gray transparency */
  text-transform: lowercase;
  z-index: 1;
  white-space: nowrap;
}

.contact-section .main-title {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  z-index: 2;
  margin-bottom: 0;
}

.contact-section .gold-line {
  width: 45px;
  height: 3px;
  background-color: #c5a059; /* Gold color from the logo/design */
  margin-top: 10px;
  z-index: 2;
}

/* Circular Icons */
.contact-section .icon-circle {
  width: 70px;
  height: 70px;
  border: 1px solid #c5a059; /* Gold border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #c5a059;
  font-size: 1.5rem;
}

.contact-section .icon-circle i {
  font-size: 15px;
}

.contact-item:hover .icon-circle {
  background: #c5a059;
}

.contact-item:hover .icon-circle i {
  color: #fff;
}

.contact-section .contact-item h5 {
  color: #434343;
  margin-top: 15px;
}

.contact-section .contact-item p a {
  line-height: 1.6;
  font-size: 14px;
  color: #434343;
  text-decoration: none;
  font-family: "Open Sans", sans-serif !important;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .contact-section .bg-watermark {
    font-size: 3rem;
  }
  .contact-section .main-title {
    font-size: 1.8rem;
  }
}

/* quote section css */

/* Section Container */
.quote-wrapper {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Header & Watermark Classes */
.quote-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.quote-watermark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(3rem, 10vw, 6rem); /* Responsive sizing */
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  text-transform: lowercase;
  z-index: 1;
  white-space: nowrap;
}

.quote-main-title {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  z-index: 2;
}

.quote-gold-divider {
  width: 50px;
  height: 3px;
  background-color: #c5a059;
  margin-top: 10px;
  z-index: 2;
}

/* Form & Input Field Classes */
.quote-label {
  display: block;
  font-size: 0.85rem;
  color: #999;
}

.quote-input-field {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e0e0e0; /* Matches the minimalist lines in image */
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
  font-size: 1rem;
  color: #333;
}

.quote-input-field:focus {
  border-bottom: 1px solid #c5a059;
}

/* Submit Button Class */
.quote-submit-btn {
  background-color: #f0f0f0; /* Light grey base */
  color: #666;
  border: none;
  padding: 10px 60px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: lowercase;
  transition: all 0.3s ease;
}

.quote-submit-btn:hover {
  background-color: #c5a059;
  color: #ffffff;
  cursor: pointer;
}

/* board member css */

.board-section {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

/* Heading UI */
.board-section .heading-wrapper {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.board-section .bg-watermark {
  position: absolute;
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  top: 11px;
  z-index: 1;
}

.board-section .main-title {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.board-section .gold-line {
  width: 50px;
  height: 3px;
  background: #c5a059;
  margin-top: 10px;
}

/* Swiper Container */
.board-section .swiper-container-wrapper {
  position: relative;
  padding: 0 50px; /* Space for arrows */
}

/* Profile Circle */
.board-section .profile-wrap {
  position: relative;
  width: 400px; /* Sized for 4-column layout */
  height: 400px;
  margin: auto;
  border-radius: 50%;
  padding: 20px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.board-section .member-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Plus Button (Lightbox Trigger) */
.board-section .plus-btn {
  position: absolute;
  bottom: 24px;
  right: 58px;
  width: 38px;
  height: 38px;
  background: #c5a059;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  text-decoration: none;
  z-index: 10;
}

/* Custom Hook Navigation */
.board-section .custom-hook-prev,
.custom-hook-next {
  position: absolute;

  cursor: pointer;
  z-index: 20;
  transition: 0.3s;
}

.board-section .custom-hook-prev {
  left: 27%;
  bottom: 35%;
}

.board-section .custom-hook-next {
  right: 27%;
  top: 13%;
}

.board-section .custom-hook-prev:hover,
.custom-hook-next:hover {
  transform: translateY(-50%) scale(1.15);
}

.custom-hook-prev img {
  width: 100px;
}
.custom-hook-next img {
  width: 100px;
}

@media (max-width: 768px) {
  .board-section .profile-wrap {
    width: 200px;
    height: 200px;
  }
  .step-box {
    width: auto !important;
    margin-bottom: 20px;
  }
  .specialization-section .bg-text {
    font-size: 38px;
  }
  .specialization-section .main-title {
    font-size: 25px;
  }
  .board-section .plus-btn {
    bottom: 5px;
    right: 20px;
  }
  .custom-hook-prev img {
    width: 70px;
  }
  .custom-hook-next img {
    width: 70px;
  }
  .board-section .custom-hook-next {
    right: -3%;
    top: 3%;
  }
  .board-section .custom-hook-prev {
    left: -1%;
    bottom: 45%;
  }
  .services-section .col-md-6.col-lg-3 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .services-section .bg-watermark {
    font-size: 40px;
  }
   .phone-row {
    flex-wrap: wrap;
  }
}

.whatsappimg {
  position: fixed;
  width: 60px;
  height: 60px;
  left: 20px;
  bottom: 5%;
  z-index: 2000;
}
