/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;

    color: rgb(255, 255, 255);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
}

.navbar .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none; 
    color: white;         
}


.logo img {
    width: 50px;
}

.logo span {
    font-size: 1.6rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: gold;
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;   /* centers horizontally */
    align-items: center;       /* centers vertically */
    text-align: center;        /* centers text */
    padding: 0;                /* remove left padding */
    overflow: hidden;
    background-attachment: fixed; /* subtle parallax effect */
}
#our{
    margin-bottom: 50px;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("background.png") center/cover no-repeat;
    filter: blur(15px); /* adjust blur strength */
    transform: scale(1.1); /* prevents edges from showing */
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45); /* keep your dark overlay */
    z-index: 1;
}
.contact-btn {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700; 
    padding: 20px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
    margin-left: 10px;

}

.contact-btn:hover {
    background: #FFD700;      /* gold on hover */
    color: #000;              /* turn text black on hover for contrast */
}

.hero-content {
    position: relative;
    z-index: 2; /* text stays on top */
}



.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn {
    background: gold;
    color: black;
    padding: 20px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: rgb(150, 125, 0);

}

/* EXTRA SECTIONS */
.section {
    padding: 80px 10%;
    background: #ffffff;  
    text-align: center;
    color: #111;

}

.section:nth-child(even) {
    background: #f4f4f4;
}

.section h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

/* ABOUT SECTION */
.about {
    padding: 80px 10%;

    background: #fff;
    color: #111;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.about-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    width: 450px;
    /* background: #dadada; */
    background-image: url("background-section.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 30px;
    border-radius: 12px;
    box-shadow: 1px 4px 20px rgba(22, 22, 22, 0.514);
    text-align: justify;
    transition: 0.3s ease;
}



.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.486);
}

.card h3 {
    font-size: 30px;
    font-family:'Times New Roman', Times, serif;
    text-align: center;
    margin-bottom: 15px;
    color: #000000;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgb(0, 0, 0);
}
h1{
    padding: 20px;
    margin-bottom: 50px;
}

.why-choose-us {
    padding: 20px 10%;
    color: #000000;
    background-color: #fff; /* changed from dark to white */
}

.section-title {
    margin-top: 50px;
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-title span {
    color: #f2c94c; /* gold accent */
}

.intro-text {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.description {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Commitment Card */
.commitment-card {
    background: #0f121a;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    color: white;
}

.commitment-card .icon {
    font-size: 45px;
    color: #f2c94c;
}

/* Stats */
/* .stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    margin-top: 10px;
}

.stat h3 {
    color: #f2c94c;
    font-size: 28px;
    margin-bottom: 5px;
} */

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid #FFD700; /* gold color */
    border-bottom: 3px solid #FFD700; /* gold color */
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    margin: auto;
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-15px);
    }
    60% {
        transform: rotate(45deg) translateY(-7px);
    }
}

#head3{
    margin-bottom: 10px;
}

/* SERVICES SECTION */
.services {
    padding: 80px 10%;
    background: #ffffff;
    text-align: center;
}

.services-title {
    font-size: 36px;
    margin-bottom: 40px;
    align-self: center;
}

.services-title span {
    color: #ffbf00; /* gold */
}
.services-title{
    color:black
}

.services-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    width: 280px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #FFD700; /* gold border */
    text-align: center; 
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    margin-bottom: 50px;
    display: flex;           /* make card a flex container */
    flex-direction: column;  /* stack children vertically */
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05); /* move up + slight zoom */
    box-shadow: 0 12px 25px rgba(0,0,0,0.25); /* stronger shadow */
    border-color: #FFA500; /* brighter gold border on hover */
}


.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.service-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.service-icon {
    margin-bottom: 15px;
}

.learn-more {
    margin-top: auto;       /* push it to bottom */
    display: inline-block;
    color: #FFD700;         /* gold */
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.learn-more:hover {
    color: #FFD700;  /* brighter gold */
    text-decoration: underline;
    transform: scale(1.05);
    transition: color 0.3s ease, transform 0.3s ease;
}

.locations {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
    color: #111;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 30px;
    margin-top: 30px;
}

.map-container {
    position: relative;
    border: 3px solid gold;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    display: block;
}

.map-container p {
    padding: 20px    ;
    margin-top: 10px;
    font-weight: 600;
}

.low-middle {
    grid-column: 1 / -1;      /* spans both columns */
    justify-self: center;     /* centers the map */
    width: 50%;               /* makes it nicely centered */
}


/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.show {
    opacity: 1;
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: 0.8s ease;
}

.slide-left.show {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: 0.8s ease;
}

.slide-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Wrapper Style */
.contact-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    border: 1px solid #f1c40f;
    max-width: 700px;
    margin: 50px auto;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.7s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
}

/* Fade-in on scroll class */
.contact-section.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-section h2 {
    margin-bottom: 15px;
    font-size: 32px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #050505;
}

.contact-info a {
    text-decoration: none;
    color: #d4a706;
    font-weight: 600;
    transition: 0.3s;
}

.contact-info a:hover {
    color: #8c6a00;
    text-decoration: underline;
}


#contact{
    background-color: white;
}
.contact-us-h2{
    color: black;
}

.contact-p{
    color: black;
    margin-bottom: 10px;
}

.contact-place{
    margin-top: 20px;
    padding: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.contact-location {
  background-color: #f9f9f9; /* optional */
  padding: 15px;
  border-radius: 8px;
  border: 1px solid gold;
}

.contact-email,
.contact-hours {
  grid-column: span 2;
  text-align: center;
  margin-top: 20px;
  background-color: #f9f9f9; /* optional */
  padding: 15px;
  border-radius: 8px;
  border: 1px solid gold;
}
.contact-location h3{
    color: black;
}

.contact-location p,a{
    text-decoration: underline;
    color: #000000;
    font-size: 18px;
}

.contact-email h3{
    color: #000;
}

.contact-hours{
    color: #000;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 30px; /* space between icons */
    margin-top: 15px;
}

.contact-img {
    width: 60px;   /* smaller size */
    height: 60px;
    transition: transform 0.3s ease;
}

.contact-img:hover {
    transform: scale(1.2); /* small zoom on hover */
}

.contact-img-gmail {
    width: 70px;   /* smaller size */
    height: 60px;
    transition: transform 0.3s ease;
}

.contact-img-gmail:hover {
    transform: scale(1.2); /* small zoom on hover */
}

.org-clean-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.org-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.org-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.org-tier h3 {
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #000;
}

.org-tier .line {
    width: 180px;
    height: 3px;
    background: #222;
    margin: 0 auto 20px auto;
}

.org-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.org-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    border: 2px solid #e7c75f; /* gold border */
    width: 200px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.12);
    text-align: center;
    gap: 10px;
}

.org-person img.org-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFD700;
}

.org-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 5px 0;
    color: #000000;
}

.org-position, .org-branch {
    font-size: 0.9rem;
    margin: 2px 0;
    color: #333;
}

/* ORG PERSON HOVER EFFECTS */
.org-person {
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.org-person:hover {
    transform: translateY(-6px) scale(1.03);   /* slight lift + zoom */
    box-shadow: 0 10px 25px rgba(0,0,0,0.22);  /* deeper shadow */
    border-color: #ffdf40;                     /* brighter gold */
    background-color: #fffef4;                 /* soft gold-white glow */
}

/* Image hover */
.org-person:hover .org-img {
    transform: scale(1.08);
    border-color: #ffdf40;
    transition: 0.3s ease;
}

/* Name + Text hover */
.org-person:hover .org-name {
    color: #b38b00;
}

.org-person:hover .org-position,
.org-person:hover .org-branch {
    color: #5c5c5c;
}

.core-values {
    padding: 80px 10%;
    background-color: #fff;
    text-align: left;
    color: #111;
}

.core-values .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.core-values .section-title span {
    color: #FFD700; /* gold accent */
}

.core-values .intro-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 500;
    color: #333;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f9f9f9;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid #FFD700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.values-list .icon {
    flex-shrink: 0;
    margin-top: 3px; /* aligns with first line of text */
}

.values-list .value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
}

.values-list .value-text strong {
    font-weight: 600;
    color: #000;
}

/* Responsive */
@media screen and (max-width: 820px) {
    .values-list li {
        flex-direction: row;
        gap: 15px;
        padding: 15px 20px;
    }

    .core-values {
        padding: 50px 5%;
    }

    .core-values .section-title {
        font-size: 2rem;
    }

    .values-list .value-text {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 400px) {
    .values-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .values-list .icon {
        margin-top: 0;
    }
}

/* RESPONSIVE */
/* ORGANIZATION RESPONSIVE */


@media screen and (max-width: 820px) {
    .contact-buttons {
        gap: 14px;
        margin-top: 16px;
        flex-wrap: wrap;   /* icons won't overflow */
    }
    .fb-icon {
        width: 26px;       /* perfect size for 360px */
    }
    .CLDG{
        display: none;
    }
    .gmail-icon {
        width: 32px;
    }

    .location-box {
        width: 90%;                  /* smaller width */
        padding: 10px 12px;          /* reduced padding */
        font-size: 13px;             /* smaller text */
        margin: 6px auto;            /* tighter spacing */
    }

    .location-box h3 {
        font-size: 15px;             /* smaller section title */
    }

    .location-box p {
        font-size: 13px;
        line-height: 1.3;
    }

    .locations-grid {
        grid-template-columns: 1fr;  /* single column */
        gap: 10px;                   /* space between maps */
    }

    /* Keep map width full, shrink height slightly */
    .map-container {
        width: 100%;       /* full width */
        height: 200px;     /* shorter height */
    }

    .map-container iframe {
        height: 180px;     /* adjust iframe height */
    }

    /* Hide addresses */
    .map-container p {
        display: none;
    }

    .services-wrapper {
        display: grid !important; /* override flex */
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
        gap: 15px; /* adjust gap */
    }

    .service-card {
        width: 100%;       /* fill the grid column */
        padding: 15px;     /* smaller padding */
        font-size: 0.9rem; /* smaller text */
    }

    .service-icon svg {
        width: 35px;       /* smaller icon */
        height: 35px;
    }

    .learn-more {
        font-size: 0.85rem; /* smaller link text */
    }

    /* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-right: 50px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    transition: 0.3s;
}

/* MOBILE NAV */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        height: 100vh;
        width: 200px;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        padding-top: 50px;
        transition: 0.3s ease;
    }

    .nav-links.show {
        right: 0;
    }

    .hamburger {
        display: flex;
    }


    #contact {
        transform: scale(0.75);        
        transform-origin: top center;  
        padding: 0;                    
    }

    .email-long{
        font-size: 15px;
    }
    
}
@media screen and (max-width: 450px){
     .hero {
        padding:20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .CLDG{
        display: none;
    }
    .hero-content h1 {
        font-size: 1.8rem;      /* smaller but bold */
        line-height: 2.2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin: 10px 0 20px;
    }
    .btn, .contact-btn{
        display: flex;
        justify-content: center;
        align-self: center;
        padding: 12px;
        font-size: 0.95rem;
        margin-bottom: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .hero-content ,
    .hero-content { 
        width: 100%;
        max-width: 260px;       
        padding: 12px;
        font-size: 0.95rem;
        margin-bottom: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }

    /* Scroll-down arrow smaller + centered */
    .scroll-down {
        margin-top: 20px;
    }

    .scroll-down .arrow {
        width: 22px;
        height: 22px;
        border-width: 3px;
    }
    .org-tier .line {
        width: 120px;
    }

    .org-person {
        width: 150px;
    }

    /* Default: stack tiers */
    .org-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Specifically for Associates and Employees: 2x2 grid */
    .org-tier.associates .org-row,
    .org-tier.employees .org-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
}
