/* ===== BASE STYLES & VARIABLES ===== */
:root {
    --primary-color: #1a365d;        /* Professional navy blue */
    --secondary-color: #d4af37;      /* Gold accent */
    --accent-orange: #ff6b35;        /* Primary orange */
    --accent-orange-light: #ff8e53;  /* Light orange */
    --accent-orange-dark: #e55a2b;   /* Dark orange */
    --text-color: #333333;           /* Main text color */
    --light-bg: #f8f9fa;             /* Light background */
    --white: #ffffff;                /* White */
    --light-gray: #f8f9fa;           /* Light gray for header */
    --medium-gray: #6c757d;          /* Medium gray */
    --dark-gray: #343a40;            /* Dark gray */
    --success-color: #28a745;        /* Success green */
    --error-color: #dc3545;          /* Error red */
    --transition: all 0.3s ease;     /* Transition timing */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Lighter shadow */
    --radius: 8px;                   /* Border radius */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: 70px !important; /* Fixed for smaller header */
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.orange-text {
    color: var(--accent-orange);
}

.orange-bg {
    background-color: var(--accent-orange);
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

/* ===== HEADER & NAVIGATION - FIXED ===== */
.header {
    background-color: var(--light-gray) !important; /* Light grey header */
    box-shadow: var(--shadow);
    position: fixed;
    width: 100% !important; /* Full width */
    top: 0;
    z-index: 1000;
    padding: 0 !important; /* Remove vertical padding */
    height: 70px !important; /* Fixed smaller height */
    min-height: 70px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo styling - Smaller */
.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Reduced gap */
    text-decoration: none;
    transition: var(--transition);
    height: 50px; /* Fixed height */
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-img {
    height: 45px !important; /* Reduced from 60px */
    width: auto;
    display: block;
}

.logo-text h1 {
    color: var(--primary-color) !important; /* Dark blue for contrast */
    font-size: 1.4rem !important; /* Reduced from 1.8rem */
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-text p {
    color: var(--accent-orange) !important; /* Orange for visibility */
    font-size: 0.75rem !important; /* Reduced from 0.9rem */
    margin: 0;
    font-style: italic;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Desktop Navigation - Compact */
.desktop-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 15px; /* Reduced from 25px */
    margin: 0;
    padding: 0;
    align-items: center;
}

.desktop-nav .nav-menu li a {
    text-decoration: none;
    color: var(--primary-color) !important; /* Dark blue for best contrast */
    font-weight: 600;
    padding: 6px 12px !important; /* Reduced padding */
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem !important; /* Slightly smaller */
}

.desktop-nav .nav-menu li a:hover {
    color: var(--accent-orange) !important; /* Orange on hover */
    background-color: rgba(255, 107, 53, 0.1);
}

.desktop-nav .nav-menu li a.active {
    color: var(--accent-orange) !important;
    background-color: rgba(255, 107, 53, 0.1);
}

.desktop-nav .nav-menu li a.btn-primary {
    background-color: var(--accent-orange) !important; /* Orange button */
    color: white !important; /* White text on orange */
    padding: 8px 20px !important; /* Smaller button */
    font-size: 0.9rem !important;
    margin-left: 5px;
    border: none;
}

.desktop-nav .nav-menu li a.btn-primary:hover {
    background-color: var(--accent-orange-dark) !important;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem; /* Smaller */
    color: var(--primary-color) !important;
    cursor: pointer;
    padding: 3px;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--accent-orange) !important;
}

/* ===== MOBILE SIDE DRAWER ===== */
.side-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.side-drawer.active {
    right: 0;
}

.close-drawer {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.close-drawer:hover {
    color: var(--accent-orange);
}

.drawer-logo {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.drawer-logo h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.drawer-logo p {
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-style: italic;
}

.drawer-menu {
    list-style: none;
    padding: 0;
}

.drawer-menu li {
    margin-bottom: 10px;
}

.drawer-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
    font-weight: 600;
}

.drawer-menu li a:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    padding-left: 25px;
}

.drawer-cta {
    background-color: var(--accent-orange);
    color: white !important;
    margin-top: 20px;
}

.drawer-cta:hover {
    background-color: var(--accent-orange-dark) !important;
    color: white !important;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

.btn-primary:hover {
    background-color: var(--accent-orange-dark);
    border-color: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #0f2547;
    border-color: #0f2547;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.btn-outline:hover {
    background-color: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-light:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    transform: translateY(-2px);
}

/* ===== HERO SECTIONS - IMPROVED VISIBILITY ===== */
/* Main hero for home page */
.hero {
    background: linear-gradient(rgba(26, 54, 93, 0.92), rgba(26, 54, 93, 0.95)), 
                url('../images/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 0 60px !important;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0 !important;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem; /* Increased slightly */
    font-weight: 800 !important; /* Bolder font */
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); /* Stronger shadow */
    letter-spacing: -0.5px;
}

.hero-title .orange-text {
    color: var(--accent-orange) !important;
    font-weight: 800 !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.3rem; /* Slightly larger */
    margin-bottom: 35px;
    opacity: 0.95 !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500 !important; /* Medium weight */
    line-height: 1.7;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-buttons .btn {
    padding: 14px 35px;
    font-size: 1.1rem;
    border-radius: var(--radius);
    font-weight: 700 !important; /* Bolder buttons */
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin: 50px 0 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
    padding: 10px;
}

.stat-number {
    display: block;
    font-size: 2.8rem; /* Larger numbers */
    font-weight: 800 !important; /* Bolder */
    color: var(--accent-orange);
    margin-bottom: 8px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.stat-text {
    font-size: 1rem;
    opacity: 0.95 !important;
    font-weight: 600 !important; /* Medium weight */
    letter-spacing: 0.5px;
}

/* Page hero for other pages */
.page-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.92), rgba(26, 54, 93, 0.95)), 
                url('../images/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0 60px !important;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0 !important;
}

.page-hero h1 {
    font-size: 2.8rem; /* Larger */
    margin-bottom: 20px;
    font-weight: 800 !important; /* Bolder */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.3rem; /* Larger */
    opacity: 0.95 !important;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500 !important; /* Medium weight */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* Alternative: Lighter background for better contrast */
/* Uncomment this if text is still not visible enough */

/*
.hero, .page-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.15)), 
                linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), 
                url('../images/background.jpeg') !important;
}

.hero-title, .page-hero h1 {
    color: white !important;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4) !important;
}

.hero-text, .page-hero p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3) !important;
}
*/

/* Alternative 2: Darker background for maximum contrast */
/* Uncomment this for darkest background */

/*
.hero, .page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                linear-gradient(rgba(26, 54, 93, 0.95), rgba(26, 54, 93, 0.98)), 
                url('../images/background.jpeg') !important;
}

.hero-title, .page-hero h1 {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.hero-text, .page-hero p {
    color: rgba(255, 255, 255, 0.98) !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4) !important;
}
*/

/* Alternative 3: Completely different color scheme */
/* Uncomment this for a different look */

/*
.hero, .page-hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 107, 53, 0.85)), 
                url('../images/background.jpeg') !important;
}

.hero-title, .page-hero h1 {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.hero-text, .page-hero p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-title .orange-text {
    color: var(--primary-color) !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2) !important;
}

.stat-number {
    color: var(--primary-color) !important;
}
*/

/* Responsive fixes for text visibility */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
        font-weight: 800 !important;
    }
    
    .hero-text {
        font-size: 1.2rem !important;
        font-weight: 500 !important;
    }
    
    .hero-stats {
        padding: 20px;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.3rem !important;
    }
    
    .stat-text {
        font-size: 0.95rem !important;
    }
    
    .page-hero h1 {
        font-size: 2.3rem !important;
    }
    
    .page-hero p {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-text {
        font-size: 1.1rem !important;
    }
    
    .hero-stats {
        gap: 30px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Add contrast enhancement overlay */
.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                rgba(26, 54, 93, 0.92) 0%, 
                rgba(26, 54, 93, 0.85) 50%,
                rgba(26, 54, 93, 0.95) 100%);
    z-index: 1;
}

.hero > .container,
.page-hero > .container {
    position: relative;
    z-index: 2;
}

/* ===== IMPROVE VISIBILITY FOR ALL WHITE TEXT ===== */
.white-text {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3) !important;
}

.hero *:not(.btn) {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Ensure orange text stands out */
.orange-text {
    color: var(--accent-orange) !important;
    font-weight: 700 !important;
}

/* ===== SECTION STYLES ===== */
.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-orange);
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--accent-orange);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 25px;
}

.service-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-desc {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== CEO SECTION ===== */
.ceo-section {
    background-color: var(--light-bg);
}

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

.ceo-image .image-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-gray));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
    color: var(--accent-orange);
    border: 5px solid white;
    box-shadow: var(--shadow);
}

.ceo-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 25px 0;
    padding-left: 20px;
    border-left: 4px solid var(--accent-orange);
    line-height: 1.6;
}

.ceo-name {
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.ceo-bio {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FORM STYLES ===== */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    min-height: 20px;
}

.success-message {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-top: 20px;
    display: none;
    border-left: 4px solid var(--success-color);
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 30px;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent-orange);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-orange);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--accent-orange);
    margin-top: 3px;
    width: 20px;
}

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

.social-icon {
    color: white;
    font-size: 1.3rem;
    transition: var(--transition);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
}

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

/* ===== INFO CARDS ===== */
.info-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.info-card h2,
.info-card h3,
.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ===== FULL SCREEN BACKGROUNDS ===== */
.hero, .page-hero {
    min-height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    position: relative;
}

/* Specific backgrounds for each page */
.hero.home-hero {
    background: url('../images/background.jpeg') !important;
}

.hero.about-hero {
    background: url('../images/staff members.jpeg') !important;
}

.hero.iso-hero {
    background: url('../images/boardroom.jpeg') !important;
}

.hero.services-hero {
    background: url('../images/background.jpeg') !important;
}

.hero.contact-hero {
    background: url('../images/background.jpeg') !important;
}

.hero.bbbee-hero {
    background: url('../images/background.jpeg') !important;
}

.hero.skills-hero {
    background: url('../images/background.jpeg') !important;
}

.hero.enquiry-hero {
    background: url('../images/background.jpeg') !important;
}

/* CEO Image Styles */
.ceo-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.ceo-image {
    position: relative;
    display: inline-block;
}

.ceo-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--secondary-color));
    z-index: 1;
    animation: pulse 2s infinite;
}

.ceo-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: white;
    z-index: 1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .ceo-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px !important;
    }
    
    .header {
        height: 60px !important;
        min-height: 60px !important;
    }
    
    .header-container {
        height: 60px !important;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0 40px !important;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .page-hero {
        padding: 80px 0 40px !important;
        min-height: 250px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .logo-img {
        height: 40px !important;
    }
    
    .logo-text h1 {
        font-size: 1.3rem !important;
    }
    
    .logo-text p {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 55px !important;
    }
    
    .header {
        height: 55px !important;
        min-height: 55px !important;
    }
    
    .header-container {
        height: 55px !important;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logo-img {
        height: 35px !important;
    }
    
    .logo-text h1 {
        font-size: 1.1rem !important;
    }
    
    .logo-text p {
        font-size: 0.65rem !important;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1rem !important;
    }
    
    .logo-text p {
        display: none; /* Hide on very small screens */
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header, .footer, .menu-toggle, .side-drawer {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
    
    .hero {
        background: none;
        color: black;
        min-height: auto;
        padding: 20px 0;
    }
    
    .hero-title, .page-hero h1, .section-title {
        color: black;
    }
    
    .btn {
        display: none;
    }
}

/* Add this to your CSS file */
.menu-toggle {
    display: none !important; /* Hidden by default on desktop */
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block !important; /* Show on mobile */
    }
}