/* ===================================
   RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#111111;
    color:#ffffff;
    overflow-x:hidden;
}

/* ===================================
   HEADER
=================================== */

header{
    position:sticky;
    top:0;
    width:100%;
    padding:20px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#1a1a1a;
    border-bottom:2px solid #d60000;
    z-index:999;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:55px;
}

.logo h2{
    font-size:34px;
    color:#ffffff;
    font-weight:700;
}

.logo span{
    color:#d60000;
}

.logo p{
    color:#cccccc;
    font-size:14px;
}

/* ===================================
   NAVIGATION
=================================== */

nav{
    display:flex;
    align-items:center;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

nav a:hover{
    color:#ff2b2b;
}

.contact-btn{
    background:#d60000;
    color:white;
    padding:12px 28px;
    border-radius:40px;
    text-decoration:none;
    border:none;
}

.contact-btn:hover{
    background:#ff2b2b;
}
/* ===================================
   HERO
=================================== */

.hero{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    align-items:center;
    gap:60px;
    padding:100px 7%;
    min-height:90vh;
    background:#111111;
}

/* LEFT */

.hero-left h4{
    color:#d60000;
    font-size:20px;
    letter-spacing:3px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero-left h1{
    font-size:70px;
    color:#ffffff;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero-left h1 span{
    color:#d60000;
}

.hero-left p{
    font-size:20px;
    color:#d6d6d6;
    line-height:1.8;
    max-width:620px;
}

/* BUTTONS */

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
}

.primary-btn{
    background:#d60000;
    color:#ffffff;
    text-decoration:none;
    padding:18px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.primary-btn:hover{
    background:#ff2b2b;
}

.secondary-btn{
    background:transparent;
    color:#ffffff;
    border:2px solid #ffffff;
    text-decoration:none;
    padding:18px 38px;
    border-radius:50px;
    transition:.3s;
}

.secondary-btn:hover{
    background:#ffffff;
    color:#111111;
}

/* RIGHT */

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-right img{
    width:100%;
    max-width:600px;
    display:block;
    border-radius:20px;

    /* Static Image */
    animation:none;
    transform:none;
    box-shadow:none;
}
/* ===================================
   PRODUCTS
=================================== */

.products{
    padding:100px 7%;
    background:#181818;
}

/* Title */

.section-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-bottom:70px;
}

.section-title h2{
    font-size:52px;
    color:#ffffff;
    font-weight:700;
}

.section-title span{
    color:#d60000;
}

.line{
    width:180px;
    height:3px;
    background:#d60000;
}

/* Grid */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(450px,1fr));
    gap:35px;
}

/* Card */

.product-card{

    display:flex;
    align-items:center;
    gap:30px;

    padding:35px;

    background:#222222;

    border:2px solid #d60000;

    border-radius:20px;

    transition:.3s;
}

.product-card:hover{

    border-color:#ff2b2b;

    background:#2b2b2b;
}

/* Remove old glow */

.product-card::before{

    display:none;

}

/* Image */

.product-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.product-image img{

    width:250px;

    animation:none;

    transform:none;

    box-shadow:none;
}

/* Content */

.product-content{

    flex:1.3;

}

.product-content h2{

    color:#ffffff;

    font-size:34px;

    margin-bottom:15px;
}

.product-content p{

    color:#dddddd;

    line-height:1.8;

    margin-bottom:30px;
}

/* Features */

.features{

    display:flex;

    justify-content:space-between;

    margin-bottom:30px;
}

.feature{

    text-align:center;
}

.icon{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#d60000;

    color:#ffffff;

    border-radius:15px;

    font-size:28px;

    margin:auto;

    border:none;

    transition:.3s;
}

.feature:hover .icon{

    background:#ff2b2b;

    transform:none;

    box-shadow:none;
}

.feature p{

    margin-top:12px;

    color:#ffffff;

    font-size:15px;
}

/* Button */

.learn-btn{

    display:inline-block;

    background:#d60000;

    color:#ffffff;

    text-decoration:none;

    padding:14px 32px;

    border-radius:35px;

    transition:.3s;
}

.learn-btn:hover{

    background:#ff2b2b;
}
/* ===================================
      ABOUT SECTION
=================================== */

.about{

    padding:100px 7%;

    background:#111111;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:60px;

    align-items:center;

}

/* Left */

.about-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.about-image img{

    width:100%;

    max-width:500px;

    border-radius:20px;

    border:3px solid #d60000;

    animation:none;

    transform:none;

    box-shadow:none;

}

/* Right */

.about-right h5{

    color:#d60000;

    font-size:18px;

    letter-spacing:3px;

    margin-bottom:18px;

    text-transform:uppercase;

}

.about-right h2{

    font-size:52px;

    color:#ffffff;

    margin-bottom:20px;

    line-height:1.2;

}

.about-right h2 span{

    color:#d60000;

}

.about-right p{

    color:#dddddd;

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;

}

/* Statistics */

.about-boxes{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.box{

    background:#222222;

    border:2px solid #d60000;

    border-radius:18px;

    padding:30px;

    text-align:center;

    transition:.3s;

}

.box:hover{

    background:#2b2b2b;

    border-color:#ff2b2b;

}

.box h3{

    color:#d60000;

    font-size:42px;

    margin-bottom:10px;

}

.box p{

    color:#ffffff;

    font-size:16px;

    margin:0;

}
/* ===================================
        STEAM LAB
=================================== */

.steam{

    padding:100px 7%;

    background:#181818;

    text-align:center;

}

/* Title */

.steam-title h5{

    color:#d60000;

    font-size:18px;

    letter-spacing:3px;

    margin-bottom:15px;

    text-transform:uppercase;

}

.steam-title h2{

    font-size:52px;

    color:#ffffff;

    margin-bottom:20px;

}

.steam-title span{

    color:#d60000;

}

.steam-title p{

    color:#dddddd;

    max-width:700px;

    margin:0 auto 60px;

    line-height:1.8;

}

/* Grid */

.steam-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

/* Card */

.steam-card{

    background:#222222;

    border:2px solid #d60000;

    border-radius:20px;

    padding:40px 30px;

    transition:.3s;

}

.steam-card:hover{

    background:#2b2b2b;

    border-color:#ff2b2b;

}

/* Remove old glow */

.steam-card::before{

    display:none;

}

/* Icon */

.steam-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#d60000;

    color:#ffffff;

    border-radius:18px;

    font-size:40px;

    border:none;

}

.steam-card:hover .steam-icon{

    background:#ff2b2b;

    transform:none;

    box-shadow:none;

}

/* Text */

.steam-card h3{

    color:#ffffff;

    font-size:28px;

    margin-bottom:15px;

}

.steam-card p{

    color:#dddddd;

    line-height:1.8;

    margin-bottom:25px;

}

/* Button */

.steam-card a{

    display:inline-block;

    padding:14px 30px;

    background:#d60000;

    color:#ffffff;

    text-decoration:none;

    border-radius:35px;

    transition:.3s;

}

.steam-card a:hover{

    background:#ff2b2b;

}
/* ===================================
        WHY CHOOSE US
=================================== */

.why{

    padding:100px 7%;

    background:#111111;

}

.why-header{

    text-align:center;

    margin-bottom:70px;

}

.why-header h5{

    color:#d60000;

    font-size:18px;

    letter-spacing:3px;

    margin-bottom:15px;

    text-transform:uppercase;

}

.why-header h2{

    font-size:52px;

    color:#ffffff;

    margin-bottom:20px;

}

.why-header span{

    color:#d60000;

}

.why-header p{

    color:#dddddd;

    max-width:750px;

    margin:auto;

    line-height:1.8;

}

/* Grid */

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

/* Card */

.why-card{

    background:#222222;

    border:2px solid #d60000;

    border-radius:20px;

    padding:35px;

    transition:.3s;

}

/* Remove glow */

.why-card::before{

    display:none;

}

/* Hover */

.why-card:hover{

    background:#2b2b2b;

    border-color:#ff2b2b;

}

/* Icon */

.why-icon{

    width:90px;

    height:90px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#d60000;

    color:#ffffff;

    border-radius:20px;

    font-size:40px;

    margin-bottom:25px;

    border:none;

    transition:.3s;

}

.why-card:hover .why-icon{

    background:#ff2b2b;

    transform:none;

    box-shadow:none;

}

/* Heading */

.why-card h3{

    font-size:28px;

    color:#ffffff;

    margin-bottom:15px;

}

/* Text */

.why-card p{

    color:#dddddd;

    line-height:1.8;

}

/* Remove all old effects */

.why-card,
.why-icon{

    animation:none;

    box-shadow:none;

    backdrop-filter:none;

}
/* ===================================
        PROJECT GALLERY
=================================== */

.projects{

    padding:100px 7%;

    background:#181818;

}

/* Title */

.projects-header{

    text-align:center;

    margin-bottom:70px;

}

.projects-header h5{

    color:#d60000;

    font-size:18px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.projects-header h2{

    color:#ffffff;

    font-size:52px;

    margin-bottom:20px;

}

.projects-header span{

    color:#d60000;

}

.projects-header p{

    color:#dddddd;

    max-width:720px;

    margin:auto;

    line-height:1.8;

}

/* Grid */

.projects-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:30px;

}

/* Card */

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    border:2px solid #d60000;

    background:#222222;

}

/* Image */

.project-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    display:block;

    transition:none;

}

/* Remove Zoom */

.project-card:hover img{

    transform:none;

}

/* Overlay */

.overlay{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    padding:25px;

    background:rgba(0,0,0,.75);

    transform:none;

}

/* Remove Slide Animation */

.project-card:hover .overlay{

    transform:none;

}

/* Text */

.overlay h3{

    color:#ffffff;

    font-size:28px;

    margin-bottom:10px;

}

.overlay p{

    color:#dddddd;

    line-height:1.7;

}

/* Remove Old Effects */

.project-card,
.project-card img,
.overlay{

    animation:none;

    box-shadow:none;

    backdrop-filter:none;

}
/* ===================================
        TESTIMONIALS
=================================== */

.testimonials{

    padding:100px 7%;

    background:#111111;

}

/* Header */

.testimonial-header{

    text-align:center;

    margin-bottom:70px;

}

.testimonial-header h5{

    color:#d60000;

    font-size:18px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.testimonial-header h2{

    color:#ffffff;

    font-size:52px;

    margin-bottom:20px;

}

.testimonial-header span{

    color:#d60000;

}

.testimonial-header p{

    color:#dddddd;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

/* Grid */

.testimonial-slider{

    overflow:visible;

}

.testimonial-track{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:30px;

    animation:none;

}

/* Remove Old Animation */

@keyframes slideTestimonials{

}

/* Card */

.testimonial-card{

    background:#222222;

    border:2px solid #d60000;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.3s;

}

/* Hover */

.testimonial-card:hover{

    background:#2b2b2b;

    border-color:#ff2b2b;

}

/* Image */

.testimonial-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #d60000;

    margin-bottom:20px;

}

/* Name */

.testimonial-card h3{

    color:#ffffff;

    font-size:24px;

    margin-bottom:8px;

}

/* Role */

.testimonial-card h4{

    color:#cccccc;

    font-weight:400;

    margin-bottom:15px;

}

/* Stars */

.stars{

    color:#ffcc00;

    font-size:22px;

    margin-bottom:20px;

}

/* Text */

.testimonial-card p{

    color:#dddddd;

    line-height:1.8;

}

/* Remove Old Effects */

.testimonial-card{

    animation:none;

    box-shadow:none;

    backdrop-filter:none;

}
/* ===================================
        CONTACT SECTION
=================================== */

.contact{

    padding:100px 7%;

    background:#181818;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:60px;

    align-items:start;

}

/* Left Side */

.contact-info h5{

    color:#d60000;

    font-size:18px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.contact-info h2{

    color:#ffffff;

    font-size:52px;

    margin-bottom:20px;

}

.contact-info span{

    color:#d60000;

}

.contact-info p{

    color:#dddddd;

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;

}

/* Contact Items */

.info{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:25px;

}

.info .icon{

    width:65px;

    height:65px;

    background:#d60000;

    color:#ffffff;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    flex-shrink:0;

}

.info h4{

    color:#ffffff;

    margin-bottom:5px;

}

.info p{

    color:#cccccc;

    margin:0;

}

/* Form */

.contact-form{

    background:#222222;

    border:2px solid #d60000;

    border-radius:20px;

    padding:40px;

}

/* Inputs */

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px 18px;

    margin-bottom:20px;

    background:#111111;

    color:#ffffff;

    border:2px solid #444444;

    border-radius:12px;

    outline:none;

    font-size:16px;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#999999;

}

/* Focus */

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#d60000;

}

/* Textarea */

.contact-form textarea{

    resize:vertical;

    min-height:160px;

}

/* Button */

.contact-form button{

    width:100%;

    padding:18px;

    background:#d60000;

    color:#ffffff;

    border:none;

    border-radius:40px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#ff2b2b;

}

/* Remove Old Effects */

.contact-form,
.contact-form input,
.contact-form textarea,
.contact-form button{

    animation:none;

    box-shadow:none;

    backdrop-filter:none;

}
/* ===================================
            FOOTER
=================================== */

footer{

    background:#111111;

    padding:70px 7% 30px;

    text-align:center;

    border-top:2px solid #d60000;

}

.footer-logo h2{

    color:#ffffff;

    font-size:40px;

    margin-bottom:10px;

}

.footer-logo span{

    color:#d60000;

}

.footer-logo p{

    color:#cccccc;

    margin-bottom:35px;

    line-height:1.8;

}

/* Footer Links */

.footer-links{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.footer-links a{

    color:#ffffff;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#d60000;

}

/* Social Icons */

.social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-bottom:30px;

}

.social a{

    width:55px;

    height:55px;

    background:#d60000;

    color:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:22px;

    text-decoration:none;

    transition:.3s;

}

.social a:hover{

    background:#ff2b2b;

}

/* Copyright */

footer hr{

    border:1px solid #333333;

    margin:30px 0;

}

copyright{

    color:#aaaaaa;

    font-size:15px;

}

/* ===================================
            LOADER
=================================== */

#loader{

    display:none;

}

/* ===================================
          SCROLL BAR
=================================== */

#progressBar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:#d60000;

    z-index:9999;

}

/* ===================================
        BACK TO TOP BUTTON
=================================== */

#topBtn{

    position:fixed;

    right:30px;

    bottom:30px;

    width:60px;

    height:60px;

    background:#d60000;

    color:#ffffff;

    border:none;

    border-radius:50%;

    cursor:pointer;

    font-size:24px;

    display:none;

    transition:.3s;

}

#topBtn:hover{

    background:#ff2b2b;

}

/* ===================================
        RESPONSIVE
=================================== */

@media(max-width:1100px){

.hero,
.about,
.contact{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.product-card{

flex-direction:column;

text-align:center;

}

.features{

justify-content:center;

gap:25px;

flex-wrap:wrap;

}

.about-boxes{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

header{

padding:18px 5%;

flex-direction:column;

gap:20px;

}

nav{

flex-wrap:wrap;

justify-content:center;

gap:20px;

}

.hero-left h1{

font-size:50px;

}

.section-title h2,
.about-right h2,
.steam-title h2,
.why-header h2,
.projects-header h2,
.testimonial-header h2,
.contact-info h2{

font-size:38px;

}

.product-grid,
.projects-grid,
.steam-grid,
.why-grid,
.testimonial-track{

grid-template-columns:1fr;

}

.about-boxes{

grid-template-columns:1fr;

}

.footer-links{

flex-direction:column;

gap:15px;

}

.social{

flex-wrap:wrap;

}

}

@media(max-width:480px){

.hero{

padding:70px 5%;

}

.hero-left h1{

font-size:38px;

}

.hero-left p{

font-size:17px;

}

.primary-btn,
.secondary-btn{

display:block;

width:100%;

text-align:center;

}

.hero-buttons{

flex-direction:column;

}

.contact-form{

padding:25px;

}

.product-card{

padding:25px;

}

}