/* =========================
   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;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

/* =========================
   COLORS
========================= */

:root{

    --primary:#C62828;
    --secondary:#8B0000;
    --white:#ffffff;
    --light:#fff5f5;
    --dark:#1f1f1f;
    --gray:#666666;

}

/* =========================
   HEADER
========================= */

.header{

    position:fixed;

    top:20px;
    left:50%;

    transform:translateX(-50%);

    width:92%;

    height:85px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border-radius:60px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 40px;

    box-shadow:0 10px 30px rgba(198,40,40,.12);

    z-index:999;

}

/* =========================
   LOGO
========================= */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:55px;

}

.logo h2{

    font-size:32px;

    font-weight:800;

    color:#111;

}

.logo span{

    color:var(--primary);

}

/* =========================
   NAVIGATION
========================= */

nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav ul li a{

    text-decoration:none;

    color:#222;

    font-weight:600;

    position:relative;

    transition:.3s;

}

nav ul li a:hover{

    color:var(--primary);

}

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    border-radius:20px;

    background:var(--primary);

    transition:.3s;

}

nav ul li a:hover::after{

    width:100%;

}

/* =========================
   CONTACT BUTTON
========================= */

.contact-btn{

    text-decoration:none;

    background:linear-gradient(
    135deg,
    #C62828,
    #8B0000
    );

    color:white;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.contact-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(198,40,40,.35);

}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

.header{

    flex-direction:column;

    height:auto;

    padding:20px;

    border-radius:30px;

}

nav ul{

    flex-wrap:wrap;

    justify-content:center;

    margin:15px 0;

    gap:18px;

}

.logo h2{

    font-size:26px;

}

}
/*==================================
HERO SECTION
==================================*/

.hero{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:140px 8% 80px;

    background:linear-gradient(135deg,#ffffff,#fff5f5);

    position:relative;

    overflow:hidden;

}

.hero-left{

    width:50%;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    padding:12px 25px;

    background:#ffe5e5;

    color:#C62828;

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-left h1{

    font-size:70px;

    line-height:1.1;

    color:#222;

    margin-bottom:25px;

}

.hero-left h1 span{

    color:#C62828;

}

.hero-left p{

    font-size:19px;

    color:#555;

    line-height:1.9;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-red{

    text-decoration:none;

    background:#C62828;

    color:white;

    padding:18px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-red:hover{

    background:#8B0000;

    transform:translateY(-5px);

}

.btn-white{

    text-decoration:none;

    border:2px solid #C62828;

    color:#C62828;

    padding:18px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-white:hover{

    background:#C62828;

    color:white;

}

.hero-right{

    width:45%;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.hero-circle{

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(198,40,40,.18),
    transparent 70%);

    animation:pulse 5s infinite;

}

.hero-right img{

    width:100%;

    max-width:520px;

    position:relative;

    z-index:2;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes pulse{

    0%{

        transform:scale(.9);

    }

    50%{

        transform:scale(1);

    }

    100%{

        transform:scale(.9);

    }

}
/*==================================
WELCOME SECTION
==================================*/

.welcome{

    padding:120px 8%;

    background:#ffffff;

}

.welcome-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

.welcome-image{

    flex:1;

}

.welcome-image img{

    width:100%;

    max-width:520px;

    border-radius:25px;

    box-shadow:0 25px 50px rgba(198,40,40,.12);

    transition:.4s;

}

.welcome-image img:hover{

    transform:scale(1.04);

}

.welcome-content{

    flex:1;

}

.section-tag{

    display:inline-block;

    background:#ffe5e5;

    color:#C62828;

    padding:10px 22px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:20px;

}

.welcome-content h2{

    font-size:52px;

    color:#222;

    line-height:1.2;

    margin-bottom:25px;

}

.welcome-content p{

    font-size:18px;

    color:#555;

    line-height:1.9;

    margin-bottom:20px;

}

.read-btn{

    display:inline-block;

    margin-top:20px;

    text-decoration:none;

    background:#C62828;

    color:white;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.read-btn:hover{

    background:#8B0000;

    transform:translateY(-4px);

}
/*==================================
STATISTICS SECTION
==================================*/

.stats{

    padding:120px 8%;

    background:linear-gradient(135deg,#fff5f5,#ffffff);

}

.stats-title{

    text-align:center;

    margin-bottom:70px;

}

.stats-title span{

    color:#C62828;

    font-weight:600;

    letter-spacing:2px;

}

.stats-title h2{

    font-size:48px;

    margin:20px 0;

    color:#222;

}

.stats-title p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

.stats-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:45px 20px;

    text-align:center;

    box-shadow:0 15px 35px rgba(198,40,40,.08);

    transition:.4s;

    border-top:5px solid #C62828;

}

.stat-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(198,40,40,.18);

}

.stat-card h2{

    font-size:55px;

    color:#C62828;

    margin-bottom:15px;

    font-weight:800;

}

.stat-card p{

    font-size:18px;

    color:#555;

    font-weight:500;

}

/* Responsive */

@media(max-width:992px){

.stats-container{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.stats-container{

    grid-template-columns:1fr;

}

.stats-title h2{

    font-size:36px;

}

}
/*==================================
WHY CHOOSE US
==================================*/

.why{

    padding:120px 8%;

    background:#ffffff;

}

.why-title{

    text-align:center;

    margin-bottom:70px;

}

.why-title span{

    color:#C62828;

    letter-spacing:2px;

    font-weight:600;

}

.why-title h2{

    font-size:48px;

    margin:20px 0;

    color:#222;

}

.why-title p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

.why-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 12px 35px rgba(198,40,40,.08);

    transition:.4s;

    border-top:5px solid #C62828;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(198,40,40,.18);

}

.icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#C62828;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;

    color:#222;

    font-size:24px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.why-container{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-container{

    grid-template-columns:1fr;

}

.why-title h2{

    font-size:36px;

}

}
/*==================================
ABOUT SECTION
==================================*/

.about{

    padding:120px 8%;

    background:linear-gradient(135deg,#ffffff,#fff5f5);

}

.about-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(198,40,40,.15);

    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.05);

}

.about-content{

    flex:1;

}

.about-content h2{

    font-size:48px;

    margin:20px 0;

    color:#222;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.about-list{

    margin:35px 0;

}

.about-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

}

.about-item i{

    color:#C62828;

    font-size:22px;

}

.about-item span{

    font-weight:500;

    color:#333;

}

.about-btn{

    display:inline-block;

    margin-top:20px;

    padding:16px 36px;

    background:#C62828;

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.about-btn:hover{

    background:#8B0000;

    transform:translateY(-5px);

}

@media(max-width:992px){

.about-container{

    flex-direction:column;

}

.about-content{

    text-align:center;

}

.about-item{

    justify-content:center;

}

.about-content h2{

    font-size:38px;

}

}
/*==================================
SERVICES
==================================*/

.services{

    padding:120px 8%;

    background:#ffffff;

}

.services-title{

    text-align:center;

    margin-bottom:70px;

}

.services-title span{

    color:#C62828;

    letter-spacing:2px;

    font-weight:600;

}

.services-title h2{

    font-size:50px;

    margin:20px 0;

    color:#222;

}

.services-title p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

.services-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.service-card{

    background:white;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    transition:.4s;

    box-shadow:0 15px 40px rgba(198,40,40,.08);

    border-bottom:5px solid transparent;

}

.service-card:hover{

    transform:translateY(-12px);

    border-bottom:5px solid #C62828;

    box-shadow:0 25px 45px rgba(198,40,40,.18);

}

.service-card i{

    font-size:55px;

    color:#C62828;

    margin-bottom:25px;

}

.service-card h3{

    font-size:24px;

    margin-bottom:18px;

    color:#222;

}

.service-card p{

    color:#666;

    line-height:1.8;

}

/*==============================
Responsive
==============================*/

@media(max-width:1100px){

.services-container{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-container{

    grid-template-columns:1fr;

}

.services-title h2{

    font-size:38px;

}

}
/*==================================
PRODUCTS SECTION
==================================*/

.products{

    padding:120px 8%;

    background:linear-gradient(135deg,#fff5f5,#ffffff);

}

.products-title{

    text-align:center;

    margin-bottom:70px;

}

.products-title span{

    color:#C62828;

    font-weight:600;

    letter-spacing:2px;

}

.products-title h2{

    font-size:50px;

    color:#222;

    margin:20px 0;

}

.products-title p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

.products-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.product-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(198,40,40,.08);

    transition:.4s;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 55px rgba(198,40,40,.18);

}

.product-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-content{

    padding:30px;

}

.product-content h3{

    font-size:28px;

    color:#222;

    margin-bottom:15px;

}

.product-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.product-btn{

    display:inline-block;

    text-decoration:none;

    background:#C62828;

    color:white;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.product-btn:hover{

    background:#8B0000;

}

@media(max-width:992px){

.products-container{

    grid-template-columns:1fr;

}

}
/*==================================
FOUNDER
==================================*/

.founder{

    padding:120px 8%;

    background:#ffffff;

}

.founder-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

.founder-image{

    flex:1;

}

.founder-image img{

    width:100%;

    max-width:450px;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(198,40,40,.15);

    transition:.4s;

}

.founder-image img:hover{

    transform:scale(1.05);

}

.founder-content{

    flex:1;

}

.founder-content h2{

    font-size:48px;

    color:#222;

    margin:20px 0;

}

.founder-content h3{

    font-size:28px;

    color:#C62828;

    margin-bottom:20px;

}

.founder-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.signature{

    margin-top:30px;

    font-size:24px;

    font-weight:700;

    color:#C62828;

    font-family:cursive;

}

.social-icons{

    display:flex;

    gap:20px;

    margin-top:30px;

}

.social-icons a{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#C62828;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:20px;

    transition:.3s;

}

.social-icons a:hover{

    background:#8B0000;

    transform:translateY(-6px);

}

@media(max-width:992px){

.founder-container{

    flex-direction:column;

    text-align:center;

}

.founder-image img{

    max-width:350px;

}

.social-icons{

    justify-content:center;

}

}
/*==================================
MISSION & VISION
==================================*/

.mission-vision{

    padding:120px 8%;

    background:linear-gradient(135deg,#fff5f5,#ffffff);

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    color:#C62828;

    font-weight:600;

    letter-spacing:2px;

}

.section-heading h2{

    font-size:50px;

    margin:20px 0;

    color:#222;

}

.section-heading p{

    max-width:750px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

.mission-container{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.mission-card{

    background:rgba(255,255,255,.9);

    padding:50px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 20px 45px rgba(198,40,40,.10);

    transition:.4s;

    border:2px solid transparent;

}

.mission-card:hover{

    transform:translateY(-12px);

    border-color:#C62828;

    box-shadow:0 25px 50px rgba(198,40,40,.20);

}

.mv-icon{

    width:90px;

    height:90px;

    background:#C62828;

    color:white;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    margin-bottom:30px;

}

.mission-card h3{

    font-size:32px;

    color:#222;

    margin-bottom:20px;

}

.mission-card p{

    color:#666;

    line-height:1.9;

}

@media(max-width:992px){

.mission-container{

    grid-template-columns:1fr;

}

.section-heading h2{

    font-size:40px;

}

}
/*==================================
GALLERY
==================================*/

.gallery{

    padding:120px 8%;

    background:#ffffff;

}

.gallery-title{

    text-align:center;

    margin-bottom:70px;

}

.gallery-title span{

    color:#C62828;

    font-weight:600;

    letter-spacing:2px;

}

.gallery-title h2{

    font-size:50px;

    margin:20px 0;

    color:#222;

}

.gallery-title p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

.gallery-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(198,40,40,.12);

}

.gallery-card img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.5s;

}

.gallery-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(198,40,40,.80);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.gallery-overlay h3{

    color:#fff;

    font-size:28px;

    font-weight:700;

}

.gallery-card:hover img{

    transform:scale(1.12);

}

.gallery-card:hover .gallery-overlay{

    opacity:1;

}

@media(max-width:992px){

.gallery-container{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.gallery-container{

    grid-template-columns:1fr;

}

.gallery-title h2{

    font-size:38px;

}

}
/*==================================
FOOTER
==================================*/

.footer{

    background:#9B111E;

    color:white;

    padding:80px 8% 0;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}

.footer-box h2{

    font-size:34px;

    margin-bottom:20px;

}

.footer-box h2 span{

    color:#FFD54F;

}

.footer-box h3{

    margin-bottom:20px;

}

.footer-box p{

    line-height:1.8;

    color:#eee;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:12px;

}

.footer-box ul li a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#FFD54F;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:white;

    color:#C62828;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    transition:.3s;

}

.footer-social a:hover{

    background:#FFD54F;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:60px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.2);

    padding:25px;

}

#topBtn{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#C62828;

    color:white;

    font-size:20px;

    cursor:pointer;

    display:none;

    box-shadow:0 15px 30px rgba(0,0,0,.2);

}

#topBtn.active{

    display:block;

}

@media(max-width:992px){

.footer-container{

    grid-template-columns:1fr;

}

}
