/* ==========================================
   TYREMONITOR INDIA
   Premium Automotive Website
   Version 1.0
==========================================*/

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#07111F;

    color:#ffffff;

    overflow-x:hidden;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08131f;

}

::-webkit-scrollbar-thumb{

    background:#00C8FF;

    border-radius:20px;

}

/* ==========================================
   VARIABLES
==========================================*/

:root{

--primary:#00C8FF;

--orange:#FF7A00;

--dark:#07111F;

--card:#111D30;

--grey:#BFC8D5;

--white:#ffffff;

}

/* ==========================================
   GLOBAL
==========================================*/

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

section{

    padding:100px 8%;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:48px;

    margin-bottom:20px;

}

.section-title p{

    color:var(--grey);

    font-size:20px;

}

/* ==========================================
   HEADER
==========================================*/

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    backdrop-filter:blur(18px);

    background:rgba(7,17,31,.75);

    border-bottom:1px solid rgba(255,255,255,.05);

}

/* NAVBAR */

.navbar{

    width:90%;

    margin:auto;

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* LOGO */

.logo{

    font-size:32px;

    font-weight:800;

    color:#fff;

}

.logo span{

    color:var(--primary);

}

/* MENU */

.nav-links{

    list-style:none;

    display:flex;

    gap:35px;

}

.nav-links a{

    color:#fff;

    font-size:17px;

    transition:.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

/* BUY BUTTON */

.buy-btn{

    background:var(--orange);

    color:#fff;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.buy-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(255,122,0,.35);

}

/* ==========================================
   HERO
==========================================*/

.hero{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:130px;

    background:
        linear-gradient(rgba(7,17,31,0.75), rgba(7,17,31,0.85)),
        url("images/hero-bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* LEFT */

.hero-left{

    width:52%;

}

/* TAG */

.tag{

    display:inline-block;

    background:rgba(0,200,255,.15);

    color:var(--primary);

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:30px;

    font-size:15px;

}

/* TITLE */

.hero-left h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;

}

.hero-left h1 span{

    color:var(--primary);

}

/* PARAGRAPH */

.hero-left p{

    font-size:22px;

    color:var(--grey);

    line-height:1.9;

    max-width:650px;

    margin-bottom:45px;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.btn-primary{

    background:var(--orange);

    color:#fff;

    padding:18px 38px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(255,122,0,.35);

}

.btn-secondary{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:18px 38px;

    border-radius:50px;

    font-size:18px;

    transition:.35s;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#07111F;

}

/* HERO FEATURES */

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    max-width:500px;

}

.hero-features div{

    background:#111D30;

    padding:18px;

    border-radius:15px;

    display:flex;

    align-items:center;

    gap:15px;

    transition:.35s;

}

.hero-features div:hover{

    transform:translateY(-8px);

    background:#152742;

}

.hero-features i{

    color:var(--primary);

    font-size:22px;

}

/* RIGHT */

.hero-right{

    width:42%;

    display:flex;

    justify-content:center;

    position:relative;

}

/* Glow */

.hero-right::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:#00C8FF;

    border-radius:50%;

    filter:blur(130px);

    opacity:.15;

}

/* PHONE */

.hero-right img{

    width:380px;

    position:relative;

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}
/* ==========================================
   TRUST STATISTICS
==========================================*/

.stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    background:#0b1626;

}

.stat{

    background:var(--card);

    border-radius:20px;

    text-align:center;

    padding:40px 20px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.stat:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,200,255,.18);

}

.stat h2{

    font-size:48px;

    color:var(--primary);

    margin-bottom:12px;

}

.stat p{

    color:var(--grey);

    font-size:18px;

}

/* ==========================================
   WHY CHOOSE US
==========================================*/

.why-us{

    background:#07111F;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    background:var(--card);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,200,255,.18);

}

.feature-card i{

    font-size:48px;

    color:var(--primary);

    margin-bottom:25px;

}

.feature-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.feature-card p{

    color:var(--grey);

    line-height:1.8;

}

/* ==========================================
   PRODUCT CATEGORIES
==========================================*/

.categories{

    background:#0b1626;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.category-card{

    background:var(--card);

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

}

.category-card:hover{

    transform:translateY(-12px);

    box-shadow:0 22px 50px rgba(0,200,255,.2);

}

.category-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.category-card h3{

    padding:30px 30px 15px;

    font-size:28px;

}

.category-card p{

    padding:0 30px;

    color:var(--grey);

    line-height:1.8;

    min-height:90px;

}

.category-card a{

    display:inline-block;

    margin:25px 30px 35px;

    padding:14px 30px;

    border-radius:50px;

    background:var(--orange);

    color:#fff;

    transition:.35s;

}

.category-card a:hover{

    transform:translateY(-4px);

}

/* ==========================================
   MOBILE APP
==========================================*/

.app-section{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

.app-image{

    width:42%;

    text-align:center;

}

.app-image img{

    width:380px;

    margin:auto;

    animation:float 5s ease-in-out infinite;

}

.app-content{

    width:58%;

}

.app-content h2{

    font-size:54px;

    margin:25px 0;

}

.app-content p{

    font-size:21px;

    color:var(--grey);

    line-height:1.9;

    margin-bottom:35px;

}

.app-content ul{

    list-style:none;

}

.app-content li{

    font-size:20px;

    margin-bottom:18px;

    display:flex;

    align-items:center;

    gap:15px;

}

.app-content i{

    color:var(--primary);

}

/* ==========================================
   HOW IT WORKS
==========================================*/

.how-it-works{

    background:#0b1626;

}

.steps{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}

.step{

    background:var(--card);

    border-radius:22px;

    padding:45px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.step:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,200,255,.18);

}

.step-number{

    width:80px;

    height:80px;

    border-radius:50%;

    background:var(--primary);

    color:#07111F;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:32px;

    font-weight:700;

    margin-bottom:30px;

}

.step h3{

    font-size:28px;

    margin-bottom:18px;

}

.step p{

    color:var(--grey);

    line-height:1.8;

}
/* ==========================================
   SPECIFICATIONS
==========================================*/

.specifications{
    background:#07111F;
}

.spec-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.spec-item{
    background:var(--card);
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(255,255,255,.05);
}

.spec-item:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,200,255,.18);
}

.spec-item h4{
    color:var(--primary);
    font-size:24px;
    margin-bottom:15px;
}

.spec-item p{
    color:var(--grey);
    line-height:1.8;
}

/* ==========================================
   REVIEWS
==========================================*/

.reviews{
    background:#0b1626;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:var(--card);
    padding:40px;
    border-radius:20px;
    transition:.35s;
}

.review-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,200,255,.18);
}

.stars{
    color:#FFD700;
    font-size:24px;
    margin-bottom:20px;
}

.review-card p{
    color:var(--grey);
    line-height:1.9;
    margin-bottom:25px;
}

.review-card h4{
    color:white;
}

/* ==========================================
   FAQ
==========================================*/

.faq{
    background:#07111F;
}

.faq-item{
    max-width:900px;
    margin:25px auto;
    background:var(--card);
    padding:30px;
    border-radius:18px;
}

.faq-item h3{
    color:var(--primary);
    margin-bottom:15px;
}

.faq-item p{
    color:var(--grey);
    line-height:1.8;
}

/* ==========================================
   CONTACT
==========================================*/

.contact{
    background:#0b1626;
}

.contact-form{
    max-width:800px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    margin-bottom:20px;

    border:none;

    border-radius:12px;

    background:#16263e;

    color:white;

    font-size:16px;

}

.contact-form textarea{

    height:180px;

    resize:none;

}

.contact-form button{

    border:none;

    cursor:pointer;

}

/* ==========================================
   FOOTER
==========================================*/

footer{

    background:#050b14;

    text-align:center;

    padding:80px 8%;

}

.footer-logo{

    font-size:36px;

    font-weight:700;

    margin-bottom:20px;

}

.footer-logo span{

    color:var(--primary);

}

footer p{

    color:var(--grey);

    margin-bottom:30px;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:35px;

    margin-bottom:35px;

    flex-wrap:wrap;

}

.footer-links a{

    color:white;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

}

.social-icons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:35px;

}

.social-icons a{

    width:50px;

    height:50px;

    background:var(--card);

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    color:white;

    font-size:20px;

    transition:.35s;

}

.social-icons a:hover{

    background:var(--primary);

    color:#07111F;

}

.copyright{

    color:#8d99aa;

    font-size:14px;

}

/* ==========================================
   WHATSAPP BUTTON
==========================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    z-index:999;

    box-shadow:0 15px 35px rgba(37,211,102,.35);

    transition:.35s;

}

.whatsapp:hover{

    transform:scale(1.1);

}

/* ==========================================
   RESPONSIVE
==========================================*/

@media(max-width:1100px){

.hero{

flex-direction:column;

text-align:center;

}

.hero-left,
.hero-right,
.app-image,
.app-content{

width:100%;

}

.hero-right{

margin-top:60px;

}

.stats,
.feature-grid,
.category-grid,
.steps,
.spec-grid,
.review-grid{

grid-template-columns:repeat(2,1fr);

}

.app-section{

flex-direction:column;

}

}

@media(max-width:768px){

.navbar{

flex-direction:column;

height:auto;

padding:20px;

}

.nav-links{

flex-wrap:wrap;

justify-content:center;

margin:20px 0;

}

.hero-left h1{

font-size:46px;

}

.section-title h2{

font-size:36px;

}

.hero-left p,
.app-content p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

}

.hero-features{

grid-template-columns:1fr;

}

.stats,
.feature-grid,
.category-grid,
.steps,
.spec-grid,
.review-grid{

grid-template-columns:1fr;

}

.app-content h2{

font-size:40px;

}

footer{

padding:60px 30px;

}

}

@media(max-width:480px){

section{

padding:70px 25px;

}

.hero{

padding-top:160px;

}

.hero-left h1{

font-size:38px;

}

.buy-btn{

display:none;

}

.logo{

font-size:26px;

}

.footer-links{

gap:15px;

}

}