*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Hide body initially to prevent FOUC */
html.js-loading body {
  visibility: hidden;
}

/* Enable Smooth Scrolling */
html {
  overflow-x: hidden; /* Prevent horizontal scrolling */
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden; /* Prevent horizontal scrolling */
  width: 100%; /* Ensures body doesn't try to be wider than html if html has overflow-x:hidden */
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  /* Changed to subtle grey */
}

img,
video {
  max-width: 100%;
  height: auto; /* Maintains aspect ratio */
  display: block; /* Can help prevent extra space below inline images */
}

/* NAVIGATION */

nav {
  position: fixed;
  width: 100%;
  z-index: 100;
}

.nav-mobile {
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 64px;
  padding-right: 64px;
  height: 150px;
}

.website-logo {
  width: 200px;
}

.icon {
  font-size: 50px;
  color: white;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  line-height: 1;
  text-decoration: none;
}

/* NAV MENU */

.topnav {
  background-color: rgba(0, 0, 0, 0.8);
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  min-height: 100vh;
  display: none;
}

.topnav a,
.dropbtn {
  display: flex;
  width: 100%;
  text-align: left;
  padding: 30px 64px;
  text-decoration: none;
  color: #f2f2f2;
  background: none;
  border: none;
  outline: none;
  font-size: 17px;
  cursor: pointer;
  align-items: center;
}

.dropdown-indicator {
  margin-left: 5px;
  font-size: 0.7em;
}

.dropdown {
  width: 100%;
  position: relative;
}

.dropdown-content {
  background-color: #1a1a1a;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.dropdown-content a {
  color: #c6c6c6;
  padding: 15px 64px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #333;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.responsive {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.dropdown-content.show {
  max-height: 500px;
}

/* Sub-menu Active State */
.topnav.sub-menu-active .dropdown:not(.active-sub-menu),
.topnav.sub-menu-active .cta-nav-button {
  display: none;
}

.topnav.sub-menu-active .dropdown.active-sub-menu .dropdown-content {
  max-height: 500px;
}

.topnav.sub-menu-active .dropdown.active-sub-menu .dropbtn .dropdown-indicator::before {
  content: "\f060";
  /* Font Awesome 'arrow-left' */
}

/* CTA NAV BUTTON */

.cta-nav-button {
  background-color: #B2935B;
  color: #1a1a1a;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-nav-button:hover {
  background-color: #B2935B;
  color: #1a1a1a;
}

.cta-nav-button:active {
  background-color: #ffffff;
  color: #333;
}

/* FOCUS STYLES */

.icon:focus-visible,
.dropbtn:focus-visible,
.topnav a:focus-visible,
.dropdown-content a:focus-visible {
  outline: 2px solid dodgerblue;
  outline-offset: 2px;
}

/* HERO SECTION */

.hero-section {
  position: relative;
  padding: 80px 64px;
  text-align: center;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  overflow: hidden;
  background-color: #000;
}

.hero-video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: left;
}

.hero-content h1 {
  color: white;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero-ms {
  margin-bottom: 3em;
}

.hero-subtext {
  margin-bottom: 1.5em;
}

.hero-headline {
  margin-bottom: 0.8em;
}

.hero-paragraph {
  margin-bottom: 30px;
}

.cta-button {
  background-color: #B2935B;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  display: inline-block;
  /* Ensure transform applies correctly */
  transition: background-color 0.3s ease, transform 0.15s ease-out;
  /* Faster transition for responsiveness */
  position: relative;
  /* Needed for pseudo-element */
  overflow: hidden;
  /* Hide overflowing pseudo-element */
  z-index: 1;
  /* Ensure text is above pseudo-element */
}

.cta-button:hover {
  background-color: #a18451;
}

/* Removed ::before and :hover::before rules for lens flare */


/* MAIN PADDING */

main {
  padding-top: 150px;
}

/* WHO WE ARE */

.who-we-are-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.our-story-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.our-mission-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.meet-founders-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 20px; /* Add side padding */
  padding-right: 20px; /* Add side padding */
  text-align: left;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 0.8em;
}

.section-headline {
  font-size: 2.5rem;
  font-weight: bold;
  color: #B2935B;
  margin-bottom: 1.5em;
  line-height: 1.3;
}

.section-body {
  text-align: left;
  color: #000000;
  margin-bottom: 2.5em;
}

.section-body p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5em;
}

.section-cta-button {
  display: inline-block;
  background-color: #B2935B;
  color: #ffffff;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.section-cta-button:hover {
  background-color: #a18451;
}

/* WHY PARTNER */

.why-partner-section {
  background-color: #f9f9f9;
  position: relative;
  padding: 60px 0; /* Remove horizontal padding */
}

.section-heading-gold {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 64px;
  /* Use margin to push up from bottom */
  position: relative;
  /* Change from absolute */
  /* bottom: 64px; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  z-index: 10;
  width: 90%;
  /* Prevent text wrapping if too wide */
  max-width: 700px;
  /* Match content wrapper width */
}

.image-zoom-container {
  min-height: 600px;
  perspective: 1000px;
  overflow: hidden;
  width: 100%;
  position: relative;
  /* Ensure this is the positioning context */
  aspect-ratio: 2.35 / 1;
  display: flex;
  /* Use flexbox */
  flex-direction: column;
  /* Stack items vertically */
  justify-content: flex-end;
  /* Push content (heading) to the bottom */
  align-items: center;
  /* Center heading horizontally */
}

.section-image {
  /* This class now applies to the <video> tag */
  /* Image needs to be positioned absolutely to allow heading overlay */
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 33%;
  transform-origin: 50% 33%;
  transition: transform 0.6s ease-out;
  z-index: 1;
  /* Behind heading and overlay */
}


/* Elevate CTA Section */
.elevate-cta-section {
  /* Add specific styles if needed, otherwise uses content-section-dark */
  position: relative; /* For overlay positioning */
  background-image: url('../assets/images/pictures/pexels-ian-panelo-6564826-scaled.jpg'); /* Placeholder path */
  background-size: cover;
  background-position: center center;
  background-attachment: fixed; /* Optional: Parallax effect */
  color: #ffffff; /* Ensure text is white */
  padding: 100px 20px; /* Increase padding */
}

.elevate-cta-section::before { /* Overlay for text readability */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 1;
}

.elevate-cta-section .content-wrapper {
  position: relative; /* Ensure content is above overlay */
  z-index: 2;
}

.image-zoom-container:hover .section-image {
  transform: scale(1.4);
  /* Keep the scale effect */

}

/* Add dark overlay for text visibility */
.image-zoom-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Adjust opacity (0.4) as needed */
  z-index: 5;
  /* Position between image and heading */
  pointer-events: none;
  /* Allow hover effects on container */
}



/* --- Cards Section --- */
.cards-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  /* Changed to subtle grey */
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* Center cards horizontally */
  gap: 30px;
  /* Space between cards */
  max-width: 1200px;
  /* Optional: constrain overall width */
  margin: 0 auto;
  position: relative;
  /* Needed for absolute positioning of cards */
  min-height: 550px;
  /* Slightly increased height */
}

.card {
  background-color: #000000;
  color: #ffffff;
  /* White text */
  padding: 40px 30px;
  /* Vertical and horizontal padding */
  border-radius: 8px;
  /* Optional: slightly rounded corners */
  text-align: center;
  /* flex: 1 1 300px; */
  /* Initially not flex items */
  max-width: 350px;
  /* Max width per card */
  display: flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Removed default position/opacity/transform - handled by animation rules */
  perspective: 800px;
  /* Add perspective for 3D tilt */
  transform-style: preserve-3d;
  /* Help with 3D rendering */
  flex-direction: column;
  align-items: center;
}

/* Entry Animation Styles - ONLY for cards in .cards-section */
/* .cards-section .card { */
/* Commented out - Handled by new rules below */
/* position: absolute; */
/* top: 110%; */
/* left: 50%; */
/* opacity: 0; */
/* transform: translateX(-50%) rotateZ(var(--initial-rotate, 0deg)) scale(0.8); */
/* transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.9s ease-out, top 1.2s ease-out, left 1.2s ease-out, position 0s 1.2s; */
/* transition-delay: var(--delay, 0s); */
/* } */

/* Restore inner wrapper styles */
.card-inner-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: #000000; */
  /* No longer needed */
  background-color: #000000;
  /* Match card background */
  border-radius: inherit;
  /* Inherit card's rounded corners */
  transition: transform 0.3s ease-out;
  /* Restore hover transition */
}

.card-icon {
  margin-bottom: 25px;
  /* Style icon itself */
  /* transition: transform 0.3s ease; */
  /* No longer needed */
}

.card-icon i {
  font-size: 3rem;
  /* Adjust icon size */
  color: #B2935B;
  /* Gold icon color */
  /* transition: transform 0.3s ease-in-out; */
  /* Remove transition from icon */
}

/* Add Icon Wiggle on Card Hover */
/* .card:hover .card-icon i { ... } */
.card-headline {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 15px;
}

.card-text {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 700px;
  /* As requested, though card width might constrain it more */
  margin-top: 0;
  margin-bottom: 30px;
  flex-grow: 1;
  /* Allow text to push button down */
}

.card-button {
  display: inline-block;
  background-color: #000000;
  /* Black background */
  color: #ffffff;
  /* White text */
  border: 1px solid #B2935B;
  /* Gold border */
  padding: 12px 28px;
  border-radius: 4px;
  position: relative;
  /* Needed for pseudo-element */
  overflow: hidden;
  /* Hide overflowing pseudo-element */
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: auto;
  /* Push button to bottom if card heights vary */
  z-index: 1;
  /* Ensure text is above pseudo-element */
}

/* 3. Button Border Gradient Animation - Setup */
.card-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  /* Start off-screen */
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(178, 147, 91, 0.4), transparent);
  /* Gold shine gradient */
  transition: left 0.5s ease-out;
  z-index: -1;
  /* Place behind button text */
}

/* Make whole card wiggle on hover */


/* Apply hover transform to the inner wrapper */
.card:hover .card-inner-wrapper {
  /* Restore hover effects from inner wrapper */
  transform: translateX(var(--move-x, 0px)) translateY(var(--move-y, 0px)) scale(1.02);
  /* Removed tilt variables */
}


.card-button:hover {
  background-color: #B2935B;
  /* Gold background on hover */
  color: #000000;
  /* Black text on hover */
}

/* 3. Button Border Gradient Animation - Animate on Card Hover */
/* Animate when hovering the CARD */
.card:hover .card-button::before {
  left: 100%;
  /* Move gradient across the button */
}



/* --- Footer --- */
footer {
  background-color: #222222;
  /* Dark grey background */
  color: #ffffff;
  padding: 80px 0 0;
  /* Remove side padding, keep top */
  position: relative;
  /* Needed for absolute positioning of video */
  font-family: Arial, sans-serif;
  /* Or your preferred sans-serif */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  /* Default to vertical stack for mobile-first */
  display: block;
  /* display: flex; */
  /* We'll apply flex for larger screens later */
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px 40px 20px;
  /* Add side padding here, keep bottom */
  padding-bottom: 40px;
  /* Space before bottom bar */
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 40px;
  /* Increased space between stacked sections */
  text-align: left;
  /* Ensure left alignment */
}

.footer-logo-img {
    display: block;  /* Behaves like a block element, preventing odd inline spacing issues */
    margin-bottom: 15px; /* Adds some space between the logo and the description text below it */
    /* Optional: If the logo still appears too large even when scaled to 100% of a small
       container, you can set a more specific maximum pixel width. For example:
       max-width: 180px; */
}

.footer-logo-img {
    max-width: 100%; /* Makes the image responsive */
    height: auto;    /* Maintains aspect ratio */
    /* other styles */
}


.footer-heading {
  font-size: 1.1em;
  /* Slightly smaller heading */
  font-weight: bold;
  margin-bottom: 10px;
  /* Reduced space below heading */
  color: #e0e0e0;
  margin-top: 0;
}

.footer-description,
.footer-contact address,
.footer-links li {
  font-size: 0.9rem;
  /* Slightly smaller paragraph text */
  line-height: 1.7;
  /* Increased line height for paragraph */
  color: #c6c6c6;
}

.footer-description { /* Targets the paragraph below the logo in the .footer-about section */
    overflow-wrap: break-word; /* Ensures long words or unbroken strings wrap to the next line */
    word-wrap: break-word; /* Older browser compatibility for overflow-wrap */
}

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

.footer-links li {
  margin-bottom: 5px;
  /* Reduced space between links */
}

.footer-links a,
.footer-contact address a {
  color: #ffffff;
  /* White links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact address a:hover {
  color: #ffffff;
  /* Keep white on hover */
  /* color: #B2935B; */
  /* Gold hover */
  text-decoration: none;
  /* Remove hover underline */
}

/* Remove bottom margin specifically for the text block in Why Partner section */
.why-partner-section .text-content-wrapper .section-body {
  margin-bottom: 0;
}

.footer-contact address {
  font-style: normal;
}

.footer-bottom {
  background-color: #000000;
  /* Black background */
  text-align: center;
  padding: 10px 10px;
  /* Reduced padding */
  font-size: 0.85em;
  color: #a0a0a0;
}


/* --- Footer --- */
footer {
  background-color: #222222;
  /* Dark grey background */
  color: #ffffff;
  padding: 60px 0 0; /* No horizontal padding on footer element itself */
  /* Remove side padding, keep top */
  position: relative;
  /* Needed for absolute positioning of video */
  font-family: Arial, sans-serif;
  /* Or your preferred sans-serif */
}

.footer-container {
  
  margin: 0 auto;
  /* Default to vertical stack for mobile-first */
  display: block;
  /* display: flex; */
  /* We'll apply flex for larger screens later */
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px 40px 20px;
  /* Add side padding here, keep bottom */
}

.footer-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  /* Behind content */
}

.footer-video {
  position: absolute;
  /* Both videos need absolute positioning */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Cover the area */
  object-position: center center;
  /* Center the video */
  /* opacity: 0; */
  /* No longer needed */
  transform: scale(1.0);
  /* Zoomed out completely */
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  /* Smooth transition for transform */
  background-color: #000;
  /* Add background to prevent flicker during load/swap */
}

/* Add overlay using a pseudo-element on the footer */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* Darker overlay (80%) */
  z-index: 2;
  /* Position between video (1) and content (3) */
}



/* Wrapper for actual footer content */
.footer-content-wrapper {
  position: relative;
  /* Position above video */
  z-index: 3;
  /* Ensure content is above the new overlay */
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 40px;
  /* Increased space between stacked sections */
  text-align: left;
  /* Ensure left alignment */
}

.footer-logo-img {

  /* Slightly larger logo */
  width: 200px;
  margin-bottom: 15px;
}

.footer-heading {
  font-size: 1.1em;
  /* Slightly smaller heading */
  font-weight: bold;
  margin-bottom: 10px;
  /* Reduced space below heading */
  color: #e0e0e0;
  margin-top: 0;
}

.footer-description,
.footer-contact address,
.footer-links li {
  font-size: 0.9rem;
  /* Slightly smaller paragraph text */
  line-height: 1.7;
  /* Increased line height for paragraph */
  color: #c6c6c6;
}

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

.footer-links li {
  margin-bottom: 5px;
  /* Reduced space between links */
}

.footer-links a,
.footer-contact address a {
  color: #ffffff;
  /* White links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact address a:hover {
  color: #ffffff;
  /* Keep white on hover */
  /* color: #B2935B; */
  /* Gold hover */
  text-decoration: none;
  /* Remove hover underline */
}

.footer-contact address {
  font-style: normal;
}

/* Style for footer contact icons */
.footer-contact-icon {
  margin-right: 8px;
  /* Add space between icon and text */
  width: 1em;
  /* Ensure consistent width */
}

.footer-bottom {
  background-color: #000000;
  /* Black background */
  text-align: center;
  padding: 10px 10px;
  /* Reduced padding */
  font-size: 0.85em;
  color: #a0a0a0;
}



/* Add space above the text block in Why Partner section */
.text-content-wrapper {
  margin-top: 60px;
  padding: 0 20px; /* Add horizontal padding here */
  /* Adjust this value for desired spacing */
}




/* Removed extra closing brace */




/* --- About Page Specific Styles --- */

/* [1] Hero Section */
.about-hero {
  background-size: cover;
  background-position: center center;
  position: relative;
  min-height: 25vh;
  /* Adjusted height */
  display: flex;
  /* Enable flex for centering */
  align-items: center;
  justify-content: center;
}

.hero-overlay {

  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  /* Adjusted gradient */
  z-index: 1;
}



.about-hero .hero-headline {
  font-size: 3rem;
  margin-bottom: 0.5em;
  /* Space between heading and subheading */
}

.about-hero .hero-paragraph {
  font-size: 1.2rem;
  margin-bottom: 0;
  /* Remove default margin */
}

/* General About Page Section Styling */
.about-page-section {
  padding: 80px 20px;
  /* Generous padding */
}

.about-page-section.alternate-bg {
  background-color: #000000;
  /* Black background */
  color: #ffffff;
  /* White text */
}

.about-page-section .content-wrapper {
  max-width: 800px;
  /* Consistent max-width */
  margin: 0 auto;
  text-align: center;
  /* Center content by default */
}

.about-page-section.alternate-bg .content-wrapper {
  /* Ensure default text color is white in dark sections */
  color: #ffffff;
}


.section-subheadline {
  font-size: 1.8rem;
  /* color: #333; */
  /* Color handled by section */
  margin-bottom: 1em;
}

.gold-heading {
  color: #B2935B;
  /* Gold/Beige color */
  font-weight: bold;
  /* text-transform: uppercase; */
  /* Optional */
}

/* [2] WHO WE ARE Section */
#who-we-are .section-body p {
  font-size: 1.1rem;
  /* Example size */
  line-height: 1.6;
}

    /* Mantra Block Styling */
    .mantra-block {
      text-align: center; /* Center the block */
      margin-bottom: 1.5em; /* Reduced space below block */
      position: relative; /* For the divider line */
      padding-bottom: 1em; /* Space for the divider line */
    }

    .mantra-item {
      font-size: 2.2rem; /* Slightly smaller than main headline */
      font-weight: 600; /* Semi-bold */
      line-height: 1.2;
      margin: 0.1em 0; /* Reduce vertical space between items */
      color: #555; /* Default darker grey */
    }

    .mantra-item.gold-heading {
      color: #B2935B; /* Apply gold color */
      font-weight: 700; /* Make start/end slightly bolder */
    }

    /* Divider line */
    .mantra-block::after {
        content: '';
        display: block;
        width: 80px; /* Short divider */
        height: 2px;
        background-color: #e0e0e0; /* Light grey */
        margin: 1em auto 0 auto; /* Center below text */
    }

.founder-profile {

  margin-bottom: 15px;
}

/* [3] OUR STORY Section */
#our-story .section-body p {
  font-size: 1.1rem;
  /* Example size */
  line-height: 1.6;
}

    /* Adjust top margin for section body after mantra */
    .who-we-are-section .section-body {
        margin-top: 2.5em; /* Increased space above paragraph */
    }


/* [4] MEET THE FOUNDERS Section */
.founders-grid {
  display: flex;
  flex-direction: column;
 
}

.founder {
  display: flex;
  flex-direction:column;
  align-items: center; /* Change align-content to align-items */
  /* Stacked by default */
  text-align: center;
  /* Center image */
}

  /* Pullout Quote Style */
  .pullout-quote {
    font-size: 1.4em; /* Larger font size */
    font-style: italic; /* Italicize */
    color: #B2935B; /* Use the gold color */
    border-left: 4px solid #B2935B; /* Add a gold left border */
    padding-left: 1.5em; /* Indent the text */
    margin: 2em 10%; /* Add vertical margin and horizontal margin for centering/indentation */
    max-width: 80%; /* Prevent it from being too wide */
    line-height: 1.5;
    text-align: center; /* Center the quote text */
  }

  /* Statement Block Style (Alternative to Pullout Quote) */
.statement-block {
  font-size: 1.5em; /* Larger font */
  font-weight: bold; /* Bold */
  font-style: normal; /* Not italic */
  color: #707070; /* White text on dark background */
  text-align: center; /* Center align */
  margin: 2.5em auto; /* Vertical and horizontal margin */
  max-width: 80%; /* Limit width */
  line-height: 1.4; /* Adjust line height */
  border-top: 1px solid #c0c0c0; /* Soft top line */
  border-bottom: 1px solid #c0c0c0; /* Soft bottom line */
  padding: 1em 0; /* Padding around lines */
}
.statement-block span {
    display: block; /* Each sentence on its own line */
}

.founder-image {
  width: 200px;
  /* Adjust size */
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eee;
  /* Added light grey border/frame */
  margin-bottom: 20px;
}

.founder-text {
  text-align: center;
  /* Align text left */
}

.founder-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  /* Black name */
  margin-bottom: 5px;
}

.founder-title {
  font-size: 1rem;
  color: #555;
  font-style: italic;
  /* Italic role */
  margin-bottom: 15px;
}

.founder-bio p {
  font-size: 1rem;
  /* text-align: left; */ /* Remove left alignment to allow centering */
  line-height: 1.6;
  margin-bottom: 1em;
}

/* Style for bolded text within founder bios */
.founder-bio strong {
  color: #a18451; /* Darker gold color */
  font-weight: 600; /* Ensure it's sufficiently bold */
}

/* Our Mission */
.mission-list {
  list-style: none;
  padding-left: 0;
  /* font-weight: bold; */ /* Remove bold from entire list */
}

.mission-list li, #our-mission .section-body p {
  color: #4e4e4e;
  text-align: left;}

.value-description {
  font-size: 0.9rem;
  color: #ffffff;
  /* White description */
  /* color: #555; */
  /* Removed conflicting color */
  line-height: 1.6;
}

.mission-list li {
  margin-bottom: 32px; /* Added more vertical breathing room */
  padding-left: 3em; /* Increased padding for icon */
  position: relative;
}

.mission-list li strong {
  display: block; /* Make bold part take its own line */
  font-weight: 600; /* Ensure bold */
  margin-bottom: 0.2em; /* Small space below bold part */
 }

.mission-list li::before {
  content: "\f138"; /* Font Awesome circle-chevron-right icon */
  font-family: "Font Awesome 6 Free"; /* Specify Font Awesome font */
  font-weight: 900; /* Use the solid style */
  position: absolute;
  left: 0; /* Position icon at the start */
  color: #B2935B;
  font-size: 1em; /* Adjust icon size if needed */
  top: 0.1em; /* Adjust vertical alignment if needed */
}



  .about-hero .hero-content {
    z-index: 2;
    /* Ensure content is above overlay */
  }

  .about-hero .hero-headline {
    font-size: 3rem;
    margin-bottom: 0;
    /* No subheading, remove margin */
  }

  .about-hero .hero-paragraph {
    /* font-size: 1.2rem; */
    /* Subheading removed */
    margin-bottom: 0;
    /* Remove default margin */
  }

  .section-separator {
    height: 2px; /* Thickness */
    width: 100%; /* Width from inline style */
    background-color: rgb(220, 220, 220); /* Color from inline style */
    margin: 60px auto; /* Center the line horizontally and add vertical spacing */
  }


  #our-values.cards-section .cards-container {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  #our-values.cards-section .card {
    flex: 1 1 300px !important;
    max-width: 350px;
  }


  .bbli {
    opacity: 0;
    transform: translateY(40px);
    animation: slideFadeIn 1s forwards;
  }

  /* Stagger the animations */
  .bbli:nth-of-type(1) {
    animation-delay: 0.2s;
  }

  .bbli:nth-of-type(2) {
    animation-delay: 0.4s;
  }

  .bbli:nth-of-type(3) {
    animation-delay: 0.6s;
  }

  /* --- Services Page Specific Styles --- */

/* Stats Section */
.stats-section {
  padding: 60px 20px; /* Standardized padding */
}
.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; /* Space out stats */
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}
.stat-item {
  text-align: center;
  color: #ffffff;
}
.stat-number {
  display: block;
  font-size: 2.5em;
  font-weight: bold;
  color: #B2935B; /* Gold color for numbers */
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.9em;
  color: #cccccc;
}


.content-section-light {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 0; /* Remove side padding from section */
  padding-right: 0;
}

.content-wrapper {
  padding-left: 20px; /* Add side padding to wrapper */
  padding-right: 20px;
}

/* Why Choose Us Section Adjustments */
.why-choose-us-section {
  padding: 60px 20px; /* Ensure standard padding */
}

/* Why Choose Us Section Adjustments */
.why-choose-us-section .content-wrapper > p { /* Target the paragraph directly under the heading */
    margin-bottom: 3.5em; /* Increase space below paragraph */
}

/* Why Choose Us Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
  gap: 30px;
  text-align: left; /* Align text left within grid items */
}
.why-choose-item {
    background-color: #B2935B;
    padding: 25px;
    border-radius: 8px;
    /* border: 2px solid #B2935B; */ /* Remove border */
    position: relative; /* Needed for shine effect */
    overflow: hidden; /* Hide overflowing shine */
    text-align: center; /* Center icon and text */
}
.why-choose-icon {
    font-size: 2.5em; /* Adjusted size */
    /* Remove gradient styles */
    color: #ffffff; /* Set color to white */
    margin-bottom: 0.75em;
    display: block; /* Ensure it takes block space */
}
.why-choose-item h4 {
  /* color: #B2935B; */ /* Gold heading */
  color: #ffffff; /* Make heading white for contrast */
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.why-choose-item p {
    font-size: 0.9em; /* Adjusted size */
    color: #ffffff; /* White text color */
}

/* Shine effect for Why Choose Us cards */
.why-choose-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* Start off-screen */
  width: 100%;
  height: 100%;
  /* Lighter gold/white shine */
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease-out;
  z-index: 1; /* Above background, below text/icon */
}
/* Contact Intro Points */
.contact-intro-points .intro-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

/* Animate shine on hover */
.why-choose-item:hover::before {
    left: 100%; /* Move shine across */
}
.intro-point-item {
  text-align: center;
  padding: 15px; /* Add some padding */
  border: 1px solid #eee; /* Add a very light border */
  border-radius: 4px; /* Slightly rounded corners */
}

/* Map Section Styling */
.map-section {
  padding: 0; /* Remove padding for full width */
  line-height: 0; /* Remove extra space below iframe */
}
.map-embed-placeholder iframe {
  display: block; /* Ensure iframe behaves like a block */
  width: 100%; /* Full width */
}

/* Make the main contact section dark */
.contact-info-form-section {
  background-color: #000000; /* Black background */
  color: #ffffff; /* White text */
}

/* Adjust text color in dark section */
.contact-info-form-section .contact-details p,
.contact-info-form-section .contact-form-container p {
    color: #ccc;
}

/* Add focus style to form inputs */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #B2935B;
    border-color: #B2935B;
}

.intro-point-icon {
  font-size: 2.5em;
  color: #B2935B;
  margin-bottom: 0.5em;
}
.intro-point-item h4 {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}
.intro-point-item p {
    font-size: 0.9em;
    color: #555;
}
/* --- Contacts Page Specific Styles --- */

.contact-page-wrapper {
  display: grid; /* Moved display here */
  grid-template-columns: 1fr; /* Stack columns by default */
  gap: 40px;
  max-width: 1100px; /* Allow wrapper to be wider */
} /* Moved closing brace here */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {

  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;

}
.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
}



/* Service Detail List Styling */
.service-detail-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5em; /* Space below heading */
}

.service-detail-list li {
  padding-left: 2em; /* Indent text for icon */
  position: relative;
  margin-bottom: 1em; /* Space between items */
  line-height: 1.6;
}

.service-detail-list li::before {
  content: "\f0da"; /* Font Awesome chevron-right icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* Solid style */
  color: #B2935B; /* Gold color */
  position: absolute;
  left: 0;
  top: 0.1em; /* Adjust vertical alignment */
}

/* --- Service Modal Styles --- */

.service-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000; /* Ensure it's on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if content is long */
  background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
  align-items: center; /* Vertical centering */
  justify-content: center; /* Horizontal centering */
}

.service-modal.modal-open {
  display: flex; /* Show modal */
}

.modal-content {
  background-color: #1a1a1a; /* Dark background for content */
  color: #ffffff; /* White text */
  margin: auto;
  padding: 30px 40px;
  border-radius: 8px;
  max-width: 700px; /* Limit modal width */
  width: 85%; /* Responsive width */
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-close-button {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
}

.modal-close-button:hover,
.modal-close-button:focus {
  color: #ffffff;
  text-decoration: none;
}

.modal-cta {
    margin-top: 1.5em; /* Space above button */
}

/* Prevent background scroll when modal is open */
body.modal-active {
    overflow: hidden;
}

/* Final CTA Section Styling */
.final-cta-section {
  position: relative; /* For overlay positioning */
  background-image: url('../assets/images/pictures/shot-of-a-team-of-businesspeople-together-in-their-2025-04-06-09-17-59-utc.jpg'); /* Placeholder path */
  background-size: cover;
  background-position: center center;
  background-attachment: fixed; /* Optional: Parallax effect */
  color: #ffffff; /* Make text white */
  padding: 60px 20px; /* Standardized padding */
}

.final-cta-section::before { /* Overlay for text readability */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 1;
}

.final-cta-section .content-wrapper {
  position: relative; /* Ensure content is above overlay */
  z-index: 2;
}

/* FOOTER DEFAULT */
.footer-container {
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Cards DEFAULT */
.card {
  flex-basis: 100%;
  max-width: 400px;
}

/* About Hero DEFAULT */
.about-hero .hero-headline {
  font-size: 3.5rem;
}
.about-hero .hero-paragraph {
  font-size: 1.4rem;
}
.about-page-section {
  padding: 100px 40px;
}
.founders-grid {
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.founder {
  text-align: left;
}
.about-hero .hero-content {
  z-index: 2;
}
.about-hero .hero-headline {
  font-size: 3rem;
  margin-bottom: 0;
}
.about-hero .hero-paragraph {
  margin-bottom: 0;
}

/* Values section */
#our-values.cards-section .cards-container {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
#our-values.cards-section .card {
  flex: 1 1 300px !important;
  max-width: 350px;
}

/* Contact Page DEFAULT */
.contact-page-wrapper {
  grid-template-columns: 1fr 1fr;
}




/* In your main.css file */

.contact-page-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    justify-content: space-between; /* Adjust as needed (e.g., space-around) */
    gap: 2em; /* Creates space between the columns */
}

.contact-form-container,
.contact-info-container {
    flex: 1; /* Allows both columns to grow and shrink */
    min-width: 300px; /* Adjust as needed for responsiveness, ensures columns don't get too squished before wrapping */
    /* You might want to add padding or other specific styles here */
}

/* Optional: Basic styling for the form elements if not already covered */
.contact-form-container form label {
    display: block; /* Makes labels take up their own line */
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.contact-form-container form input[type="email"],
.contact-form-container form textarea {
    width: 100%; /* Makes form fields take full width of their container */
    padding: 0.75em;
    margin-bottom: 1em;
    border: 1px solid #ccc; /* Example border */
    border-radius: 4px;
    box-sizing: border-box; /* Important for width calculations */
}

.contact-form-container form button[type="submit"] {
    /* Style your button as desired, e.g., using your .cta-button styles */
    display: inline-block;
    padding: 0.75em 1.5em;
    background-color: #B2935B; /* Use your theme's gold color */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.contact-form-container form button[type="submit"]:hover {
    opacity: 0.9; /* Example hover effect */
}

.contact-info-container .contact-info-block p {
    margin-bottom: 1em; /* Adds some space between contact info lines */
    line-height: 1.6;
}

.contact-info-container .contact-info-block .contact-icon {
    margin-right: 0.5em;
    color: white; /* Use your theme's gold color */
}

/* ============================================= */
/* Contact Form Styles                           */
/* ============================================= */

.contact-form-container form {
    display: flex;
    flex-direction: column; /* Stack form elements vertically */
}

.contact-form-container form label {
    margin-bottom: 8px;   /* Space below label */
    font-weight: bold;
    display: block;       /* Ensure label is on its own line */
    color: #333;          /* Or your preferred label color */
    font-size: 0.9rem;    /* Adjust as needed */
}

.contact-form-container form input[type="email"],
.contact-form-container form textarea {
    width: 100%;                      /* Full width for mobile */
    padding: 12px;                    /* Comfortable padding */
    margin-bottom: 20px;              /* Space below each field */
    border: 1px solid #ccc;           /* Standard border */
    border-radius: 5px;               /* Slightly rounded corners */
    box-sizing: border-box;           /* Crucial for width: 100% with padding/border */
    font-size: 1rem;                  /* Readable font size */
    line-height: 1.5;
    background-color: #fff;           /* Ensure background is white */
    color: #333;                      /* Text color */
}

.contact-form-container form input[type="email"]:focus,
.contact-form-container form textarea:focus {
    border-color: #B2935B; /* Highlight color on focus - using your gold theme */
    outline: none;         /* Remove default browser outline if custom border is enough */
    box-shadow: 0 0 0 2px rgba(178, 147, 91, 0.2); /* Optional: subtle glow for new gold */
}

.contact-form-container form textarea {
    min-height: 120px;                /* Decent default height for message */
    resize: vertical;                 /* Allow vertical resize, not horizontal */
}

/* Styling for the submit button */
.contact-form-container form .form-submit-button {
    background-color: #B2935B;        /* Updated Gold color */
    color: #ffffff;                   /* White text */
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    width: 100%;                      /* Full width on mobile */
    margin-top: 10px;                 /* Space above the button */
}

.contact-form-container form .form-submit-button:hover,
.contact-form-container form .form-submit-button:focus {
    background-color: #B2935B;        /* Gold color (same as base) for hover/focus */
    outline: none;
}

/* Adjustments for larger screens (tablets and desktops) */
@media (min-width: 768px) {
    .contact-form-container form .form-submit-button {
        width: auto;                  /* Allow button to size to its content */
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* MEDIA QUERIES */

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

  .nav-mobile {
  padding: 6%;
  }

}




@media screen and (min-width: 1024px) {


}

@media screen and (min-width: 1280px) {


}

@media screen and (min-width: 1536px) {


}

