/* CSS Variables */
:root {
    --primary-color: #800000;
    --secondary-color: #1a1a1a;
    --accent-color: #c00000;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-contact span {
    margin-right: 25px;
}

.top-contact i {
    margin-right: 8px;
}

.top-social a {
    color: white;
    margin-left: 15px;
    transition: var(--transition);
}

.top-social a:hover {
    color: var(--accent-color);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.logo-img {
    height: 50px;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 80%;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.3);
}

/* Hero Slider */
.hero-slider {
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.carousel-item {
    height: 90vh;
    min-height: 600px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    z-index: 2;
    bottom: 30%;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.carousel-caption p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Section Styles */
.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* About Section */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.experience-box h3 {
    font-size: 3rem;
    font-weight: 700;
}

/* Services Section */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    transform: rotateY(360deg);
}

.service-card h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Why Choose Us */
.feature-box {
    padding: 30px;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: white;
}

.stat-box h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Portfolio Section */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.portfolio-item img {
    transition: var(--transition);
    width: 100%;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonial-item {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-item p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* CTA Section */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
}

.footer-logo {
    height: 60px;
}

.footer h5 {
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    color: #aaa;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .experience-box {
        right: 10px;
        bottom: 10px;
    }
    
    .cta-box {
        padding: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.6s ease;
}
/* style.css - Shared CSS */
 

/* Project Card Hover Effect */
.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* Counter Animation */
.counter {
    color: #fff;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section Headings */
h6 {
    letter-spacing: 2px;
}

/* Buttons */
.btn-danger {
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #a00000 0%, #800000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem !important;
    }
    .display-4 {
        font-size: 2.5rem !important;
    }
}
.process-number {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: linear-gradient(135deg, #800000 0%, #a00000 100%);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            box-shadow: 0 0 20px rgba(128,0,0,0.5);
            position: relative;
            transition: all 0.4s ease;
        }
        .process-number::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid rgba(128,0,0,0.3);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.3); opacity: 0; }
        }
        .process-step {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            transition: all 0.4s ease;
            cursor: default;
        }
        .process-step:hover {
            padding-left: 15px;
            border-bottom-color: rgba(128,0,0,0.3);
        }
        .process-step:hover .process-number {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 0 30px rgba(128,0,0,0.8);
        }
        .process-step:hover .step-title {
            color: #ff6b6b;
        }
        .step-title {
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }
        .step-desc {
            color: #aaa;
            font-size: 15px;
            margin: 0;
            line-height: 1.6;
        }
        .process-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.5);
        }
        .process-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(128,0,0,0.3) 0%, transparent 100%);
            z-index: 1;
        }
        .process-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .process-image-wrapper:hover img {
            transform: scale(1.05);
        }
        .floating-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #800000 0%, #a00000 100%);
            color: #fff;
            padding: 20px 25px;
            border-radius: 15px;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(128,0,0,0.5);
            backdrop-filter: blur(10px);
        }
        .floating-badge h3 {
            font-size: 32px;
            font-weight: 700;
            margin: 0;
            line-height: 1;
        }
        .floating-badge p {
            margin: 0;
            font-size: 13px;
            opacity: 0.9;
        }
        .btn-process {
            background: linear-gradient(135deg, #800000 0%, #a00000 100%);
            color: #fff !important;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }
        .btn-process::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        .btn-process:hover::before {
            left: 100%;
        }
        .btn-process:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(128,0,0,0.5);
            color: #fff !important;
        }
        .section-label {
            display: inline-block;
            background: rgba(128,0,0,0.2);
            color: #ff6b6b;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            border: 1px solid rgba(128,0,0,0.3);
        }