/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-logo h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e74c3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Mobile Hero Height Adjustment */
@media (max-width: 768px) {
    .hero {
        min-height: 66.67vw !important;
        padding: 20px 0 10px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        min-height: 60vw;
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 70vh;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.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 1.5s ease-in-out;
}

/* Mobile Image Optimization */
@media (max-width: 768px) {
    .slide {
        background-position: center center;
        background-size: cover;
    }
}

.slide.active {
    opacity: 1;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #111111;
}

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

.service-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: #e74c3c;
}

.service-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    margin: 0 auto;
    border-radius: 1px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #b0b0b0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.service-list li i {
    color: #e74c3c;
    font-size: 1rem;
    width: 20px;
    transition: transform 0.3s ease;
}

.service-list li:hover i {
    transform: scale(1.1);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #0a0a0a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature p {
    color: #b0b0b0;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #111111;
}

/* Our Work Section */
.our-work {
    padding: 80px 0;
    background: #0a0a0a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.work-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
    padding: 0 1rem;
}

.work-category {
    background: linear-gradient(145deg, #1a1a1a, #222);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #333;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.work-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #c0392b, #e74c3c);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.work-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.category-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 1px;
}

.category-description {
    color: #b0b0b0;
    text-align: center;
    margin-top: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.work-images {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

/* Mobile slideshow styles */
.mobile-slider {
    display: none;
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.mobile-slider-container {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.mobile-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.mobile-slide {
    min-width: 100%;
    height: 375px;
}

.mobile-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mobile-nav-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.mobile-nav-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.mobile-nav-btn.prev {
    transform: rotate(180deg);
}

.mobile-nav-btn.prev:hover {
    transform: rotate(180deg) scale(1.1);
}

/* Mobile Carousels - Swiper.js */
.mobile-services-carousel,
.mobile-features-carousel {
    display: none;
}

@media (max-width: 768px) {
    .services-grid,
    .features-grid {
        display: none;
    }
    
    .mobile-services-carousel,
    .mobile-features-carousel {
        display: block;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        position: relative;
        margin: 0;
        padding: 0;
    }
    
    /* Swiper container styling */
    .swiper {
        width: 100%;
        height: auto;
        padding: 20px 0;
    }
    
    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 15px;
    }
    
    /* Service cards in carousel */
    .mobile-services-carousel .swiper-slide .service-card {
        max-width: 280px;
        margin: 0 auto;
        width: 100%;
        background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
        border: none;
        border-radius: 16px;
        padding: 25px 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .mobile-services-carousel .swiper-slide .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-services-carousel .service-header h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .mobile-services-carousel .service-list {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .mobile-services-carousel .service-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .mobile-services-carousel .service-list li i {
        margin-right: 10px;
        color: #e74c3c;
        font-size: 16px;
        min-width: 20px;
    }
    
    /* Feature cards in carousel - Simple design */
    .mobile-features-carousel .swiper-slide .feature-simple {
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
        padding: 20px 15px;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        transition: all 0.3s ease;
    }
    
    .mobile-features-carousel .swiper-slide .feature-simple:hover {
        transform: none;
        box-shadow: none;
        border-color: transparent;
    }
    
    .mobile-features-carousel .feature-simple i {
        color: #e74c3c;
        font-size: 32px;
        margin-bottom: 15px;
        display: block;
    }
    
    .mobile-features-carousel .feature-simple h3 {
        color: #ffffff;
        font-size: 1.2rem;
        margin-bottom: 12px;
        font-weight: 600;
    }
    
    .mobile-features-carousel .feature-simple p {
        color: #cccccc;
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }
    

}





.work-image {
    flex: 0 0 auto;
    width: 240px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    max-width: 240px;
    min-width: 240px;
    border: 2px solid transparent;
    background: linear-gradient(145deg, #1a1a1a, #222);
}

.work-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.work-image:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: #e74c3c;
}

.work-image:hover::before {
    opacity: 1;
}

.work-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
    max-width: 100% !important;
    max-height: 100% !important;
    display: block !important;
    position: relative !important;
}

.work-image:hover img {
    transform: scale(1.1);
}

.work-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 100% !important;
    max-height: 100% !important;
    display: block !important;
    position: relative !important;
    z-index: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #666;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #e74c3c;
    font-weight: 700;
}

.stat p {
    color: #b0b0b0;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.about-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Mobile adjustments for about photo */
@media (max-width: 768px) {
    .about-photo {
        max-width: 300px;
    }
}


/* CTA Section */
.cta {
    padding: 80px 0;
    background: #111111;
    color: white;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-info p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #b0b0b0;
}

.contact-item i {
    color: #e74c3c;
    font-size: 1.2rem;
    width: 20px;
}

.phone-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.phone-link:hover {
    color: #c0392b;
    background: rgba(231, 76, 60, 0.1);
    transform: scale(1.05);
}

.contact-item:hover .phone-link {
    color: #fff;
    background: rgba(231, 76, 60, 0.2);
}

.contact-form {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #0a0a0a;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

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

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide {
        background-position: center center;
        background-size: cover;
        height: 100%;
    }
    
    .hero-slideshow {
        height: 100%;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        display: none;
    }
    
    .mobile-services-carousel {
        display: block;
    }

    .features-grid {
        display: none;
    }
    
    .mobile-features-carousel {
        display: block;
    }
    
    .work-images {
        display: none;
    }
    
    .mobile-slider {
        display: block;
    }
    
    .work-image {
        width: 280px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 15px 0 5px;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 0.75rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        max-width: 95%;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

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

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loading-logo {
    width: 200px;
    height: auto;
    opacity: 0;
    animation: logoFadeIn 1s ease-out 0.5s forwards;
}

.loading-bar-container {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    animation: barFadeIn 0.5s ease-out 1s forwards;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #f0f0f0, #ffffff);
    border-radius: 8px;
    animation: loadingProgress 2s ease-out 1.5s forwards;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.loading-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes barFadeIn {
    from {
        opacity: 0;
        transform: scaleX(0.3) scaleY(0.8);
    }
    50% {
        transform: scaleX(1.1) scaleY(1.1);
    }
    to {
        opacity: 1;
        transform: scaleX(1) scaleY(1);
    }
}

@keyframes loadingProgress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Hide main content initially */
body.loading {
    overflow: hidden;
}

body.loading .navbar,
body.loading .hero,
body.loading .services,
body.loading .why-choose-us,
body.loading .about,
body.loading .our-work,
body.loading .cta,
body.loading .contact,
body.loading .footer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.loaded .navbar,
body.loaded .hero,
body.loaded .services,
body.loaded .why-choose-us,
body.loaded .about,
body.loaded .our-work,
body.loaded .cta,
body.loaded .contact,
body.loaded .footer {
    opacity: 1;
    transform: translateY(0);
}

 