/* Global Styles */
:root {
    --primary-blue: #007bff;
    --dark-blue: #0056b3;
    --light-blue: #e3f2fd;
    --dark-gray: #343a40;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --text-gray: #6c757d;
    --brand-gold: #C8A03A;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-shield {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-m {
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    z-index: 1;
    position: relative;
}

.logo-text {
    color: var(--brand-gold);
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

.logo-slogan {
    color: var(--text-gray);
    font-style: italic;
    font-size: 12px;
    margin-top: -5px;
}

/* Navigation */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: bold;
}

.nav-link {
    font-weight: 500;
    color: var(--black) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.nav-link.active {
    color: var(--primary-blue) !important;
    border-bottom: 2px solid var(--primary-blue);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/marvel-inrprcess.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    min-height: 100vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.hero-slogan {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.hero-tagline {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.construction-image {
    position: relative;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
}

.service-icon i {
    color: var(--primary-blue) !important;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h5 {
    color: var(--dark-gray);
    font-weight: bold;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
}

.feature-card i {
    color: var(--primary-blue) !important;
}

.benefit-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h4 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-weight: 500;
    color: var(--dark-gray);
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    color: var(--primary-blue);
}

.contact-card h5 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}



/* Footer */
.footer {
    background: var(--dark-gray) !important;
}

.footer h5 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-blue) !important;
}

.footer-brand p {
    margin-bottom: 0.5rem;
}

/* Footer logo */
.footer-logo {
    width: 140px;
    height: auto;
    display: block;
}

/* Ensure brand text in footer is white, not gold */
.footer .logo-text {
    color: var(--white);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 123, 255, 0.4), rgba(0, 86, 179, 0.4)), url('../images/about.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 0 60px;
    position: relative;
}

.about-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.mission-box {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.mission-box::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-blue);
}

/* Company Profile Styles */
.profile-header {
    background: linear-gradient(rgba(0, 123, 255, 0.4), rgba(0, 86, 179, 0.4)), url('../images/company profile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
    position: relative;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 123, 255, 0.4), rgba(0, 86, 179, 0.4)), url('../images/Services.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 0 60px;
    position: relative;
}

/* Key Customers Page Styles */
.customers-hero {
    background: linear-gradient(rgba(0, 123, 255, 0.4), rgba(0, 86, 179, 0.4)), url('../images/costomer key.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 0 60px;
    position: relative;
}

.profile-content {
    padding: 3rem 0;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.info-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Services Page Styles */
.service-detail {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-blue);
}

.service-detail h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Projects Page Styles */
.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    text-align: center;
}

.project-body {
    padding: 1.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
}

.status-completed {
    background: var(--light-blue);
    color: var(--dark-blue);
}

.status-running {
    background: #fff3cd;
    color: #856404;
}

/* Customers Page Styles */
.customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.customer-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.customer-card:hover {
    transform: translateY(-5px);
}

.customer-logo {
    width: 120px;
    height: 80px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* Slightly larger variant for specific logos */
.customer-logo-large {
    width: 200px;
    height: 120px;
}

.customer-logo:hover {
    transform: scale(1.05);
}

.customer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.12);
    transition: transform 0.3s ease;
}

.customer-logo:hover img {
    transform: scale(1.2);
}

.featured-customer {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    transform: scale(1.05);
}

.featured-customer:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
}

.featured-customer .customer-logo {
    background: var(--primary-blue);
    color: var(--white);
}

.featured-customer .customer-logo i {
    color: var(--white) !important;
}

/* Contact Page Styles */
.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-success {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-success:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 2rem;
        margin-top: -30px;
    }
    
    .customer-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-container {
        gap: 5px;
    }
    
    .nav-logo {
        width: 30px;
        height: 30px;
    }
    
    .logo-shield {
        width: 30px;
        height: 30px;
    }
    
    .logo-m {
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .service-card,
    .feature-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

.scroll-to-top.show {
    display: flex;
} 