/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

/* HEADER */
.site-header {
    background: #131313;
    color: white;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* HEADER CONTAINER */
.container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    padding: 0 20px; /* Prevents elements from touching edges */
    box-sizing: border-box;
}

/* LOGO */
.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

/* NAVIGATION */
.nav {
    display: flex;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6600;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 10px; /* Adjusted to keep inside viewport */
    top: 15px;
    z-index: 1100; /* Ensures it stays above all content */
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    width: 100%;
    max-width: 250px;
    background: #131313;
    text-align: center;
    padding: 15px 0;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    z-index: 1100; /* Ensures dropdown appears above hero section */
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    padding: 15px 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    display: block;
}

/* SHOW MENU WHEN ACTIVE */
.mobile-menu.active {
    display: block;
    transform: translateX(0%);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 90vh;
    background: url('../Images/PHOTO-2025-01-17-07-47-11.JPG') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1; /* Keeps hero section below dropdown menu */
}

/* Overlay for Better Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Call to Action Button */
.cta-button {
    background-color: #ff6600;
    color: white;
    padding: 12px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #121212;
}
/* Who We Are Section */
#who-we-are {
    background-color: #121212; /* Dark background for contrast */
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    color: #ffffff; /* White text for readability */
}

#who-we-are .container {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#who-we-are h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff6600; /* Bright orange accent */
}

#who-we-are p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff; /* White text for contrast */
    max-width: 700px;
    text-align: center;
}

#who-we-are .license {
    font-weight: bold;
    color: #ff6600; /* Orange accent for emphasis */
}

#who-we-are .cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ff6600; /* Orange CTA button */
    color: #121212; /* Dark text for contrast */
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

#who-we-are .cta-button:hover {
    background-color: #ffffff; /* White on hover */
    color: #121212; /* Dark text for contrast */
}
/* Our Services Section - Contrast & Centering Fix */
#our-services {
    background-color: #ffffff; /* Light background for contrast */
    padding: 80px 20px;
    text-align: center; /* Ensures everything stays centered */
    color: #121212;
}

#our-services .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Force vertical stacking */
    align-items: center; /* Center everything */
    text-align: center; /* Prevent misalignment */
}

/* Section Title */
#our-services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
    text-align: center;
}

/* Ensures services list is centered and vertical */
.services-list {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* Service Item Styling */
.service-item {
    background: #f5f5f5;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background 0.3s ease-in-out;
}

.service-item:hover {
    background: #ff6600;
    color: #ffffff;
}

.service-item .material-icons {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

.service-item:hover .material-icons {
    color: #ffffff;
}

.service-item p {
    font-size: 1.2rem;
    font-weight: bold;
}

.service-item small {
    font-size: 0.9rem;
    color: #555;
}

/* Centering the CTA Button */
#our-services .cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    background-color: #ff6600;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    text-align: center; /* Ensure text is centered inside the button */
}

#our-services .cta-button:hover {
    background-color: #121212;
    color: #ffffff;
}
/* Trusted Industry Partnerships Section */
#trusted-partnerships {
    background-color: #121212; /* Dark background for contrast */
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

#trusted-partnerships .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Ensures vertical stacking */
    align-items: center;
}

/* Section Header */
#trusted-partnerships h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ff6600; /* Orange accent */
}

/* Individual Partnership Blocks */
.partnership {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Google Icons */
.partnership .material-icons {
    font-size: 50px;
    color: #ff6600;
}

/* Partnership Titles */
.partnership h3 {
    font-size: 1.5rem;
    color: #ff6600;
}

/* Services List */
.partnership ul {
    list-style: none;
    padding: 0;
}

.partnership ul li {
    font-size: 1.1rem;
    margin: 5px 0;
}

/* CTA Button */
.partnership .cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background-color: #ff6600;
    color: #121212;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.partnership .cta-button:hover {
    background-color: #ffffff;
    color: #121212;
}
/* Why Choose Us Section */
#why-choose-us {
    background-color: #ffffff; /* Light background for contrast */
    padding: 80px 20px;
    text-align: center;
    color: #121212;
}

#why-choose-us .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Ensures vertical stacking */
    align-items: center;
}

/* Section Header */
#why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ff6600; /* Orange accent */
}

/* Benefit Blocks */
.benefit {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Google Icons */
.benefit .material-icons {
    font-size: 50px;
    color: #ff6600;
}

/* Benefit Titles */
.benefit h3 {
    font-size: 1.5rem;
    color: #ff6600;
}

/* Benefit Description */
.benefit p {
    font-size: 1.1rem;
    color: #333;
}
/* Call to Action Section */
#contact-cta {
    background-color: #121212; /* Dark background for contrast */
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

#contact-cta .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Header */
#contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff6600;
}

#contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Info Blocks */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.contact-item .material-icons {
    font-size: 30px;
    color: #ff6600;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff6600;
    color: #121212;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

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

/* Final Banner Image */
.cta-banner {
    margin-top: 40px;
}

.cta-banner img {
    width: 100%;
    max-width: 1200px;
    border-radius: 8px;
}
.contact-item a{
	text-decoration: none;
	color: white;
}
/* About Page Hero Section - Light Mode */
#about-hero {
    background: url("../Images/IMG_1046.JPG") center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

#about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay for readability */
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Title */
.hero-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6600; /* Orange accent */
}

/* Paragraphs */
.hero-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 15px;
    color: #333; /* Dark gray for readability */
}

/* Location Highlight */
.location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6600; /* Orange accent */
}
/* Services Hero Section */
#services-hero {
    background: url('../Images/PHOTO-2025-01-17-07-42-14.JPG') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

#services-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay for readability */
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Title */
.hero-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff6600; /* Orange accent */
}

/* Subtitle */
.hero-container h2 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 20px;
}

/* Paragraphs */
.hero-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 15px;
	color: white;
}

/* Location Highlight */
.location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6600;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ff6600;
    color: #121212;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #121212;
}
/* Core Services Section */
#core-services {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    color: #121212;
}

#core-services .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Header */
#core-services h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ff6600;
}

/* Service Blocks */
.service-block {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Icons */
.service-block .material-icons {
    font-size: 50px;
    color: #ff6600;
}

/* Service Titles */
.service-block h3 {
    font-size: 1.5rem;
    color: #ff6600;
}

/* Descriptions & Lists */
.service-block p {
    font-size: 1.1rem;
    color: #333;
}

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

.service-block ul li {
    font-size: 1rem;
    margin: 5px 0;
}

/* CTA Buttons */
.service-block .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff6600;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.service-block .cta-button:hover {
    background-color: #121212;
}
/* Leadership Section */
#leadership {
    background-color: #f9f9f9; /* Light background for readability */
    padding: 80px 20px;
    text-align: center;
    color: #121212;
}

#leadership .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Header */
#leadership h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

/* Experience Grid */
.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
    width: 100%;
}

.experience-category {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.experience-category h3 {
    font-size: 1.4rem;
    color: #ff6600;
    margin-bottom: 10px;
}

.experience-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-category ul li {
    font-size: 1.1rem;
    margin: 5px 0;
}

/* Leadership Quote */
.leadership-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    max-width: 700px;
    margin-top: 30px;
    padding: 20px;
    border-left: 5px solid #ff6600;
    text-align: left;
}

/* Footer Styles */
#site-footer {
    background-color: #121212;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

#site-footer .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Copyright Text */
#site-footer p {
    font-size: 1rem;
    margin: 5px 0;
}

/* Navigation Links */
#site-footer nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

#site-footer nav a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

#site-footer nav a:hover {
    color: #ffffff;
}

/* Contact Info */
.footer-contact {
    display: flex;
    flex-direction
}
.footer-contact a{
	text-decoration: none;
	color: white;
}
/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
        position: fixed; /* Keeps it anchored correctly */
        right: 15px;
        top: 15px;
    }

    .hero {
        height: 70vh;
    }

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

    .hero p {
        font-size: 1.2rem;
    }
    .contact-cta img{
        max-width: 90%;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important; /* Ensure dropdown hides when returning to desktop */
    }
}