/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0A2463; /* Navy Blue */
    --secondary: #D4AF37; /* Gold */
    --accent: #1E3A8A; /* Darker Blue */
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --success: #28A745;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
}

.btn-primary:hover {
    background: #B8972E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 36, 99, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: var(--light);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 36, 99, 0.7), rgba(10, 36, 99, 0.9)),
                url('https://images.unsplash.com/photo-1585515502035-57ecd2c57b92?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light);
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.section {
    padding: 80px 0;
}

.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.mission-card {
    border-top: 4px solid var(--secondary);
}

.vision-card {
    border-top: 4px solid var(--primary);
}

.leadership h3 {
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.member-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary);
}

.position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
}

.quote {
    font-style: italic;
    color: var(--gray);
    border-left: 3px solid var(--secondary);
    padding-left: 15px;
    margin-top: 15px;
}

/* Business Section */
.business-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0 80px;
}

.service-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-10px);
}

.service-card:hover .service-icon {
    color: var(--secondary);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.ventures-section {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid var(--light-gray);
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.venture-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.venture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.venture-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.venture-card i {
    color: var(--secondary);
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.values-section .section-title {
    color: white;
}

.values-section .section-title::after {
    background: var(--secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: white;
}

/* ======= Services Section ======= */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-section .section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.services-section .section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.services-section .section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), #FFD700);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 80px;
}

/* Service Buttons */
.service-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    letter-spacing: 0.5px;
}

.service-btn:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Service Details Modals */
.service-details-container {
    position: relative;
}

.service-details {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow-y: auto;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.service-details.active {
    display: block;
}

.details-header {
    background: var(--primary);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.details-header h3 {
    margin: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.details-header h3 i {
    color: var(--secondary);
}

.close-details {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-details:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.details-content {
    padding: 40px;
}

.details-content h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 10px;
}

.details-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.details-content ul li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid #eee;
    color: var(--gray);
    line-height: 1.6;
}

.details-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.details-content ul li strong {
    color: var(--primary);
}

.liberian-context {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.05), rgba(212, 175, 55, 0.05));
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
    margin-top: 30px;
}

.liberian-context h5 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.liberian-context p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    backdrop-filter: blur(3px);
}

.modal-overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-details {
        width: 95%;
        max-height: 90vh;
    }
    
    .details-content {
        padding: 25px;
    }
    
    .details-header {
        padding: 20px;
    }
    
    .details-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light);
    gap: 15px;
}

.logo-design {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.logo-above {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    opacity: 0.8;
}

.logo-main-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
    margin: 2px 0;
}

.logo-below {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    opacity: 0.9;
}

.logo-acronym {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    padding: 8px 12px;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    margin-left: 10px;
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 5px;
}

.success-message i {
    color: #28a745;
    margin-right: 10px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 5px;
}

.error-message i {
    color: #dc3545;
    margin-right: 10px;
}

/* Loading spinner */
.fa-spinner {
    margin-right: 8px;
}

/* Disabled button state */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* Alternative: If using image logo */
.logo-img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Footer Logo */
.footer .logo-design {
    text-align: center;
}

.footer .logo-main-text {
    font-size: 1.2rem;
}

.footer .logo-above,
.footer .logo-below {
    font-size: 0.6rem;
}

/* Hero Logo Styles */
.hero-logo {
    margin-bottom: 40px;
}

.hero-logo-design {
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-logo-above {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-logo-main {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin: 10px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    line-height: 1;
}

/* Update team grid for 4 members */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: start;
    margin-top: 40px;
}

/* IT Consultant Image Styles */
.it-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--secondary);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.it-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.it-photo:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Fallback if image doesn't load */
.it-image::before {
    content: 'IT';
    position: absolute;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 0;
    z-index: 1;
}

.it-image img[src=""]::before {
    opacity: 1;
}

/* Ensure all team images are consistent */
.ceo-image, .operations-image, .admin-image, .it-image {
    width: 180px;
    height: 180px;
    margin-bottom: 25px;
}

/* Responsive adjustments for 4 columns */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .ceo-image, .operations-image, .admin-image, .it-image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .team-member {
        padding: 25px 20px;
    }
    
    .ceo-image, .operations-image, .admin-image, .it-image {
        width: 140px;
        height: 140px;
    }
}

/* Footer Logo */
.footer-logo-design {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
    margin-bottom: 15px;
}

.footer-logo-above {
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    opacity: 0.8;
}

.footer-logo-main {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    margin: 3px 0;
}

.footer-logo-below {
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--light-gray);
    opacity: 0.9;
}
/* Chief Administrator Image Styles */
.admin-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--secondary);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.admin-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.admin-photo:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Fallback if image doesn't load */
.admin-image::before {
    content: 'CA';
    position: absolute;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 0;
    z-index: 1;
}

.admin-image img[src=""]::before {
    opacity: 1;
}

/* Update team grid for 3 members */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
    align-items: start;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

/* Ensure all team images are consistent */
.ceo-image, .operations-image, .admin-image {
    width: 180px;
    height: 180px;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .ceo-image, .operations-image, .admin-image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .team-member {
        padding: 25px 20px;
    }
    
    .ceo-image, .operations-image, .admin-image {
        width: 140px;
        height: 140px;
    }
}
/* Enhanced Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--secondary);
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.contact-info .section-title::after {
    left: 0;
    transform: none;
}

.contact-card {
    background: white;
    padding: 0;
    box-shadow: none;
    border-top: none;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: flex-start;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.phone-link, .email-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(10, 36, 99, 0.03);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.phone-link:hover, .email-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
}

.contact-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 5px;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
}

.contact-btn i {
    font-size: 1.1rem;
    width: auto;
    height: auto;
    background: transparent;
}

.email-btn {
    background: linear-gradient(135deg, var(--primary), #1E3A8A);
    color: white;
}

.call-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--primary);
}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info, .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
    }
}

/* Hero Slider Styles */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2); /* Subtle overlay, gradient is in background-image */
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--secondary);
}

.dot:hover {
    background: var(--secondary);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.2);
    color: white;
    border: 2px solid var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .slider-arrow {
        display: none; /* Hide arrows on very small screens, dots are enough */
    }
}

.contact-card h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.contact-card h4 i {
    color: var(--secondary);
}

/* Contact Items */
.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item i {
    color: var(--secondary);
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 8px;
    display: block;
}

/* Equipment Section Styles */
.equipment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

/* Filter Buttons */
.equipment-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 50px;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 36, 99, 0.2);
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 30px;
}

/* Equipment Card */
.equipment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.equipment-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
    border-color: var(--secondary);
}

.equipment-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary), var(--accent));
}

.equipment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.equipment-card:hover .equipment-img {
    transform: scale(1.1);
}

.equipment-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.equipment-content {
    padding: 30px;
}

.equipment-content h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.equipment-category {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.equipment-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.spec {
    background: rgba(10, 36, 99, 0.05);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec i {
    color: var(--secondary);
}

.equipment-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Comparison Boxes */
.equipment-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
}

.comparison-modern h4,
.comparison-traditional h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.comparison-modern h4 i {
    color: #28a745;
}

.comparison-traditional h4 i {
    color: #dc3545;
}

.comparison-modern p,
.comparison-traditional p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.comparison-modern {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 15px;
}

/* Staffing Note */
.equipment-staffing {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.05), rgba(212, 175, 55, 0.05));
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.equipment-staffing i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.equipment-staffing span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Specs Button */
.btn-specs {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-specs:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Modal Styles */
.equipment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 30px;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-filter {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .equipment-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-modern {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-right: 0;
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .equipment-content {
        padding: 20px;
    }
    
    .equipment-specs {
        flex-direction: column;
        gap: 8px;
    }
    
    .spec {
        width: 100%;
    }
}

/* Phone and Email Links */
.phone-link, .email-link {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(10, 36, 99, 0.05);
    border-radius: 8px;
    border: 1px solid transparent;
}

.phone-link:hover, .email-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
    border-color: var(--secondary);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.phone-link i, .email-link i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.email-link {
    background: rgba(255, 215, 0, 0.05);
    color: #d48806;
}

.email-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ad6800;
}

.contact-note {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 5px;
    font-style: italic;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px dashed rgba(212, 175, 55, 0.3);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.email-btn {
    background: linear-gradient(135deg, #0A2463, #1E3A8A);
    color: white;
}

.call-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-btn:active {
    transform: translateY(-1px);
}

/* Specific hover effects */
.email-btn:hover {
    background: linear-gradient(135deg, #1E3A8A, #0A2463);
}

.call-btn:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
}

/* Click animation for phone links */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.phone-link:active, .call-btn:active {
    animation: pulse 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-card {
        padding: 25px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .contact-item i {
        margin-top: 0;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
    }
    
    .phone-link, .email-link {
        padding: 10px 15px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-card h4 {
        font-size: 1.2rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Operations Manager Image Styles */
.operations-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--secondary);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.operations-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.operations-photo:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Hide the old icon */
.operations-image i.fa-user-cog {
    display: none;
}

/* Fallback if image doesn't load */
.operations-image::before {
    content: 'CAO';
    position: absolute;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 0;
    z-index: 1;
}

.operations-image img[src=""]::before {
    opacity: 1;
}

/* Update team grid layout if needed */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 300px;
}

/* Ensure consistent styling with CEO image */
.ceo-image, .operations-image {
    width: 180px;
    height: 180px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .ceo-image, .operations-image {
        width: 150px;
        height: 150px;
    }
    
    .team-grid {
        gap: 30px;
    }
}

/* Logo with Image Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light);
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-abbreviation {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.logo-full {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--light);
    opacity: 0.9;
    margin-top: 3px;
}

/* Mobile Responsive Logo */
@media (max-width: 992px) {
    .logo-full {
        display: none;
    }
    
    .logo {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .logo-abbreviation {
        font-size: 1.5rem;
    }
    
    .logo {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    
    .logo {
        gap: 0;
    }
}

.hero-logo-below {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-top: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-logo-main {
        font-size: 2.2rem;
    }
    
    .hero-logo-above {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .hero-logo-below {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-design {
        display: none; /* Hide full logo on mobile */
    }
    
    .logo-acronym {
        font-size: 1.5rem;
        padding: 6px 10px;
        margin-left: 0;
    }
    
    .logo-img {
        height: 40px;
    }
}

@media (min-width: 769px) {
    .mobile-logo {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .refinery-section {
        padding: 40px 20px;
    }
    
    .refinery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .refinery-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .refinery-card {
        padding: 25px 20px;
    }
}

/* Contact Section */
.contact-section {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 5px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    resize: vertical;
}

/* ======= Footer Styles ======= */
.footer {
    background: linear-gradient(135deg, #0a1a3a 0%, #0A2463 100%);
    color: var(--light);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), #FFD700);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Brand Section */
.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.footer-logo-sub {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--light);
    opacity: 0.9;
    margin-top: 5px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    margin: 20px 0;
    padding-left: 10px;
    border-left: 3px solid var(--secondary);
    padding-left: 15px;
}

.footer-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--secondary);
}

.footer-values span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-content h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.footer-content h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-links i,
.footer-services i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* Contact Section */
.footer-contact .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact .contact-item i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-contact .contact-item div p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact .contact-item strong {
    color: var(--light);
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-tagline {
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--secondary);
        border-left: none;
        padding-left: 0;
        padding-top: 15px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-values {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* CEO Image Styles */
.ceo-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--secondary);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.ceo-photo:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Hide the old icon */
.ceo-image i.fa-user-tie {
    display: none;
}

/* If image doesn't load properly, show fallback */
.ceo-image::before {
    content: 'CEO';
    position: absolute;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.ceo-image img[src=""]::before {
    opacity: 1;
}

/* Update Operations Manager section to match */
.team-member .member-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--secondary);
}

.team-member .member-img i {
    font-size: 3rem;
    color: var(--secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ceo-image {
        width: 150px;
        height: 150px;
    }
    
    .team-member .member-img {
        width: 130px;
        height: 130px;
    }
    
    .team-member .member-img i {
        font-size: 2.5rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--primary);
        text-align: center;
        padding: 20px 0;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .ventures-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
}