/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --gold-primary: #ffc400;
    --gold-secondary: #B89B3D;
    --gold-light: #E9D189;
    --dark-bg: #101010;
    --darker-bg: #000000;
    --light-bg: #FFFFFF;
    --text-dark: #333333;
    --text-light: #FFFFFF;
}

.years-highlight {
    font-weight: 750;
}

.partner-us {
    font-weight: 850;
    color: var(--gold-primary) !important;
}


body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--text-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    padding: 0.6rem 1.2rem;
    display: inline-block;
    border: 2px solid transparent;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--text-dark) !important;
    border-radius: 4px;
    padding: 0.6rem 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: bold !important;
    white-space: nowrap;
    font-size: 18px;
}

.btn-primary:hover {
    background-color: var(--gold-secondary);
    color: var(--text-dark) !important;
}

.btn-dark {
    background-color: var(--gold-primary);
    color: var(--text-dark) !important;
    border-radius: 4px;
    padding: 0.8rem 1.2rem;
    margin-top: 20px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 600 !important;
    white-space: nowrap;
}

.btn-dark:hover {
    background-color: var(--gold-secondary);
    color: var(--text-dark) !important;
}

.section-header {
    margin-bottom: 20px;
}

.section-header h3 {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.Services-Contact-Us {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-primary) !important;
}

.btn-hero {
    background-color: var(--gold-primary);
    color: var(--text-dark) !important;
    border-radius: 4px;
    padding: 0.6rem 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: bold !important;
    white-space: nowrap;
    font-size: 18px;
    margin-top: 50px;
}

.btn-hero:hover {
    background-color: var(--gold-secondary);
    color: var(--text-dark) !important;
}

/* Navigation */
.main-nav {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.main-nav.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    margin: auto;
    display: block;
}

.main-nav.scrolled .logo img {
    filter: drop-shadow(5px 5px 20px rgb(255, 255, 255))
            drop-shadow(5px 5px 20px rgb(255, 255, 255));
    transition: filter 0.3s ease;
}

.logopages img {
    filter: drop-shadow(5px 5px 20px rgb(255, 255, 255))
            drop-shadow(5px 5px 20px rgb(255, 255, 255));
}

.logo h6 {
    margin-top: 2PX;
    font-size: 12px;
    letter-spacing: 1px;
    position: relative;
    top: -5px;
    left: 2px;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.btn-touch {
    background-color: var(--gold-primary);
    color: var(--text-dark) !important;
    border-radius: 4px;
    padding: 0.6rem 1.2rem;
    margin-left: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 600 !important;
    white-space: nowrap;
}

.btn-touch:hover {
    background-color: var(--gold-secondary);
    color: var(--text-dark) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.slideshow-container {
    height: 100%;
    position: relative;
}

.slide {
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomEffect 8s infinite alternate;
}


@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 50px;
}

.slide-text {
    max-width: 900px;
}

.slide-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
}

.slide-text .subtitle {
    font-size: large;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Who We Are Section */
.who-we-are {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.who-content {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.who-text {
    flex: 2;
    font-size: large;
}

.who-text h2 {
    font-size: 36px;
    margin-bottom: 30px;   
}

.who-text p {
    margin-bottom: 20px;
    word-wrap: normal;
    font-size: large;
}

.who-text .btn {
    margin-top: 20px;
    margin-right: auto;
}

.who-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: space-between;
}

.who-stats p {
    font-size: large;
}


.stat h2 {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.cta-services {
    padding: 80px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.cta-content-services {
 
    position: relative;
    z-index: 2;
}

.cta-content-services h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff !important;
}

.cta-content-services p {
    margin-bottom: 30px;
    
    
    font-size: large;
}

.cta-buttons-services {
    display: flex;
    gap: 20px;
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.vision-statement {
    margin-bottom: 40px;
}

.vision-statement h2 {
    font-size: 36px;
}

.service-tabs {
    margin-top: 40px;
}

.tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-link {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-link.active {
    border-bottom: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.tab-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(.4, 0, .2, 1), transform 0.6s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
    position: absolute;
    display: none;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.tab-content-inner {
    display: flex;
    gap: 40px;
}

.tab-image {
    flex: 1;
}

.tab-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.tab-text p {
    margin-bottom: 20px;
    
    font-size: large;
}

/* What We Build Section */
.what-we-build {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.build-statement {
    margin-bottom: 40px;
}

.build-statement h2 {
    font-size: 36px;
    max-width: 800px;
}

.project-showcase {
    display: flex;
    gap: 40px;
}

.project-image {
    flex: 1.5;
}

.project-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    
}

.project-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.category-tab {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    padding-bottom: 5px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.category-tab.active {
    color: var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
}

.project-info h4 {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.project-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-bg);
    transition: all 0.3s ease;
}

.social-media a:hover {
    background-color: var(--gold-primary);
    color: var(--darker-bg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 30px;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: auto; /* Pushes to the right inside flex container */
}

/* Animation classes for scroll effects */
.section-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.section-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Emergency Button */
.btn-emergency {
    background-color: #e63946;
    color: white !important;
    border-radius: 4px;
    padding: 0.6rem 1.2rem;
    margin-left: 2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 600 !important;
    animation: pulse 2s infinite;
}

.btn-emergency:hover {
    background-color: #c1121f;
    color: white !important;
    animation: none;
}

.btn-emergency.active {
    background-color: #c1121f;
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

/* Page Hero Section */
.page-hero {
    height: 40vh;
    background-color: var(--darker-bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../imgs/page-hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    margin-top: 120px;
    animation: fadeInUp 0.8s forwards;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.9;
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.2s;
}

/* Active Nav Link */
.nav-links a.active {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Mission Page Styles */
.Mission-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.Mission-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.Mission-content-left {
    flex: 1;
}

.Mission-content-right {
    flex: 1;
}

.Mission-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--gold-primary);
    
    
}

.Mission-content p {
    margin-bottom: 20px;
    font-size: large;
}

.Mission-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.Mission-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.Mission-image:hover img {
    transform: scale(1.05);
}

/* Vision Section Styles */
.vision-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.vision-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-direction: row;
    /* Ensures left-to-right layout */
}

.vision-content-left {
    flex: 1;
}

.vision-content-right {
    flex: 1;
    
    
}

.vision-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--gold-primary);
}

.vision-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: large;
}

.vision-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vision-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.vision-image:hover img {
    transform: scale(1.05);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    text-align: center;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--gold-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.value-icon {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--gold-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
    text-align: left;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.member-title {
    color: var(--gold-primary);
    font-size: 14px;
    margin-bottom: 10px;
}

.member-bio {
    font-size: 14px;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.approach-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.approach-left {
    flex: 1.2;
}

.approach-right {
    flex: 0.8;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--gold-primary);
}

.approach-steps {
    margin-top: 40px;
}

.approach-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold-primary);
    background-color: rgba(212, 180, 76, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.approach-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.approach-image img {
    width: 100%;
    display: block;
}

/* About CTA Section */
.cta {
    padding: 60px;
    background-color: var(--dark-bg);
    text-align: center;
}

.cta-flex-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.cta-text {
    flex: 1.1;
}

.cta-image {
    flex: 0.9;
}

.cta-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.cta-content p {
    margin-bottom: 40px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.regional-offices {
    padding-top: 80px;
}
/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-form-container {
    flex: 1;
}

.contact-info-container {
    flex: 1;
}

.contact-form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.contact-form-container>p {
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
   
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Add these styles to your existing CSS */

select option {
    background-color: var(--darker-bg) !important;
    color: var(--text-light) !important;
}

select option:checked,
select option:hover {
    background-color: var(--dark-bg) !important;
    color: var(--gold-primary) !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    outline: none;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-container input {
    width: auto;
    margin-top: 5px;
}

.form-submit {
    margin-top: 30px;
}

.form-submit button {
    padding: 12px 30px;
}

/* Contact Info Styles */
.contact-info {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 24px;
    color: var(--gold-primary);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--gold-primary);
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.emergency-note {
    margin-top: 10px;
    font-weight: 500;
}

.emergency-note a {
    color: #e63946;
}

.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-placeholder:hover .map-overlay {
    opacity: 1;
}

.map-overlay p {
    background-color: var(--gold-primary);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
}

.locations-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.location {
    background-color: var(--dark-bg);
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    color: var(--gold-primary);
    transition: all 0.3s ease;
    border: 1px solid var(--dark-bg);
}

.location:hover {
    background-color: var(--darker-bg);
    color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .locations-list {
        gap: 10px;
    }

    .location {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.office-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.office-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.office-card p {
    margin-bottom: 15px;
}

.office-link {
    display: inline-block;
    color: var(--gold-primary);
    margin-top: 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.office-link:hover {
    color: var(--gold-light);
}

.office-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.office-link:hover i {
    transform: translateX(5px);
}

/* Emergency Page Styles */
.emergency-hero {
    background-color: #e63946;
    padding: 80px 0;
    text-align: center;
}

.emergency-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: #e63946;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 20px;
}

.emergency-badge i {
    margin-right: 10px;
    font-size: 18px;
}

.emergency-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.emergency-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: bold;

}

.emergency-hotline {
    display: inline-flex;
    align-items: center;
    background-color: white;
    padding: 15px 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.emergency-hotline i {
    font-size: 24px;
    color: #e63946;
    margin-right: 15px;
}

.emergency-hotline a {
    font-size: 28px;
    font-weight: bold;
    color: #e63946;
}

.response-time {
    font-size: 20px;
    color: white;
}

/* Emergency Services */
.emergency-services {
    padding: 80px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.emergency-services h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.emergency-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.emergency-service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

.emergency-service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 36px;
    color: #e63946;
    margin-bottom: 20px;
}

.emergency-service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.emergency-service-card ul {
    list-style: none;
}

.emergency-service-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.emergency-service-card ul li:before {
    content: "•";
    color: var(--gold-primary);
    position: absolute;
    left: 0;
}

/* Process Timeline */
.emergency-process {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.emergency-process h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--gold-primary);
    text-align: center;
}

.emergency-process p {
    font-size: large;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    background-color: #e63946;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 30px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--gold-primary);
}

/* Emergency Preparedness */
.emergency-preparedness {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.emergency-preparedness p {
    font-size: 18px;
}

.preparedness-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.preparedness-left {
    flex: 1;
}

.preparedness-right {
    flex: 1;
}

.preparedness-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.emergency-preparedness h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.preparedness-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    color: #e63946;
    font-size: 20px;
}

.service-map {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.service-map img {
    width: 100%;
    border-radius: 8px;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.color-box.primary {
    background-color: #e63946;
}

.color-box.secondary {
    background-color: #f4a261;
}

.color-box.tertiary {
    background-color: #2a9d8f;
}

/* Emergency CTA */
.emergency-cta {
    padding: 80px 0;
    background-color: #e63946;
    text-align: center;
}

.emergency-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.emergency-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.emergency-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.emergency-contact-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.emergency-phone {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    color: #e63946;
}

.emergency-phone i {
    margin-right: 10px;
}

.divider {
    color: white;
    font-size: 18px;
}

.emergency-cta .btn-primary {
    background-color: white;
    color: #e63946;
}

.emergency-cta .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e63946;
}

.error-message {
    color: #e63946;
    font-size: 14px;
    margin-top: 5px;
}

.form-success-message {
    background-color: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.5);
    color: #2ecc71;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

y

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
}

.services-overview h3 {
    font-size: 20px;
    color: var(--gold-primary);
    margin-top: 60px;
}

.services-intro {
    max-width: 900px;
    margin-bottom: 50px;
}

.services-intro h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--gold-primary);
}

.service-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.service-link {
    color: var(--gold-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-link:after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--gold-light);
}

.service-link:hover:after {
    transform: translateX(5px);
}

.service-detail {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.service-alt {
    background-color: var(--dark-bg);
}

.service-detail-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-detail-left {
    flex: 1;
}

.service-detail-right {
    flex: 1;
}

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-detail-image img {
    width: 100%;
    display: block;
}

.service-detail h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.service-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: large;
}

.feature-icon {
    font-size: 24px;
    color: var(--gold-primary);
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.other-services {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.other-services h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 50px;
    text-align: center;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.other-service-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.other-service-item:hover {
    transform: translateY(-5px);
}

.other-service-icon {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.other-service-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

/* Industries Page Styles */
.industries-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.industries-section p {
    font-size: large;
    
    
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.industry-item.reverse {
    flex-direction: row-reverse;
}

.industry-content {
    flex: 1;
}

.industry-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.industry-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.industry-item:hover .industry-image img {
    transform: scale(1.05);
}

.industry-content h2 {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.industry-features {
    margin-top: 20px;
}

.industry-features ul {
    list-style: none;
}

.industry-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: large;
}

.industry-features li i {
    color: var(--gold-primary);
    margin-right: 10px;
    min-width: 20px;
}

.capabilities-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    text-align: center;
}

.capabilities-section h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.capabilities-section>p {
    max-width: 800px;
    margin: 0 auto 50px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.capability-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-10px);
}

.capability-icon {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.capability-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.get-started-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../imgs/get-started-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.get-started-content {
    margin: 0 auto;
}

.get-started-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.get-started-content p {
    margin-bottom: 30px;
}

.industries-licensing {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.industries-licensing h2 {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 40px;
    text-align: center;
}

.licensing-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.license-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.license-icon {
    font-size: 24px;
    color: var(--gold-primary);
    margin-right: 15px;
}

.license-info h3 {
    font-size: 16px;
}

/* Our Work Page Styles */
.portfolio-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.portfolio-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--gold-primary);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--gold-primary);
    color: var(--text-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.portfolio-image {
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 14px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.portfolio-overlay h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.portfolio-link {
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background-color: var(--gold-primary);
    color: var(--text-dark);
}

.project-detail {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.project-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.project-detail-header h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-right: 20px;
}

.project-category-badge {
    background-color: var(--gold-primary);
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

.project-detail-content {
    display: flex;
    gap: 50px;
}

.project-detail-gallery {
    flex: 1.5;
}

/* Gallery Styles */
.gallery-main {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.gallery-main img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-thumbs img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.7;
}

.gallery-thumbs img:hover {
    opacity: 1;
}

.gallery-thumbs img.active {
    border-color: var(--gold-primary);
    opacity: 1;
}

.project-detail-info {
    flex: 1;
}

.project-info-section {
    margin-bottom: 30px;
}

.project-info-section h3 {
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.project-scope-list {
    list-style: none;
}

.project-scope-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.project-scope-list li:before {
    content: "•";
    color: var(--gold-primary);
    position: absolute;
    left: 0;
}

.project-info-meta {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.meta-item {
    margin-bottom: 10px;
}

.meta-label {
    font-weight: bold;
    color: var(--gold-primary);
    margin-right: 10px;
}

/* FAQ Page Styles */
.faq-categories {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.faq-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
}

.faq-toggle {
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 16px;
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer ul li, .faq-answer ol li {
    margin-bottom: 8px;
}

.contact-cta {
    padding: 80px 0;
    background-color: var(--darker-bg);
    text-align: center;
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.contact-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.contact-phone {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.contact-phone i {
    color: var(--gold-primary);
    margin-right: 10px;
}

/* Tools & Resources Page Styles */
.resources-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.resource-category {
    margin-bottom: 30px;
}

.resource-category h2 {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.resource-category>p {
    margin-bottom: 30px;
}

.resource-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.resource-item {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 36px;
    color: var(--gold-primary);
    margin-right: 20px;
    flex-shrink: 0;
}

.resource-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--gold-primary);
}

.resource-link {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    color: var(--gold-primary);
    font-weight: 500;
}

.resource-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.resource-link:hover i {
    transform: translateX(5px);
}

.video-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    text-align: center;
}

.video-section h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.video-section>p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.video-card:hover .play-button {
    background-color: var(--gold-primary);
    color: var(--text-dark);
}

.video-info {
    padding: 20px;
    text-align: left;
}

.video-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--gold-primary);
}

.video-duration {
    display: inline-block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.industry-resources {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.industry-resources h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-align: center;
}

.industry-resources>p {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.resource-link-item {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.resource-link-item:hover {
    transform: translateY(-5px);
}

.resource-link-icon {
    font-size: 36px;
    color: var(--gold-primary);
    margin-right: 20px;
    flex-shrink: 0;
}

.resource-link-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--gold-primary);
}

.external-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold-primary);
    margin-top: 15px;
    font-weight: 500;
}

.external-link i {
    margin-left: 5px;
    font-size: 14px;
}

.faq-preview {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.faq-preview h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-align: center;
}

.faq-preview>p {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.faq-more {
    text-align: center;
    margin-top: 40px;
}

/* Additional Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s forwards;
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-bottom {
    animation: slideInFromBottom 0.5s forwards;
}

/* Project Image Tabs Styling */
.project-img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-img.active {
    display: block;
}

.project-info {
    display: none;
}

.project-info.active {
    display: block;
}

/* Sectors Page Styles */
.sectors-overview {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.sectors-intro {
    max-width: 900px;
    margin-bottom: 50px;
}

.sectors-intro h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.sector-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sector-image {
    height: 200px;
    overflow: hidden;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sector-card:hover .sector-image img {
    transform: scale(1.1);
}

.sector-content {
    padding: 25px;
}

.sector-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.sector-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.sector-btn {
    background-color: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sector-btn:hover {
    background-color: var(--gold-primary);
    color: var(--text-dark);
}

/* Sector Detail Styles */
.sector-detail {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.sector-detail.sector-alt {
    background-color: var(--dark-bg);
}

.sector-detail-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sector-detail-left {
    flex: 1;
}

.sector-detail-right {
    flex: 1;
}

.sector-detail h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.sector-detail p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.sector-features {
    margin: 30px 0;
    list-style: none;
}

.sector-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.sector-features li i {
    color: var(--gold-primary);
    font-size: 18px;
    margin-top: 4px;
}

.sector-detail-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sector-detail-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.sector-detail-image:hover img {
    transform: scale(1.05);
}

/* Sector Approach Section */
.sector-approach {
    padding: 80px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.sector-approach h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sector-approach>p {
    max-width: 800px;
    margin: 0 auto 50px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.approach-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
}

.approach-icon {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.approach-card p {
    font-size: 16px;
    line-height: 1.6;
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    padding: 80px 30px 30px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-menu.active {
    transform: translateX(0);
}

.mobile-nav-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-nav-menu .nav-links a {
    font-size: 18px;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu .nav-links .btn-touch,
.mobile-nav-menu .nav-links .btn-emergency {
    margin: 10px 0;
    width: 100%;
    text-align: center;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

.floating-menu-button {
    display: none !important;
}

/* Highlight text for "Since 1993" and "30+ years" */
.highlight-text {
    color: var(--gold-primary);
    font-weight: 600;
}

/* CSS for Accreditations page */
.licensing-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.licensing-section h2 {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 40px;
    text-align: center;
}

.licensing-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.license-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.license-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.license-icon {
    font-size: 24px;
    color: var(--gold-primary);
    margin-right: 15px;
}

.license-info h3 {
    font-size: 16px;
}

.footer-logo img {
    height: 40px;
    /* Adjusted for A logo only */
}

/* Additional CSS for Portfolio Section */
.portfolio-overview {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.portfolio-overview h2 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.portfolio-overview>p {
    max-width: 800px;
    margin-bottom: 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 20px;
}

.portfolio-content h3 {
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.portfolio-content p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
}

.portfolio-link {
    color: var(--gold-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.portfolio-link:after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.portfolio-link:hover:after {
    transform: translateX(5px);
}

.mobile-contact-btn {
    display: none;
    margin-right: 50px;
    padding: 0.5rem 1rem;
    background-color: var(--gold-primary);
    color: var(--text-dark) !important;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: bold !important;
    white-space: nowrap;
    font-size: 18px;
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {

    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .who-content,
    .tab-content-inner,
    .project-showcase,
    .service-detail-content,
    .project-detail-content,
    .contact-container,
    .approach-content,
    .preparedness-content {
        flex-direction: column;
        gap: 30px;
    }

    .who-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .cta {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
        
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons a {
        width: 100%;
    }

    .cta-graphic {
        width: 40%;
    }

    .slide-text p,
    .who-text p, 
    .tab-text p,
    .project-info p,
    .service-content p,
    .vision-content p,
    .Mission-content p,
    .industry-content p,
    .capability-item p,
    .contact-info p,
    .emergency-hero p,
    .emergency-service-card p,
    .sector-content p,
    .sector-detail p,
    .approach-card p,
    .portfolio-content p,
    .value-card p,
    .approach-content p {
        font-size: large;
        white-space: wrap;
        
    }
}

@media (max-width: 992px) {

    .main-nav .container {
        position: relative;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .mobile-nav-menu {
        display: block;
    }

    /* Hero section adjustments */
    .slide-text h1 {
        font-size: 36px;
    }

    .slide-text .subtitle {
        font-size: large;
    }

    .slide-content {
        padding: 0 30px;
    }

    /* Content section adjustments */
    .who-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-tabs .tabs {
        flex-wrap: wrap;
    }

    .project-image {
        height: 300px;
    }

    .cta {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
        
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons a {
        width: 100%;
    }

    .cta-graphic {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Services & Industries adjustments */
    .services-grid,
    .sectors-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-item,
    .industry-item.reverse {
        flex-direction: column;
    }

    .industry-image {
        margin-top: 30px;
    }

    /* Portfolio adjustments */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About page adjustments */
    .values-grid,
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-content {
        flex-direction: column;
    }

    .Mission-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .approach-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .service-detail-content.right {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .industry-item:not(.reverse) {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .contact-container {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .preparedness-content {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .slide-text p,
    .who-text p, 
    .tab-text p,
    .project-info p,
    .service-content p,
    .vision-content p,
    .Mission-content p,
    .industry-content p,
    .capability-item p,
    .contact-info p,
    .emergency-hero p,
    .emergency-service-card p,
    .sector-content p,
    .sector-detail p,
    .approach-card p,
    .portfolio-content p,
    .value-card p,
    .approach-content p {
        font-size: large;
        white-space: wrap;
        
    }

    .licensing-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Adjusted for medium screens */
        gap: 20px;
    }

    .license-item {
        padding: 15px 20px;
        grid-template-columns: repeat(2,1fr);
    }

    .license-icon {
        font-size: 24px;
        margin-right: 15px;
    }

    .license-info h3 {
        font-size: 16px;
    }

    .cta-flex-container {
        flex-direction: column-reverse;
        gap: 30px;
    }
    
    .cta-image {
        width: 100%;
    }

    .mobile-contact-btn {
        display: inline-block;
        position: relative;
        top: 0;
        /* z-index: 1001; */
    }

}

@media (max-width: 768px) {

    /* Header & navigation adjustments */
    .logo img {
        height: 70px;
    }
    
    .logopages img{
        filter:drop-shadow(5px 5px 30px rgb(255, 255, 255))
            drop-shadow(5px 5px 25px rgb(255, 255, 255))
            drop-shadow(5px 5px 25px rgb(255, 255, 255));
    }

    .main-nav.scrolled .logo img {
         filter:drop-shadow(5px 5px 30px rgb(255, 255, 255))
            drop-shadow(5px 5px 25px rgb(255, 255, 255))
            drop-shadow(5px 5px 25px rgb(255, 255, 255));
        transition: filter 0.3s ease;
    }

    .logo h6 {
        margin-top: 4PX;
        font-size: 8px;
        letter-spacing: 2px;
        position: relative;
        top: -5px;
        left: 2px;
    }

    /* Hero section adjustments */
    .slide-text h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .slide-text .subtitle {
        font-size: large;
    }

    /* Content section adjustments */
    .section-header h3 {
        font-size: 12px;
    }

    h2 {
        font-size: 24px;
    }

    .who-stats {
        grid-template-columns: repeat(3, minmax(110px, 2fr));
    }

    .who-content,
    .project-showcase {
        gap: 20px;
    }

    .who-text h2 {
        font-size: large;
    }

    .service-tabs .tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        justify-content: flex-start;
    }

    .tab-link {
        flex: 0 0 auto;
    }

    .category-tab {
        flex: 0 0 auto;
    }

    .project-category-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    /* Footer adjustments */
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Services & Industries adjustments */
    .services-grid,
    .sectors-grid,
    .industries-grid,
    .capabilities-grid,
    .portfolio-grid,
    .values-grid,
    .approach-grid,
    .emergency-services-grid {
        grid-template-columns: 1fr;
    }

    /* Form adjustments */
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    /* About page adjustments */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Emergency page adjustments */
    .emergency-hero h1 {
        font-size: 28px;
    }

    .emergency-hotline a {
        font-size: 20px;
    }

    .emergency-contact-options {
        flex-direction: column;
        gap: 15px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        height: 180px;
    }

    .slide-text p,
    .who-text p, 
    .tab-text p,
    .project-info p,
    .service-content p,
    .vision-content p,
    .Mission-content p,
    .industry-content p,
    .capability-item p,
    .contact-info p,
    .emergency-hero p,
    .emergency-service-card p,
    .sector-content p,
    .sector-detail p,
    .approach-card p,
    .portfolio-content p,
    .value-card p,
    .approach-content p {
        font-size: large;
        white-space: wrap;
        
    }
}

@media (max-width: 576px) {

    /* Header & navigation adjustments */
    .logo img {
        height: 70px;
    }
    
    .logopages img{
        filter:drop-shadow(5px 5px 30px rgb(255, 255, 255))
            drop-shadow(5px 5px 25px rgb(255, 255, 255))
            drop-shadow(5px 5px 25px rgb(255, 255, 255));
    }

    .main-nav.scrolled .logo img {
         filter:drop-shadow(5px 5px 30px rgb(255, 255, 255))
            drop-shadow(5px 5px 25px rgb(255, 255, 255))
            drop-shadow(5px 5px 25px rgb(255, 255, 255));
        transition: filter 0.3s ease;
    }

    .logo h6 {
        margin-top: 4PX;
        font-size: 8px;
        letter-spacing: 2px;
        position: relative;
        top: -5px;
        left: 2px;
    }

    .page-hero-content h1 {
        font-size: 28px;
    }

    .page-hero-content p {
        font-size: 14px;
    }

    /* Hero section adjustments */
    .slide-text h1 {
        font-size: 24px;
    }

    .slide-text .subtitle {
        font-size: large;
    }

    /* Content section adjustments */
    h2 {
        font-size: 20px;
    }

    .who-text p,
    .tab-text p,
    .project-info p,
    .service-content p {
        font-size: 14px;
    }

    .stat h2 {
        font-size: 36px;
    }

    /* CTA adjustments */
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Contact page adjustments */
    .contact-info-item {
        flex-direction: column;
        gap: 10px;
    }

    .contact-icon {
        text-align: left;
    }

    /* Gallery adjustments */
    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-text p,
    .who-text p, 
    .tab-text p,
    .project-info p,
    .service-content p,
    .vision-content p,
    .Mission-content p,
    .industry-content p,
    .capability-item p,
    .contact-info p,
    .emergency-hero p,
    .emergency-service-card p,
    .sector-content p,
    .sector-detail p,
    .approach-card p,
    .portfolio-content p,
    .value-card p,
    .approach-content p {
        font-size: large;
        white-space: wrap;
        
    }

    .licensing-list {
        grid-template-columns: 1fr; /* Single column for small screens */
        gap: 15px;
    }

    .license-item {
        align-items: center;
        padding: 15px;
        grid-template-columns: repeat(2,1fr);
    }

    .license-icon {
        margin-right: 5px;
    }

    .license-info h3 {
        font-size: 14px;
    }
}

/* Touch-friendly improvements */
@media (max-width: 992px) {

    /* Increase touch target sizes */
    .btn,
    .tab-link,
    .category-tab,
    .filter-btn,
    .social-media a,
    .faq-toggle {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Add space between touch elements */
    .tab-link,
    .category-tab,
    .filter-btn {
        margin: 0 5px 5px 0;
    }

    /* Improve form elements for touch */
    input,
    select,
    textarea,
    button {
        min-height: 44px;
        font-size: 16px;
        /* Prevents iOS zoom on focus */
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-delay: 0s !important;
    }
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: transparent;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 1001;
}

.dropdown-content a {
    color: var(--text-light);
    padding: 12px 16px;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--dark-bg);
    color: var(--gold-primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

