/*==========================
    GOOGLE RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:#fff;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    font-size:38px;
    margin-bottom:60px;
    color:#fff;
}

/*==========================
        NAVBAR
==========================*/

header{
    width:100%;
    background:#111;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid rgba(255,0,0,.15);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo img{
    width:170px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    transition:.3s;
    font-weight:500;
}

nav a:hover{
    color:#ff1c3d;
}

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/*==========================
        BUTTON
==========================*/

.btn{
    background:#d10028;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    transition:.35s;
    display:inline-block;
    font-weight:600;
}

.btn:hover{
    background:#ff0037;
    transform:translateY(-3px);
    box-shadow:0 0 25px rgba(255,0,0,.45);
}

.outline{
    background:transparent;
    border:2px solid #d10028;
}

.outline:hover{
    background:#d10028;
}

.small{
    padding:10px 22px;
}

.extrasmall{
    padding:1px 2px;
}

/*==========================
        HERO
==========================*/

.hero{
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    radial-gradient(circle at right,#5d0014,#0b0b0b);
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.tag{
    display:inline-block;
    color:#ff3355;
    margin-bottom:15px;
    font-weight:600;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero h1 span{
    color:#ff1744;
}

.hero p{
    color:#bdbdbd;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.hero-image img{
    max-width:420px;
    margin:auto;
    filter:drop-shadow(0 0 35px rgba(255,0,0,.45));
}

.hero-info{
    display:flex;
    gap:45px;
}

.hero-info h3{
    color:#ff1744;
    font-size:28px;
}

.hero-info span{
    color:#bcbcbc;
}

/*==========================
        SERVICES
==========================*/

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#181818;
    padding:40px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    border:1px solid #222;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#ff1744;
    box-shadow:0 0 30px rgba(255,0,0,.18);
}

.card i{
    font-size:55px;
    color:#ff1744;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

/*==========================
        MOBILES
==========================*/

.mobile-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.phone-card{
    background:#181818;
    padding:25px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
}

.phone-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(255,0,0,.18);
}

.phone-card img{
    border-radius:12px;
    margin-bottom:20px;
}

.phone-card h3{
    margin-bottom:8px;
}

.phone-card p{
    color:#bfbfbf;
}

.phone-card h4{
    color:#ff1744;
    margin:18px 0;
    font-size:24px;
}

/*==========================
        ABOUT
==========================*/

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about h2{
    font-size:42px;
    margin-bottom:20px;
}

.about p{
    color:#c5c5c5;
    margin-bottom:25px;
}

.about li{
    margin-bottom:14px;
    font-size:18px;
}

/*==========================
        CONTACT
==========================*/

form{
    max-width:700px;
    margin:auto;

}

input,
textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:none;
    outline:none;
    border-radius:10px;
    background:#181818;
    color:#fff;
}

textarea{
    resize:none;
}

button{
    border:solid;
    cursor:pointer;
}

/*==========================
        FOOTER
==========================*/

footer{
    background:#090909;
    border-top:1px solid #222;
    padding:30px 0;
}

.footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.social{
    display:flex;
    gap:15px;
}

.social a{
    width:42px;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#1a1a1a;
    border-radius:50%;
    transition:.3s;
}

.social a:hover{
    background:#ff1744;
}

/*==========================
        RESPONSIVE
==========================*/

@media(max-width:992px){

.hero-grid,
.about-grid,
.service-grid,
.mobile-grid{
    grid-template-columns:1fr;
}

.hero{
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.hero-info{
    justify-content:center;
    flex-wrap:wrap;
}

nav{
    display:none;
}

.desktop-btn{
    display:none;
}

.menu-btn{
    display:block;
}

.section-title{
    font-size:30px;
}

.hero h1{
    font-size:42px;
}

.about h2{
    font-size:34px;
}

}

@media(max-width:600px){

.hero h1{
    font-size:34px;
}

.section-title{
    font-size:26px;
}

.btn{
    width:100%;
    text-align:center;
}

.hero-buttons{
    flex-direction:column;
}

.hero-info{
    gap:25px;
}

.footer{
    text-align:center;
    justify-content:center;
}

.logo img{
    width:140px;
}

}
/* Mobile Menu */

@media (max-width:992px){

nav{

position:absolute;
top:80px;
left:0;
width:100%;
background:#111;
display:none;
flex-direction:column;
padding:20px;
border-top:1px solid #222;

}

nav.show{

display:flex;

}

nav a{

padding:15px 0;
border-bottom:1px solid #222;

}

}

/* Active Menu */

nav a.active{

color:#ff1744;

}

/* Reveal Animation */

.card,
.phone-card,
.about-grid,
.hero-content,
.hero-image{

opacity:0;
transform:translateY(40px);
transition:.8s;

}


.contact form{
    opacity:70;
    transform:translateY(40px);
    transition:.8s;
}

.reveal{

opacity:1;
transform:translateY(0);

}


/* chatgpt css start  */

.image-slider{
    position: relative;
    width: 220px;
    margin: auto;
}

.image-slider img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
}

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:35px;
    height:35px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.6);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:10;
    transition:.3s;
}

.arrow:hover{
    background:#ff3b3b;
}

.left{
    left:8px;
}

.right{
    right:8px;
}


/* chatgpt css end  */