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

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

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

.nav-links a:hover {
    color: #ff6b35;
}

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

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

/* Contact Banner */
.contact-banner {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: slideInRight 0.5s ease-out;
}

@media (min-width: 769px) {
    .nav-container .contact-banner {
        position: fixed;
        top: 80px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        position: static !important;
        flex-direction: row;
        gap: 8px;
        animation: none;
        margin-left: auto;
    }
}

.contact-banner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-banner-item:hover {
    background: #ff6b35;
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.contact-banner-item i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;  
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 2;  
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: heroFadeIn 1.5s ease-out;
    z-index: 3;  
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff6b35, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape1 { width: 100px; height: 100px; top: 20%; left: 10%; animation-delay: 0s; }
.shape2 { width: 150px; height: 150px; top: 60%; right: 10%; animation-delay: 2s; }
.shape3 { width: 80px; height: 80px; top: 80%; left: 20%; animation-delay: 4s; }

/* Hero Image  */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(0, 0, 0, 0.8));
    z-index: 2;
}

/* Trusted Brands Section */
.trusted-brands {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.section-title-small {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brands-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.brand-logo-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.brand-logo-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.brand-logo-item img {
    max-width: 140px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}

.brand-placeholder-box {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
}

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

.brands-more-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.brands-more-button:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.brands-more-button i {
    transition: transform 0.3s ease;
}

.brands-more-button:hover i {
    transform: translateX(5px);
}

/* Featured Builds Slideshow Section */
.featured-builds {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    position: relative;
    overflow: hidden;
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

.slide {
    display: none;
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.slide.active {
    display: block;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    height: 100%;
    align-items: center;
    padding: 3rem;
    gap: 3rem;
}

.slide-image {
    height: 100%;
    background: linear-gradient(135deg, #333, #222);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-icon {
    font-size: 6rem;
    color: #ff6b35;
    z-index: 2;
    animation: slideIconPulse 3s ease-in-out infinite;
}

.slide-details {
    padding-left: 2rem;
}

.slide-details h3 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 900;
}

.slide-details .build-type {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 2rem;
    font-weight: 600;
}

.build-features {
    list-style: none;
}

.build-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.build-features li i {
    color: #ff6b35;
    margin-right: 1rem;
    width: 20px;
    flex-shrink: 0;
}

/* Slideshow Navigation */
.slide-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 50;
}

.nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
    background: #ff6b35;
    transform: scale(1.2);
}

/* Slideshow Controls */
.slide-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 100;
}

.slide-control:hover {
    background: #ff6b35;
    transform: translateY(-50%) scale(1.1);
}

.slide-control.prev {
    left: 20px;
}

.slide-control.next {
    right: 20px;
}

/* Social Section */
.social-section {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.social-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.social-icon i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

.social-label {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icon.instagram i { color: #E4405F; }
.social-icon.facebook i { color: #1877F2; }
.social-icon.youtube i { color: #FF0000; }
.social-icon.tiktok i { color: #fe2c55; }

.social-icon.instagram:hover .social-label { color: #E4405F; }
.social-icon.facebook:hover .social-label { color: #1877F2; }
.social-icon.youtube:hover .social-label { color: #FF0000; }
.social-icon.tiktok:hover .social-label { color: #fe2c55; }

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.team-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    margin-top: 1rem;
}

.team-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.about-image {
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

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

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-info h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #fff; 
    text-decoration: none; 
}

.contact-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(10px);
}

.contact-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: #fff; 
    width: 100%;
    gap: 1rem;
}

.contact-link:hover {
    color: #ff6b35;
}

.contact-link:hover .contact-icon {
    background: #ff8c42;
    transform: scale(1.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item > div:not(.contact-icon) {
    flex: 1;
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 2rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideIconPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes slideInRight {
    0% { 
        opacity: 0; 
        transform: translateX(100px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .logo-img {
        height: 30px;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .contact-banner {
        position: static;
        flex-direction: row;
        gap: 8px;
        animation: none;
        margin-left: auto;
    }

    .nav-container {
        align-items: center;
        gap: 1rem;
    }

    .contact-banner-item {
        padding: 8px 12px;
        font-size: 0.9rem;
        border-radius: 20px;
    }

    .contact-banner-item span {
        display: none;
    }

    .contact-banner-item i {
        font-size: 1.1rem;
    }

    
    .slide {
        height: 600px;
        display: none !important;
    }

    .slide.active {
        display: block !important;
    }

    .slide-content {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: none;
        padding: 1.5rem;
        gap: 1.5rem;
        height: auto;
        align-items: stretch;
        justify-content: flex-start;
    }

    .slide-image {
        height: 250px;
        border-radius: 10px;
        flex-shrink: 0;
        order: -1;
    }

    .slide-details {
        padding: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .slide-details h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }

    .slide-details .build-type {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        font-weight: 600;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .build-features {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        padding: 0;
        margin: 0;
    }

    .build-features li {
        font-size: 0.85rem;
        margin-bottom: 0;
        padding: 0.3rem 0;
        display: flex;
        align-items: flex-start;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }

    .build-features li i {
        width: 12px;
        min-width: 12px;
        margin-right: 0.6rem;
        margin-top: 0.3rem;
        flex-shrink: 0;
    }

    .slideshow-container {
        margin: 0 auto 2rem;
        border-radius: 10px;
    }

    .slide-nav {
        bottom: 12px;
    }

    .nav-dot {
        width: 12px;
        height: 12px;
    }

    .slide-control {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .slide-control.prev {
        left: 8px;
    }

    .slide-control.next {
        right: 8px;
    }

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

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

    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        min-width: 100px;
        padding: 1rem;
    }

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

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin: 0 0 1rem 0;
        flex-shrink: 0;
    }

    .contact-item > div:not(.contact-icon) {
        width: 100%;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
        margin: 0 auto 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .brands-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .brand-logo-item {
        min-height: 80px;
        padding: 1rem;
    }

    .brand-logo-item img {
        max-height: 50px;
    }

    .section-title-small {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .trusted-brands {
        padding: 3rem 1rem;
    }

    .brands-more-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}