/* Color Palette Variables */
:root {
    --primary-navy: #0A2342;
    --accent-gold: #c5a059;
    --text-charcoal: #2D3436;
    --bg-offwhite: #F4F7F6;
    --pure-white: #FFFFFF;
    --white: #ffffff;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-offwhite);
    color: var(--text-charcoal);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: var(--primary-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;   /* remove vertical padding */
    color: white;
    height: 80px;     /* Set fixed height */
}


.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--accent-gold);
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-navy) !important;
    padding: 10px 20px;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.85)),
                url('https://images.unsplash.com/photo-1557597774-9d2739f85a76?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Logo watermark */
.hero::before {
    content: "";
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: url("logob.png") no-repeat center;
    background-size: contain;
    opacity: 0.15;              /* Controls shadow strength */
    filter: grayscale(100%) brightness(200%);
    z-index: 1;
}

/* Make sure content stays above watermark */
.hero-content {
    position: relative;
    z-index: 2;
}


.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 10px;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 13px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

/* About Summary */
.about-summary {
    padding: 80px 10%;
    background: var(--pure-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-navy);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.trust-icons {
    list-style: none;
    margin-top: 20px;
}

.trust-icons li {
    margin-bottom: 10px;
    font-weight: 600;
}

.trust-icons i {
    color: var(--accent-gold);
    margin-right: 10px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--primary-navy);
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 5px solid var(--accent-gold);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

/* CTA Bar */
.cta-bar {
    background: var(--primary-navy);
    color: white;
    padding: 50px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}





.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.site-logo {
    height: 100px;       /* Slightly smaller than navbar */
    width: auto;        /* Maintain aspect ratio */
    object-fit: contain;
}



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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sub-page Header */
.page-header {
    background: linear-gradient(rgba(10, 35, 66, 0.9), rgba(10, 35, 66, 0.9)), 
                url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

/* Section Intro */
.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    color: var(--primary-navy);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.line {
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
    margin: 0 auto 20px;
}

/* Services Grid */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-offwhite);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top: 4px solid var(--accent-gold);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--accent-gold);
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .cta-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* --- Service Detail Specific Styles --- */

.service-detail-header {
    background: linear-gradient(to right, rgba(10, 35, 66, 0.95), rgba(10, 35, 66, 0.7)), 
                url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    padding: 120px 0 80px;
    color: white;
}

.breadcrumb {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 80px 0;
}

.content-left h2 {
    color: var(--primary-navy);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.feature-img {
    width: 100%;
    border-radius: 8px;
    margin: 30px 0;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.feature-list i {
    color: var(--accent-gold);
}

/* Sidebar Styling */
.enquiry-card {
    background: var(--primary-navy);
    padding: 30px;
    border-radius: 8px;
    color: white;
    position: sticky;
    top: 100px;
}

.sidebar-form input, .sidebar-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: none;
}

.btn-gold-full {
    width: 100%;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.contact-card-sidebar {
    margin-top: 20px;
    background: #e9ecef;
    padding: 20px;
    border-left: 5px solid var(--accent-gold);
}

/* Benefits Grid */
.benefits-grid-section {
    background: var(--pure-white);
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 40px;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}


/* --- Enhanced Layout Styles --- */

.accent-line {
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    margin-bottom: 20px;
}

.image-showcase {
    position: relative;
    margin: 40px 0;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 20px 30px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 4px;
}

/* Feature Icon Grid */
.feature-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid var(--accent-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.f-item i {
    color: var(--primary-navy);
    font-size: 1.2rem;
}

/* Sidebar Navigation */
.sidebar-nav-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-nav-card h4 {
    background: var(--primary-navy);
    color: #fff;
    padding: 20px;
    margin: 0;
}

.sidebar-nav-card ul {
    list-style: none;
}

.sidebar-nav-card ul li a {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-charcoal);
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.sidebar-nav-card ul li a:hover, .sidebar-nav-card ul li a.active {
    background: var(--bg-offwhite);
    color: var(--primary-navy);
    font-weight: bold;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border: 1px dashed #ccc;
    margin-bottom: 20px;
}

.download-card i {
    font-size: 2rem;
    color: #d63031;
}

.help-box {
    background: var(--primary-navy);
    color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
}

.btn-gold-small {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    border-radius: 4px;
}

/* Footer Styles */
.site-footer {
    background: #051426;
    color: #fff;
    padding: 80px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #a0aec0;
}


/* --- Sectors Page Styles --- */

.sector-header {
    background: linear-gradient(rgba(10, 35, 66, 0.8), rgba(10, 35, 66, 0.8)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1500&q=80');
}

.sectors-grid-section {
    padding: 80px 0;
    background-color: #fff;
}

.sectors-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.sector-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s ease;
}

.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 35, 66, 0.95), rgba(10, 35, 66, 0.4));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: 0.5s ease;
}

.sector-card:hover .sector-overlay {
    background: rgba(10, 35, 66, 0.85);
}

.sector-content {
    color: white;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.sector-card:hover .sector-content {
    transform: translateY(0);
}

.sector-content i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.sector-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
}

.sector-content p {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 20px;
    opacity: 0;
    transition: 0.5s ease;
}

.sector-card:hover .sector-content p {
    opacity: 1;
}

.btn-text {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.btn-text:hover {
    border-bottom: 1px solid var(--accent-gold);
}

/* Responsive Grid for mobile */
@media (max-width: 768px) {
    .sectors-container {
        grid-template-columns: 1fr;
    }
    .sector-card {
        height: 300px;
    }
    .sector-content p {
        opacity: 1;
    }
    .sector-content {
        transform: translateY(0);
    }
}


/* --- Unified Card Design (Used for Services & Sectors) --- */

.service-header {
    background: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.85)), 
                url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=1500&q=80');
}

.card-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.image-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Start with a darker gradient at bottom */
    background: linear-gradient(to top, rgba(10, 35, 66, 0.95), rgba(10, 35, 66, 0.4));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: 0.5s ease;
}

.image-card:hover .card-overlay {
    background: rgba(10, 35, 66, 0.85); /* Darkens slightly on hover */
}

.card-content {
    color: white;
    transform: translateY(30px); /* Hide part of the content initially */
    transition: 0.5s ease;
}

.image-card:hover .card-content {
    transform: translateY(0);
}

.card-content i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 20px;
    opacity: 0; /* Hidden until hover */
    transition: 0.5s ease;
}

.image-card:hover .card-content p {
    opacity: 1;
}

.btn-text {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-text:hover {
    letter-spacing: 1px;
}



/* --- Mobile Friendly Grid Logic --- */

/* Responsive Grid for Services & Sectors */
.card-grid-container {
    display: grid;
    /* This automatically fits as many 350px cards as possible */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 20px;
    padding: 20px 0;
}

/* Specific Media Query for Tablets and Mobile */
@media (max-width: 768px) {
    /* Reduce Header Padding */
    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Adjust Section Intros */
    .section-intro h2 {
        font-size: 1.8rem;
    }

    /* Force the grid to single column on mobile */
    .card-grid-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    /* Adjust Card Height for mobile view */
    .image-card {
        height: 320px;
    }

    /* Show more content by default on mobile since there is no 'hover' on touchscreens */
    .card-content {
        transform: translateY(0);
    }
    
    .card-content p {
        opacity: 1;
        font-size: 0.9rem;
    }

    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr; /* Stack footer columns */
        text-align: center;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }

    /* Navbar Mobile (Basic) */
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }

    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-links li a {
        margin: 0 10px;
        font-size: 0.9rem;
    }
}

/* Adjust for very small phones */
@media (max-width: 480px) {
    .image-card {
        height: 280px;
    }
}

.footer-grid {
    display: grid;
    /* Adjusted for 5 columns on desktop */
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; 
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 column on phones */
    }
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    padding: 60px 0;
}

/* WhatsApp Card Styling */
.whatsapp-cta-card {
    background: #25D366; /* WhatsApp Green */
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.whatsapp-cta-card i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.btn-whatsapp {
    display: inline-block;
    background:var(--pure-white);
    color: var(--primary-navy);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: var(--accent-gold);
    transform: scale(1.05);
}

/* Form Styling */
.contact-form-wrap {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-navy);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-primary-large {
    background: var(--primary-navy);
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary-large:hover {
    background: var(--accent-gold);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* Contact Link Styling */
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-gold);
}

/* WhatsApp Block - Theme Aligned */
.whatsapp-cta-card {
    background: var(--primary-navy);
    border-left: 5px solid var(--accent-gold);
    color: var(--white);
    padding: 35px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.whatsapp-cta-card i {
    font-size: 3.5rem;
    color: var(--accent-gold); /* Gold icon instead of green */
    margin-bottom: 15px;
}

.btn-whatsapp-custom {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 14px 28px;
    border-radius: 5px; /* Squared like the rest of your brand */
    font-weight: 700;
    margin-top: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-whatsapp-custom:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

/* Email Form Button Styling */
.btn-primary-large {
    background: var(--primary-navy);
    color: var(--white);
    border: 2px solid var(--primary-navy);
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-navy);
}


/* Ensure footer links are white by default */
.footer-link-white {
    color: #ffffff !important; /* Forces the color to white */
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Gold hover effect for better interactivity */
.footer-link-white:hover {
    color: var(--accent-gold) !important;
    padding-left: 5px; /* Subtle movement effect on hover */
}

/* Ensure the icons next to them also look good */
.footer-col p i {
    color: var(--accent-gold);
    margin-right: 10px;
    width: 20px; /* Keeps icons aligned perfectly */
}


/* About Page Specific Styles */
.about-header {
    background: linear-gradient(rgba(10, 35, 66, 0.8), rgba(10, 35, 66, 0.8)), url('https://images.unsplash.com/photo-1454165833767-13300a7c58e1?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

/* Stats Section */
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

/* Promise Grid */
.our-promise {
    background: #f9f9f9;
    padding: 80px 0;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.promise-item {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.promise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.promise-item i {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

/* CTA Box */
.cta-box {
    background: var(--primary-navy);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    color: white;
    margin-bottom: -50px; /* Overlaps footer slightly for style */
    position: relative;
    z-index: 2;
}

/* Responsive Mobile Adjustments */
@media (max-width: 992px) {
    .about-grid, .promise-grid {
        grid-template-columns: 1fr;
    }
    .about-image-box {
        order: -1; /* Image appears first on mobile */
    }
}

/* Action Bar Styling */
.action-bar-section {
    padding: 60px 0;
    background-color: var(--accent-gold);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; /* Connected look */
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.action-card {
    display: flex;
    align-items: center;
    padding: 40px;
    background: var(--white);
    transition: all 0.3s ease;
    border-right: 1px solid #eee;
}

.action-card:last-child {
    border-right: none;
}

.action-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-right: 25px;
    transition: transform 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.1);
}

.action-text span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
}

.action-text h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin: 5px 0 10px 0;
}

.action-text a {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.action-text a:hover {
    color: var(--accent-gold);
}

/* Specific highlight for the Quote button */
.action-card.get-quote {
    background-color: white; /* Very light gold tint */
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .action-grid {
        grid-template-columns: 1fr;
    }
    .action-card {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}




/* Sector Specific Header Background */
.construction-sector-bg {
    background: linear-gradient(rgba(10, 35, 66, 0.8), rgba(10, 35, 66, 0.8)), 
                url('https://images.unsplash.com/photo-1517089535811-62826ed10aa5?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

/* Feature Grid for Content Area */
.feature-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-box {
    background: #fdfdfd;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

.feature-box:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-box i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.check-list i {
    color: var(--accent-gold);
    margin-right: 15px;
    font-size: 1.1rem;
}

.construction-sector-bg {
    background: linear-gradient(rgba(10, 35, 66, 0.75), rgba(10, 35, 66, 0.75)), 
                url('https://images.unsplash.com/photo-1503387762-592dea58ef23?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
}


/* Container for the icon and the text block */
.info-item {
    display: flex;
    align-items: flex-start; /* Aligns icon with the top of the heading */
    gap: 15px;               /* Space between icon and text */
    margin-bottom: 25px;
}

/* Fix for the icon size and color */
.info-item i {
    font-size: 1.5rem;
    color: var(--accent-gold); /* Or your preferred brand color */
    margin-top: 5px;           /* Tiny nudge to line up with H4 */
    width: 30px;               /* Keeps icons in a straight vertical line */
    text-align: center;
}

/* Text block inside the item */
.info-text h4 {
    margin: 0 0 5px 0;
    color: var(--primary-navy);
    font-size: 1.1rem;
}

.info-text p {
    margin: 0;
}

/* Force links to be black and remove underline */
.contact-link-black {
    color: #000000 !important;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.contact-link-black:hover {
    color: var(--accent-gold) !important; /* Changes to gold on hover for UX */
}



/* Hero Styles */
.hero-home {
    background: url('https://images.unsplash.com/photo-1454165833267-028cc2402f9e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
}

.hero-overlay {
    background: rgba(10, 35, 66, 0.85); /* Your Brand Navy with transparency */
    height: 100%;
    display: flex;
    align-items: center;
}

.gold-badge {
    background: #c5a059; /* Your Brand Gold */
    color: #0a2342;
    padding: 6px 14px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

/* Service Box Hover Effects (Taybar Style) */
.service-box {
    background: var(--accent-gold);
    padding: 40px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.service-box:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #c5a059; /* Gold accent on hover */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon-wrap i {
    font-size: 2.5rem;
    color: #0a2342; /* Navy */
    margin-bottom: 25px;
}

/* Stats Bar */
.impact-stats {
    background: #0a2342; /* Navy */
    color: #fff;
    padding: 50px 0;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #c5a059; /* Gold */
}

/* Checklist Items */
.check-list-gold {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.check-list-gold li {
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list-gold i {
    color: #c5a059;
    margin-right: 10px;
}

/* Buttons */
.btn-outline-gold {
    border: 2px solid #c5a059;
    color: #c5a059;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: #c5a059;
    color: #0a2342;
}

/* --- AESTHETIC SLIDER HERO --- */
.hero-slider {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: kenburns-slider 18s infinite; /* 3 images * 6s each */
}

/* Slider Images - Using your high-quality professional themes */
.slide-1 { 
    background-image: url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?auto=format&fit=crop&w=1920&q=80'); 
    animation-delay: 0s; 
}
.slide-2 { 
    background-image: url('https://images.unsplash.com/photo-1454165833267-028cc2402f9e?auto=format&fit=crop&w=1920&q=80'); 
    animation-delay: 6s; 
}
.slide-3 { 
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1920&q=80'); 
    animation-delay: 12s; 
}

@keyframes kenburns-slider {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 35, 66, 0.9), rgba(10, 35, 66, 0.2));
    z-index: 2;
    display: flex;
    align-items: center;
}

/* --- HERO CONTENT AESTHETICS --- */
.hero-content-aesthetic {
    max-width: 800px;
    color: white;
}

.hero-content-aesthetic h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-gold { color: #c5a059; }

.gold-badge-premium {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #c5a059;
    color: #c5a059;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* --- BUTTONS --- */
.btn-gold-solid {
    background: #c5a059;
    color: #0a2342;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s ease;
    border-radius: 2px;
}

.btn-gold-solid:hover {
    background: #fff;
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-left: 15px;
    transition: 0.3s;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- SECTION DECOR --- */
.gold-line {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin: 20px auto;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: #0a2342;
    font-weight: 700;
}


/* --- Global Aesthetic Refinements --- */
.sub-title {
    display: block;
    color: #c5a059;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* --- Services: Asymmetric Cards --- */
.home-services-aesthetic {
    padding: 120px 0;
    background: #fff;
}

.section-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.intro-left h2 {
    font-size: 3rem;
    color: #0a2342;
    line-height: 1.1;
}

.intro-right p {
    max-width: 400px;
    color: #666;
    border-left: 2px solid #c5a059;
    padding-left: 20px;
}

.aesthetic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.a-card {
    padding: 60px 40px;
    background: #f8f9fa ;
    position: relative;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-count {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(10, 35, 66, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
}

.a-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.aesthetic-link {
    display: inline-block;
    margin-top: 25px;
    text-decoration: none;
    color: #c5a059;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.a-card:hover {
    background: #0a2342;
    transform: translateY(-10px);
}

.a-card:hover h3, .a-card:hover p { color: #fff; }

/* --- Stats: Minimalist & Clean --- */
.impact-stats-aesthetic {
    background: #0a2342;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg-text {
    position: absolute;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 2;
}

.stat-block h4 {
    color: #c5a059;
    font-size: 3.5rem;
    margin-bottom: 5px;
}

.stat-block p {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(197, 160, 89, 0.3);
}

/* --- Sectors: Image-First Aesthetic --- */
.home-sectors-aesthetic {
    padding: 150px 0;
}

.sector-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sector-img-stack {
    position: relative;
}

.img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.img-accent-box {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 10px solid #c5a059;
    top: -30px;
    left: -30px;
    z-index: 1;
}

.sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.sector-tags span {
    padding: 8px 16px;
    background: #f1f1f1;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0a2342;
}

/* --- THE UPDATED AESTHETIC CARD --- */
.a-card {
    position: relative;
    padding: 60px 40px;
    background-color: #fff; /* Fallback */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smoother transition */
    
    /* 1. Added Rounded Edges */
    border-radius: 12px;
    
    /* 2. Base Border and Shadow */
    border: 3px solid var(--accent-gold); /* Very faint navy border */
    box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.03); /* Faint initial shadow */
    
    z-index: 1;
}


/* Base Image Overlays - Lightened (0.9 opacity) so text is readable */
.bg-manned {
    /* Fixed: Changed from 0.384 to 0.9 for readability */
    background-image: linear-gradient(rgba(255, 255, 255, 0.301), rgba(255, 255, 255, 0.205)), 
                      url('manned_guard.webp');
}

.bg-cctv {
    background-image: linear-gradient(rgba(255, 255, 255, 0.301), rgba(255, 255, 255, 0.205)),
                      url('cctv.webp');
}

.bg-key {
    background-image: linear-gradient(rgba(255, 255, 255, 0.301), rgba(255, 255, 255, 0.205)), 
                      url("keyholding.webp");
}

/* --- THE HOVER STATE --- */
.a-card:hover {
    transform: translateY(-10px);
    
    /* 3. Gold Shadow on Hover */
    /* Using rgba conversion of #c5a059 at 0.3 opacity */
    box-shadow: 0 15px 40px var(--accent-gold); 
    border: 2px solid var(--accent-gold); /* Optional: Gold border on hover */
}

/* Darken backgrounds and swap text on hover */
.bg-manned:hover {
    background-image: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.95)), 
                      url('https://images.unsplash.com/photo-1582139329536-e7284fece509?auto=format&fit=crop&w=800&q=80');
}

.bg-cctv:hover {
    background-image: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.95)), 
                      url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?auto=format&fit=crop&w=800&q=80');
}

.bg-key:hover {
    background-image: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.95)), 
                      url('keyholding.webp');
}

/* --- TEXT & CONTENT ALIGNMENT (Kept from original) --- */
.a-card:hover h3, 
.a-card:hover p, 
.a-card:hover .card-count,
.a-card:hover .aesthetic-link {
    color: #fff !important; /* Ensure white text on dark background */
}

.a-card .card-content {
    position: relative;
    z-index: 3; /* Content always on top */
}

.card-count {
    font-size: 5rem;
    font-weight: 900;
    color: white; /* Light Navy ghost text */
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 2; /* Between background image and content */
}




/* Container for the side-by-side alignment */
.section-intro-aesthetic {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 80px;
    padding: 60px 0;
}

/* Left Column Styling */
.intro-heading {
    flex: 1;
    min-width: 300px;
}

.intro-heading h2 {
    font-size: 3rem;
    color: #0a2342; /* Brand Navy */
    line-height: 1.1;
    margin: 15px 0;
    font-weight: 800;
}

.sub-title {
    color: #c5a059; /* Brand Gold */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
}

.gold-line {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin-top: 10px;
}

/* Right Column Styling */
.intro-description {
    flex: 2; /* Gives more room for the long text paragraphs */
}

.intro-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    text-align: justify; /* Keeps the right edge clean */
}

/* Style for the first bold sentence */
.lead-text {
    font-size: 1.3rem !important;
    color: #0a2342 !important;
    font-weight: 600;
    line-height: 1.5 !important;
}

/* Responsive Fix for Tablets and Mobile */
@media (max-width: 992px) {
    .section-intro-aesthetic {
        flex-direction: column;
        gap: 40px;
    }
    
    .intro-description {
        border-left: 3px solid #c5a059;
        padding-left: 20px;
    }
}

.lead-text-sector {
    font-size: 1.3rem !important;
    color: var(--accent-gold) !important;
    font-weight: 600;
    line-height: 1.5 !important;
}

/* Parent Dropdown Item */
.dropdown {
    position: relative;
}

.dropdown > a i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

/* The Secret Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 3px solid #c5a059; /* Your Brand Gold */
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    display: block;
    
    /* Animation Properties */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Show on Hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover > a i {
    transform: rotate(180deg); /* Flip the arrow */
}

/* Dropdown Individual Links */
.dropdown-menu li {
    width: 100%;
    display: block;
    margin: 0 !important; /* Reset nav spacing */
}

.dropdown-menu li a {
    color: #0a2342 !important; /* Your Brand Navy */
    padding: 12px 25px;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
    text-transform: none; /* Keep it clean */
}

.dropdown-menu li a:hover {
    background-color: rgba(197, 160, 89, 0.1); /* Light Gold Tint */
    color: var(--accent-gold) !important;
    padding-left: 30px; /* Subtle slide effect */
}


/* --- MOBILE RESPONSIVENESS --- */

@media (max-width: 992px) {

    /* 3. Services Grid - Stack cards */
    .section-intro {
        flex-direction: column;
        gap: 20px;
    }

    .aesthetic-grid {
        grid-template-columns: 1fr; /* Single column */
    }

    /* 4. Impact Stats - Stack stats */
    .stats-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-divider {
        display: none; /* Remove horizontal lines on mobile */
    }

    /* 5. Sector Section - Stack image and text */
    .sector-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .sector-img-stack {
        width: 100%;
    }

    /* 6. Footer Grid - Stack columns */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* Mobile Styles (Phone and Tablet) */
@media screen and (max-width: 992px) {
    
    /* 1. Hide the dropdown sub-menus completely */
    .dropdown-menu {
        display: none !important;
    }

    /* 2. Remove the dropdown arrow icon (optional but looks cleaner) */
    .dropdown .fa-chevron-down {
        display: none;
    }

    /* 3. Ensure the main links (Services/Sectors) are still clickable */
    .nav-links {
        display: flex;
        flex-wrap: wrap; /* Allows links to wrap if they are too wide */
        justify-content: center;
        gap: 15px;
        padding: 10px 0;
    }

    .nav-links li {
        list-style: none;
    }

    /* 4. Style the "Get a Quote" button to stand out on mobile */
    .btn-primary {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 20px;
    }
}

img {
    max-width: 100%;
    height: auto;
}