/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Contact Bar */
.top-bar {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.contact-info {
    display: flex;
    justify-content: flex-end; /* Align contacts to the right */
    gap: 25px;
}

.contact-info span i {
    margin-right: 6px;
    color: #cccccc; /* Subtle grey for icons */
}

/* Main Navigation Bar */
.main-nav {
    background-color: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-flex {
    display: flex;
    justify-content: space-between; /* Logo left, Links right */
    align-items: center;
}

/* Logo Styling */
.nav-logo {
    height: 50px; /* Adjust this to change logo size */
    width: auto;  /* Maintains aspect ratio */
    display: block;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links li a {
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 25px; /* Rounded pill shape for buttons */
    transition: all 0.3s ease;
}

/* Hover State */
.nav-links li a:hover {
    color: #000000;
    background-color: #f5f5f5;
}

/* Active Page State (The Black Button) */
.nav-links li a.active {
    background-color: #000000;
    color: #ffffff;
}

/* Dropdown Arrow */
.fa-caret-down {
    font-size: 11px;
    margin-left: 4px;
}

/* Responsive: Stack contact info on small screens */
@media (max-width: 768px) {
    .contact-info {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .nav-links {
        display: none; /* Hide links on mobile - would need a burger menu */
    }
}
/* Container for the logo and text link */
.logo-link {
    display: flex;
    align-items: center; /* Vertically centers the text with the logo */
    text-decoration: none;
    gap: 15px; /* Space between the logo and the text */
}

/* The Logo Image */
.nav-logo {
    height: 50px; 
    width: auto;
    display: block;
}

/* The Brand Text */
.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo-text span {
    color: #666; /* Making the "NAME" part a subtle grey */
    font-weight: 300;
}

/* Ensure the main nav flex stays organized */
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Hero Section Container */
.hero {
    position: relative;
    height: 80vh; /* Adjust height (80% of screen) */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-small {
    height: 60vh;
}

/* Background Video Styling */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark Overlay to make text pop */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust 0.5 for more/less darkness */
    z-index: -1;
}

/* Text Content Styling */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: #c5a059; /* That gold/tan color from the image */
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Button Styling */
.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: #c5a059;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-primary:hover { background-color: #a38245; }
.btn-secondary:hover { background: #fff; color: #000; }
/* --- Global Overrides for Black & White Theme --- */
* {
    color: #000000; /* Force all text to black unless specified */
}

strong {
    font-weight: 700;
    color: #000000;
}

/* --- STATS & CLIENTS BAR --- */
.stats-clients {
    padding: 60px 0;
    border-top: 1px solid #eeeeee; /* Subtle separator line */
    background-color: #ffffff;
}

.stats-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Numeric Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #666666; /* Using a subtle grey for secondary text */
    margin-top: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Client Logos */
.clients-grid {
    display: flex;
    align-items: center;
    gap: 30px;
}

.client-logo {
    height: 60px; /* Adjust height based on logos */
    width: auto;
    max-width: 140px;
    object-fit: contain;
    /* Optional: Force logos to Grayscale if you have a colorful logo file */
    
    transition: filter 0.3s ease;
}

/* Optional hover to show original color (if you choose)
.client-logo:hover {
    filter: grayscale(0%);
} */


/* --- WHO WE ARE SECTION --- */
.who-we-are {
    padding: 80px 0;
    background-color: #f9f9f9; /* Extremely subtle grey background for contrast */
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Left column slightly wider */
    gap: 60px;
    align-items: center;
}

/* Image Gallery Layout */
.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two distinct areas for gallery */
    gap: 15px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images crop nicely inside their boxes */
    display: block;
}

.image-stacked {
    display: grid;
    grid-template-rows: 1fr 1fr; /* Stack the two smaller images vertically */
    gap: 15px;
    
}

/* Text Content styling */
.section-title {
    font-size: 2.2rem;
    font-weight: 300; /* "Who" is thin */
    color: #444444;
    margin-bottom: 25px;
}
/* ================= FORM SECTIONS ================= */
.join-section,
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.join-section h1,
.contact-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.join-section p,
.contact-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.join-form,
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.btn-submit {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #333;
}

/* ================= EVENTS GALLERY ================= */
.events-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.events-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.events-section p {
    text-align: left;
    
    color: #666;
    margin-bottom: 40px;
}

.events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.event-item:hover {
    transform: translateY(-5px);
}

.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-item h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: #000;
}

.event-item p {
    padding: 0 20px 20px;
    color: #666;
}
.section-title .black-text {
    font-weight: 800; /* "We Are" is bold */
    color: #000000;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333333;
}

/* Special styling for introductory strong paragraph */
.text-content .intro-p {
    font-size: 1.05rem;
    color: #222222;
}

/* Black & White Button Styling */
.btn-bw-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000000; /* Black background */
    color: #ffffff;            /* White text */
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #000000; /* Match background initially */
}

.btn-bw-primary i {
    font-size: 0.8rem;
    color: #ffffff; /* Keep icon white inside black button */
}

/* Hover State: Invert colors (White background, black text) */
.btn-bw-primary:hover {
    background-color: #ffffff;
    color: #000000;
}

.btn-bw-primary:hover i {
    color: #000000; /* Switch icon to black on hover */
}
.why-join {
    padding: 100px 0;
    background-color: #ffffff;
}

.margin-top {
    margin-top: 30px;
}

/* Accordion Styling */
.accordion {
    margin-top: 40px;
}

.accordion-item {
    border-top: 1px solid #eeeeee;
    padding: 20px 0;
}

/* Ensure the last item also has a bottom border if you like */
.accordion-item:last-of-type {
    border-bottom: 1px solid #eeeeee;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.accordion-header .icon {
    font-size: 12px;
    color: #000;
}

.accordion-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.accordion-body {
    padding: 15px 0 10px 30px; /* Aligns text under the heading */
    display: none; /* Hidden by default */
}

/* Styling for the active item */
.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active .accordion-header h4 {
    color: #000;
}

.accordion-body p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}
/* --- NEWS & UPDATES SECTION --- */
.updates-section {
    padding: 80px 0;
    background-color: #fff;
}

.updates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; /* No gap makes them sit flush like the screenshot */
    min-height: 400px;
}

.news-block, .events-block {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* The Black Block (replacing the blue) */
.events-block {
    background-color: #000;
}

.update-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.white-text { color: #fff; }

.update-subtext {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.events-block .update-subtext { color: #ccc; }

/* Pill Shaped Buttons */
.btn-pill-black {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-pill-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-pill-black:hover { background: #333; }
.btn-pill-outline:hover { background: #fff; color: #000; }

/* --- MINIMAL CENTERED FOOTER --- */
.minimal-footer {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.footer-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer-main-logo {
    height: 80px;
    width: auto;
    margin-bottom: 10px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

/* Social Circles */
.footer-social-circles {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social-circles a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social-circles a:hover {
    transform: translateY(-5px);
    background: #000;
    color: #fff;
}

.copyright-text {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    color: #333;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HERO ================= */
.hero-about {
    height: 60vh;
    background: url("hero-bg.jpg") center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 30, 60, 0.7);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 300;
}

.hero-content strong {
    font-weight: 700;
}

.breadcrumb {
    margin-top: 10px;
    opacity: 0.8;
}

.sub-hero-title {
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 2px;
}

/* ================= STORY SECTION ================= */
.story-section {
    padding: 80px 0;
    background: #f5f6f8;
}

.story-section .container {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* IMAGES */
.image-gallery {
    display: flex;
    gap: 15px;
}

.large-image img {
    width: 300px;
    border-radius: 10px;
}

.stacked-images img {
    width: 240px;
    display: block;
    margin-bottom: 15px;
    border-radius: 10px;
}

/* TEXT */
.section-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.section-title span {
    color: #1e3a5f;
    font-weight: bold;
}

.divider {
    width: 50px;
    height: 3px;
    background: #1e3a5f;
    margin: 10px 0 20px;
}

.content-box p {
    margin-bottom: 15px;
    color: #666;
}

/* ================= WHO WE ARE ================= */
.who-we-are {
    position: relative;
    padding: 100px 0;
}

/* split background */
.split-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    z-index: -1;
}

.left-white {
    width: 50%;
    background: #fff;
}

.right-image {
    width: 50%;
    background: url("bg-meeting.jpg") center/cover no-repeat;
    filter: brightness(0.5);
}

/* card */
.container-card {
    display: flex;
    justify-content: center;
}

.white-card {
    background: #fff;
    padding: 40px;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.card-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.card-title span {
    color: #1e3a5f;
}

.card-content p {
    margin-bottom: 15px;
    color: #666;
}

/* ================= MISSION ================= */
.mission-section {
    padding: 80px 0;
    background: #f5f6f8;
}

.mission-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.mission-image img {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
}

.mission-text p {
    margin-bottom: 15px;
    color: #666;
}

/* ================= VALUES ================= */
.values-section {
    padding: 80px 0;
    text-align: center;
}

/* top row */
.values-top-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.value-card {
    max-width: 400px;
}

.value-card i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #1e3a5f;
}

.value-card h3 {
    margin-bottom: 10px;
}

/* guiding title */
.guiding-title {
    font-size: 30px;
    margin: 40px 0;
}

/* bottom grid */
.values-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.core-item i {
    font-size: 25px;
    margin-bottom: 10px;
    color: #1e3a5f;
}

.core-item h4 {
    margin-bottom: 10px;
}

.core-item p {
    font-size: 14px;
    color: #666;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .story-section .container,
    .mission-flex {
        flex-direction: column;
    }

    .values-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-top-row {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .values-bottom-grid {
        grid-template-columns: 1fr;
    }
}


/* Wrapper for centering */
.button-wrapper {
  text-align: center;
  margin: 20px 0;
}

/* Button styling (Option 3) */
.event-photo-btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #01090f;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #000407;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.event-photo-btn:hover {
  background: #2980b9;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
}