/* General Styles */


body {
  font-family: "Playfair Display", serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  overflow-x: hidden;
}
h1 {
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
}
/* Ensure no images overflow */
img,
video {
  max-width: 100%;
  height: auto;
}

h1 {
  text-transform: uppercase;
}

h1,
h2,
h3,
h5 {
  font-family: "Playfair Display", serif;
}

@media (max-width: 767px) {
  body {
    font-size: 16px; /* Adjust font size for mobile if necessary */
  }

  /* Make sure content fits within the viewport */
  .main-content,
  .header,
  .footer {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}

/* Banner Section */
.hero-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Images/Home-banner.jpeg") center/cover no-repeat;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-banner-contact {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Images/webp-images/Contact-page-banner.webp") center/cover
      no-repeat;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-banner-content {
  margin-top: 75px;
  text-align: center;
  color: white;
}

.hero-banner-content p{
  font-size: 20px;
}
.main-navbar .navbar-nav {
  margin-right: 300px;
}

.main-navbar .nav-item {
  padding-left: 50px;
}

.brand-logo {
  margin-left: 100px;
  height: 190px;
  width: auto;
  object-fit: contain;
}

.main-navbar .nav-link:hover {
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: rgb(175, 175, 176);
}

@media screen and (max-width: 992px) {


.hero-banner-contact {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Images/WhatsApp\ Image\ 2025-10-10\ at\ 9.16.36\ PM.jpeg") center/cover
      no-repeat;
  height: 400px;
  position: relative;
  overflow: hidden;
}

  .brand-logo {
    margin-left: 0px !important;
  }
  .hero-banner {
    height: 400px; /* reduce height for tablets */
  }
 

  .hero-banner-content {
    margin-top: 10px;
  }

  .main-navbar .nav-item {
    padding-left: 15px;
  }
}

@media screen and (max-width: 768px) {
  .hero-banner {
    height: 400px;
  }

  .hero-banner-content {
    margin-top: 10px;
  }

  .main-navbar {
    flex-direction: column;
    align-items: center;
  }

  .main-navbar .navbar-nav {
    flex-direction: column;
    text-align: center;
  }

  .main-navbar .nav-item {
    padding: 10px 0;
  }
}

@media screen and (max-width: 480px) {
  .hero-banner {
    height: 300px;
  }

  .hero-banner-content {
    margin-top: 10px;
    font-size: 14px;
    padding:0px; /* smaller text for mobile */
  }

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

/* Header Cards Section */
.header-cards-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: -50px 100px 50px;
  position: relative;
  z-index: 10;
}

.header-feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-feature-card:hover {
  background: linear-gradient(135deg, #c9a961 0%, #d4b76a 100%);
  border: none;
}

/* .header-feature-card.card-highlight {
} */

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 25px auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: #c9a961;
  stroke-width: 5.5;
  fill: none;
}

.header-feature-card:hover .feature-icon svg {
  stroke: white;
}

.header-feature-card h2 {
  color: #191d32;
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 600;
}

.header-feature-card:hover h2 {
  color: white;
}

.header-feature-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.header-feature-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Responsive Grid ===== */
@media screen and (max-width: 992px) {
  .header-cards-section {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    margin: -50px 50px 50px;
    gap: 20px;
  }

  .header-feature-card h2 {
    font-size: 22px;
  }

  .header-feature-card p {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .header-cards-section {
    grid-template-columns: 1fr; /* single column on small screens */
    margin: -30px 20px 30px;
    gap: 15px;
  }

  .header-feature-card {
    max-width: 100%;
  }

  .header-feature-card h2 {
    font-size: 18px;
  }

  .header-feature-card p {
    font-size: 16px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin: 20px auto;
  }
}

@media screen and (max-width: 480px) {
  .header-cards-section {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 20px 10px;
    width: 100%;
  }

  .header-feature-card {
    flex: 1;
    min-width: 0;
    background: white;
    border-radius: 10px;
    padding: 15px 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .header-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
  }

  .feature-icon svg {
    width: 100%;
    height: 100%;
    fill: #d4a574;
  }

  .header-feature-card h2 {
    font-size: 13px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .header-feature-card p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.4;
    margin: 0;
  }
}

/* About Section */
.about-section {
  margin-top: 80px;
}

.about-image-container {
  position: relative;
  width: 400px;
  height: 500px;
  overflow: visible;
}

.about-main-image-wrapper {
  padding-top: 20px;
  position: relative;
  width: 80%;
  height: 80%;
}

.about-main-image {
  border: 7px solid #ffffff;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 50%;
  background-color: #d3b89b;
}

.about-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 20px;
  background-color: #d3b89b;
}

.about-overlay-image-wrapper {
  position: absolute;
  bottom: 10px;
  left: 200px;
  width: 180px;
  height: 180px;
  border: 2px solid #f3f3f3;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.about-overlay-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text-content {
  margin-left: 100px;
}

.about-section h1 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 60px;
}

@media screen and (max-width: 480px) {
  .about-section {
    align-items: center;
    margin-left: 50px;
    margin-top: 40px;
  }

  .about-text-content {
    width: 300px;
    align-items: center;
    margin-left: 50px;
  }
}
/* Essence Section */
.essence-section {
  margin-top: 50px;
  margin-bottom: 80px;
  background-color: #f5f1f1;
}

.essence-section h1 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}

.essence-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  width: 250px;
  margin-left: 50px;
}

.essence-card:hover {
  color: aliceblue;
  background-color: #c9a961;
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.essence-icon {
  width: 70px;
  height: 70px;
}

/* Team Section */
.team-section {
  margin-top: 80px;
}

.team-subtitle {
  color: #c9a961;
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 1px;
}

.team-title {
  font-size: 56px;
  font-weight: 700;
  color: #191d32;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.team-member-card {
  width: 250px;
  height: 400px;
  background: white;
  overflow: hidden;

  transition: all 0.4s ease;
  cursor: pointer;
  margin-bottom: 30px;
  margin-right: 700px;
  border: none;
}

.team-card-content:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  color: white;
}

.team-image-container {
  position: relative;
  width: 250px;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.team-image-container img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-member-card:hover .team-image-container img {
  transform: scale(1.1);
}

.team-card-content {
  position: absolute;
  width: 220px;
  margin-bottom: 50px;
  margin-left: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s ease;
}

.team-member-card:hover .team-card-content {
  background: #c9a961;
  color: #ffffff;
}

.team-member-name {
  font-size: 13px;
  font-weight: 700;
  color: #191d32;
  margin-bottom: 10px;
  letter-spacing: 1px;
  transition: color 0.4s ease;
}

.team-member-position {
  font-size: 16px;
  color: #000107;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.4s ease;
}

/* ===== Mobile Responsive ===== */
@media screen and (max-width: 992px) {
  .team-member-card {
    width: 45%; /* 2 cards per row */
    margin-right: 5%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .team-member-card {
    width: 100%; /* full width on small screens */
    margin-right: 0;
  }

  .team-title {
    font-size: 40px; /* smaller title */
  }
}

@media screen and (max-width: 480px) {
  .team-title {
    font-size: 32px;
  }

  .team-subtitle {
    font-size: 16px;
  }

  .team-member-name {
    padding-top: 8px;
    font-size: 16px;
  }

  .team-member-position {
    font-size: 16px;
  }

  .team-image-container {
    height: 200px;
  }

  .team-member-card {
    height: 300px; /* adjust height automatically */
    margin-bottom: 20px;
    align-items: center;
    margin-left: 90px;
  }
}

/* Gallery Carousel Section */
.gallery-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
  background-color: #f5f1f1;
}

.gallery-slides-container {
  display: flex;
  animation: scroll 10s linear infinite; /* continuous scroll */
}

.gallery-slide {
  display: flex;
}

.gallery-slide::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  position: relative;
  height: 250px;
  width: 250px;
}

.gallery-item img {
  height: 250px;
  width: 250px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.gallery-caption {
  position: absolute;
  width: 255px;

  top: 0; /* cover full image */
  left: -8px;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex; /* use flexbox */
  justify-content: center; /* horizontal center */
  align-items: center; /* vertical center */
  font-size: 30px;
  opacity: 0; /* initially hidden */
  transition: opacity 0.1s ease;
  text-align: center; /* center multi-line text */
  pointer-events: none;
}

.gallery-item:nth-child(4):hover .gallery-caption,
.gallery-item:nth-child(5):hover .gallery-caption {
  opacity: 1;
}

.gallery-item:nth-child(1) .gallery-caption,
.gallery-item:nth-child(2) .gallery-caption,
.gallery-item:nth-child(3) .gallery-caption {
  opacity: 1;
}

.gallery-item:nth-child(4):hover img,
.gallery-item:nth-child(5):hover img {
  transform: scale(1.05);
  transition: none;
}

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

.gallery-carousel-wrapper:hover .gallery-slides-container {
  animation-play-state: paused;
}

/* ===== Mobile: Tablets (max-width: 768px) ===== */
@media screen and (max-width: 768px) {
  .gallery-item {
    height: 180px;
    width: 180px;
  }

  .gallery-item img {
    height: 180px;
    width: 180px;
  }

  .gallery-caption {
    font-size: 20px;
    padding: 5px;
  }

  .gallery-slides-container {
    animation: scroll 15s linear infinite; /* slower scroll */
  }
}

/* ===== Mobile: Small Phones (max-width: 480px) ===== */
@media screen and (max-width: 480px) {
  .gallery-item {
    height: 120px;
    width: 120px;
  }

  .gallery-item img {
    height: 120px;
    width: 120px;
  }

  .gallery-caption {
    font-size: 16px;
    padding: 4px;
  }

  .gallery-slides-container {
    animation: scroll 10s linear infinite; /* even slower scroll */
  }
  .bureau-title {
    font-size: 28px !important;
  }
  .header-title {
    font-size: 28px !important;
  }
  .contact-phone {
    font-size: 28px !important;
  }
}

/* Footer Section */
.site-footer {
  background-color: rgb(12, 12, 67);
  color: white;
  padding: 40px 20px 20px;
}

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

.footer-section .brand-logo {
  height: 150px;
  margin: 0 auto 20px;
}

.footer-section {
  text-align: left;
  margin-left: 50px;
  width: 300px;
}

 .footer-section-partner .footer-section-quick{
    margin-left: 80px;
  }

.footer-section .brand-logo {
  height: 150px;
  margin: 0 auto 10px;
}

.footer-section h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #c9a961;
  margin-left: 30px;
  font-weight: bold;
}


.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
  margin-right: 30px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #c9a961;
  text-decoration: underline;
}

.footer-section p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr; /* stack sections vertically */
    gap: 15px;
    text-align: center;
    /* margin-left: 70px; center everything inside the container */
  }

  .footer-section {
    text-align: center; /* center all text in each section */
    margin-left: 0; /* remove fixed margin */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-section h3 {
    margin-bottom: 10px;
    margin-right: 60px;
  }

  .footer-section ul {
    padding: 0;
    list-style: none;
    text-align: center; /* center list items */
  }

  .footer-section .brand-logo {
    height: 100px;
    margin: 0 10px; /* center logo */
    display: block;
  }
}

/* Import Google Fonts if needed, or use system fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap'); */

:root {
  --dark-blue-bg: #11141a; /* Very dark background color */
  --gold-accent: #c0a068; /* Subtle accent color (if needed) */
}

/* Base Styling */
.contact-page-template {
  background-color: var(--dark-blue-bg);
  color: #ffffff;
  font-family: "Playfair Display", serif; /* Use a clean, default font */
}

/* Header Text Styling */
.header-title {
  background-color: #dfcb9e;;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  padding: 30px;
  color: #ffffff;
}

/* Bureau/Image Section */
.image-section-wrapper {
  /* Sets the dimensions and uses the background image */
  height: 600px; /* Adjust height as needed */
  background: url("Images/Contact-middle.jpeg") no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex; /* Used to center the text content */
  /* align-items: center; */
  padding-top: 30px;
  justify-content: center;
}

/* Overlay to darken the image and make text legible */
.image-section-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.image-content {
  position: relative; /* Keep content above the overlay */
  z-index: 10;
}

.bureau-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.bureau-address {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.btn-map {
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.3s;
}

.btn-map:hover {
  background-color: #ffffff;
  color: var(--dark-blue-bg);
}

/* Contact Details */
.contact-phone {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-email {
  font-size: 24px;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.navbar {
  background: transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: white !important;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand img {
  max-height: 87px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  color: #f5f6f7 !important;
}

.nav-link:hover,
.nav-link.active {
  color: #c9a961 !important;
  /* background-color: rgba(255, 255, 255, 0.15); */
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #c9a961;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 90%;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Fix */
.navbar-collapse {
  transition: all 0.3s ease;
  margin-right: 19pc;
}

.navbar-collapse.show {
  padding: 1rem;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 3.7rem !important;
}

.nav-item {
  width: 100%;
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar-brand {
    font-size: 1.5rem;
    margin-left: 0.5rem;
  }

  .nav-link {
    margin: 0.25rem 0;
    padding: 0.75rem 1.5rem !important;
    color: #000203 !important;
  }

  .navbar-collapse {
    background-color: rgba(250, 251, 255, 0.95);
    margin-top: 0.5rem;
    border-radius: 4px;
    padding: 1rem;
  }

  .nav-link:hover,
  .nav-link.active {
    border-left: 3px solid rgb(5, 35, 230);
    padding-left: 1.25rem !important;
  }

  .nav-link::after {
    display: none;
  }
  .navbar-nav {
    gap: 0px !important;
  }
  .navbar-collapse {
    margin-right: 0px;
  }
}

@media (min-width: 768px) {
  .navbar-nav {
    align-items: center;
    gap: 0.5rem;
    flex-direction: row;
  }

  .nav-item {
    width: auto;
  }

  .navbar-collapse.show {
    background-color: transparent !important;
    margin-top: 0 !important;
    padding: 0 !important;
  }
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: right;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 3rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero {
    margin-right: 1rem;
    text-align: center;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
