body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0B0B0F;
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.05);

    transition: 0.3s;
}

.navbar.scrolled {
    padding: 12px 80px;
    background: rgba(0,0,0,0.9);
}

/* LOGO */
.logo-box img {
    height: 60px;
    filter:
        drop-shadow(0 0 6px rgba(255,0,0,0.6))
        drop-shadow(0 0 12px rgba(255,80,0,0.5));
    transition: 0.4s;
}

/* MENU */
.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    position: relative;
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
}

/* UNDERLINE */
.menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #FACC15;
    transition: 0.3s;
}

.menu a:hover {
    color: white;
}

.menu a:hover::after {
    width: 100%;
}

/* CTA */
.nav-btn {
    padding: 10px 22px;
    border-radius: 6px;
    background: linear-gradient(45deg, #DC2626, #7f1d1d);
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Shine */
.nav-btn::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 100%;
    background: rgba(255,255,255,0.4);
    top: 0;
    left: -60px;
    transform: skewX(-20deg);
}

.nav-btn:hover::before {
    left: 120%;
    transition: 0.5s;
}

.nav-btn:hover {
    transform: scale(1.05);
}

/* HERO */
.hero {
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 120px;
    background: linear-gradient(135deg, #1a0000, #4b0000, #000);
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 65px;
}

.hero span {
    color: #FACC15;
}

.hero p {
    margin-top: 15px;
    color: #ccc;
}

.btn {
    margin-top: 30px;
    padding: 16px 35px;
    background: linear-gradient(45deg, #DC2626, #7f1d1d);
    border: none;
    color: white;
    border-radius: 6px;
}

/* SLIDER */
.hero-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.slider {
    width: 520px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    animation: slide 9s infinite;
}

.slider img:nth-child(1){animation-delay:0s;}
.slider img:nth-child(2){animation-delay:3s;}
.slider img:nth-child(3){animation-delay:6s;}

@keyframes slide {
    0%{opacity:0;}
    10%{opacity:1;}
    30%{opacity:1;}
    40%{opacity:0;}
    100%{opacity:0;}
}

.services {
    padding: 120px 50px;
    text-align: center;

    /* PREMIUM BG */
    background: linear-gradient(135deg, #020617, #1a0000);
}

/* SERVICE CARDS UPGRADE */
.service-box {
    display: inline-block;
    width: 260px;
    margin: 20px;
    padding: 30px;
    border-radius: 12px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    transition: 0.3s;
}

/* HOVER EFFECT */
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255,0,0,0.4);
}



/* CTA */
.cta {
    text-align: center;
    padding: 100px;
    background: linear-gradient(135deg, #DC2626, #7f1d1d);
}


/* PORTFOLIO */
.portfolio {
    padding: 120px 80px;
    text-align: center;

    
    background: linear-gradient(135deg, #020617, #0f172a);
}

.portfolio h2 {
    font-size: 40px;
}

.portfolio-sub {
    color: #aaa;
    margin-top: 10px;
}

/* GRID */
.portfolio-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* CARD */
.portfolio-card {
    position: relative;
    width: 320px;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    text-align: left;
}

/* HOVER EFFECT */
.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card:hover {
    box-shadow: 0 0 25px rgba(255,0,0,0.4);
}

/* CONTACT SECTION */
.contact-section {
    padding: 120px 20px;
    text-align: center;

    background: linear-gradient(135deg, #020617, #1a0000);
}

.contact-section h2 {
    font-size: 40px;
}

.contact-sub {
    color: #aaa;
    margin-bottom: 40px;
}

/* FORM BOX */
.contact-container {
    display: flex;
    justify-content: center;
}

/* FORM */
.contact-form {
    width: 400px;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px;
    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: white;
}

/* BUTTON */
.contact-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #DC2626, #7f1d1d);
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 30px;

    background: linear-gradient(135deg, #000, #020617);
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    color: #aaa;
    font-size: 14px;
}
footer::before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, red, transparent);
    margin-bottom: 20px;
}


/* TESTIMONIALS */
.testimonials {
    padding: 120px 80px;
    text-align: center;

    background: linear-gradient(135deg, #020617, #000);
}

.testimonials h2 {
    font-size: 40px;
}

.test-sub {
    color: #aaa;
    margin-top: 10px;
}

/* GRID FIX */
.test-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* DEFAULT CARD */
.test-card {
    width: 280px;
    padding: 25px;
    border-radius: 12px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    opacity: 0.6;
    transform: scale(0.95);
    transition: 0.4s;
}

/* CENTER FEATURED CARD */
.test-card.featured {
    width: 320px;
    opacity: 1;
    transform: scale(1.05);

    background: linear-gradient(135deg, #1a0000, #000);
    box-shadow: 0 0 30px rgba(255,0,0,0.4);
}

/* HOVER */
.test-card:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* TEXT */
.test-card h4 {
    color: #FACC15;
    margin-top: 10px;
}



</style>