/*=========================================================
 Gururaj Trade Network
 Premium Corporate Website
 Inspired by Hanwha
 Author : OpenAI
==========================================================*/


/*=========================================================
Google Fonts
==========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');


/*=========================================================
Root Variables
==========================================================*/

:root{

    --primary:#ED2D41;
    --secondary:#007A4D;

    --dark:#1B1B1B;
    --text:#444444;

    --white:#FFFFFF;

    --light:#F7F8FA;

    --border:#E5E5E5;

    --transition:all .35s ease;

    --radius:12px;

    --shadow:0 10px 40px rgba(0,0,0,.08);

    --container:1400px;

}



/*=========================================================
Reset
==========================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    color:var(--text);

    background:#fff;

    overflow-x:hidden;

    font-size:16px;

    line-height:1.8;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    margin:0;

    padding:0;

}

section{

    position:relative;

    padding:120px 0;

}

.container-xl{

    max-width:1400px;

}



/*=========================================================
Typography
==========================================================*/

h1,h2,h3,h4,h5,h6{

    font-family:'Manrope',sans-serif;

    color:#1b1b1b;

    font-weight:800;

    line-height:1.2;

}

h1{

    font-size:72px;

}

h2{

    font-size:54px;

}

h3{

    font-size:42px;

}

h4{

    font-size:30px;

}

h5{

    font-size:22px;

}

p{

    font-size:17px;

    color:#666;

    margin-bottom:20px;

}



/*=========================================================
Buttons
==========================================================*/

.btn-theme{

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    padding:15px 34px;

    font-weight:600;

    transition:.4s;

    border:none;

}

.btn-theme:hover{

    background:#c81831;

    color:#fff;

    transform:translateY(-3px);

}

.btn-outline-theme{

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

}

.btn-outline-theme:hover{

    background:var(--primary);

    color:#fff;

}



/*=========================================================
Loader
==========================================================*/

#pageLoader{

    position:fixed;

    inset:0;

    background:#fff;

    z-index:99999;

    display:flex;

    justify-content:center;

    align-items:center;

}

.loader-wrapper{

    width:320px;

}

.loader-logo{

    width:240px;

    margin:auto;

}

.loader-progress{

    width:100%;

    height:4px;

    background:#eee;

    margin-top:25px;

    overflow:hidden;

}

.loader-progress span{

    display:block;

    width:0;

    height:100%;

    background:var(--primary);

    animation:loader 2s infinite;

}

@keyframes loader{

0%{

width:0;

}

100%{

width:100%;

}

}



/*=========================================================
Header
==========================================================*/

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

}

.site-header.scrolled{

    background:#fff;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}



/*=========================================================
Navbar
==========================================================*/

.navbar{

    padding:24px 0;

    transition:.4s;

}

.navbar-brand{

    padding:0;

}

.navbar-logo{

    height:72px;

    transition:.4s;

}

.site-header.scrolled .navbar{

    padding:15px 0;

}

.site-header.scrolled .navbar-logo{

    height:58px;

}

.nav-link{

    color:#fff;

    font-weight:600;

    font-size:15px;

    letter-spacing:.5px;

    margin:0 12px;

    position:relative;

}

.site-header.scrolled .nav-link{

    color:#1b1b1b;

}

.nav-link::after{

    content:"";

    position:absolute;

    bottom:-6px;

    left:0;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.4s;

}

.nav-link:hover::after{

    width:100%;

}

.nav-link:hover{

    color:var(--primary);

}

.nav-search{

    color:#fff;

    font-size:22px;

    background:none;

    border:none;

}

.site-header.scrolled .nav-search{

    color:#1b1b1b;

}



/*=========================================================
Hero
==========================================================*/

/*.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    color:#fff;

}

.hero-video{

    position:absolute;

    inset:0;

}

.hero-video video{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    z-index:5;

}

.hero h1{

    color:#fff;

    font-size:84px;

    max-width:850px;

}

.hero p{

    color:#fff;

    font-size:22px;

    max-width:650px;

}

.hero-buttons{

    margin-top:45px;

}

.hero-buttons .btn{

    margin-right:20px;

}*/

/*=========================================================
Hero
=========================================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to right,
            rgba(0,0,0,.72),
            rgba(0,0,0,.45),
            rgba(0,0,0,.20));

}

.hero-content{

    position:relative;

    z-index:2;

}

.hero-subtitle{

    color:#fff;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

    display:block;

    margin-bottom:25px;

}

.hero h1{

    color:#fff;

    font-size:78px;

    line-height:1.1;

    margin-bottom:30px;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    color:#fff;

    font-size:20px;

    max-width:700px;

    margin-bottom:45px;

}



.hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

/*.hero-bg{

    position:absolute;

    inset:0;

}

.hero-bg img{

    width:100%;

    height:100%;

    object-fit:cover;

}*/

/*.hero-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.52) 45%,
            rgba(0,0,0,.18) 100%
        );

}*/

/*.hero-content{

    position:relative;

    z-index:5;

    max-width:720px;
    margin-top: 100PX;

}*/

/*.hero-tag{

    display:inline-block;

    color:#ffffff;

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    margin-bottom:25px;

    text-transform:uppercase;

}
*/
.hero-title{

    color:#ffffff;

    font-size:78px;

    line-height:1.05;

    font-weight:800;

    margin-bottom:35px;

}

.hero-title span{

    color:#ED2D41;

}

.hero-description{

    color:#ffffff;

    font-size:22px;

    line-height:1.8;

    max-width:620px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.hero-buttons .btn{

    padding:16px 36px;

    border-radius:50px;

}
.hero{

height:100vh;

}

.hero-slider{

height:100vh;

}

.hero-slider .swiper-slide{

position:relative;

height:100vh;

display:flex;

align-items:center;

}

.hero-bg{

position:absolute;

inset:0;

}

.hero-bg img{

width:100%;

height:100%;

object-fit:cover;

transform:scale(1.05);

}

.hero-overlay{

position:absolute;

inset:0;

background:linear-gradient(
90deg,
rgba(0,0,0,.78),
rgba(0,0,0,.42),
rgba(0,0,0,.15)
);

}

.hero-content{

position:relative;

z-index:10;

max-width:700px;

padding-top:80px;

}

.hero-tag{

display:inline-block;

color:#fff;

font-weight:700;

letter-spacing:4px;

margin-bottom:25px;

}

.hero-content h1{

font-size:80px;

color:#fff;

font-weight:800;

line-height:1.05;

margin-bottom:30px;

}

.hero-content p{

font-size:22px;

color:#fff;

margin-bottom:45px;

max-width:600px;

}

.swiper-button-next,
.swiper-button-prev{

color:#fff;

}

.swiper-pagination-bullet{

background:#fff;

opacity:.5;

}

.swiper-pagination-bullet-active{

background:#ED2D41;

opacity:1;

}
/*=========================================
Business Section
=========================================*/

.business-section{

    padding:120px 0;

    background:#ffffff;

}

.section-subtitle{

    color:#ED2D41;

    text-transform:uppercase;

    letter-spacing:3px;

    font-weight:700;

    font-size:14px;

}

.section-title{

    font-size:54px;

    font-weight:800;

    margin-top:15px;

    line-height:1.2;

}

.section-title span{

    color:#ED2D41;

}

.section-text{

    color:#666;

    font-size:18px;

    line-height:1.9;

}

.business-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    display:block;

    height:500px;

    transition:.5s;

}

.business-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.business-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:40px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.88)
    );

}

.business-overlay span{

    color:#ED2D41;

    font-size:18px;

    font-weight:700;

}

.business-overlay h3{

    color:#fff;

    margin:15px 0;

    font-size:30px;

}

.business-overlay p{

    color:#ddd;

    margin:0;

}

.business-card:hover img{

    transform:scale(1.1);

}

.business-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

/*=========================================
ABOUT SECTION
=========================================*/

.about-section{

    padding:120px 0;

    background:#f8f9fb;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:20px;

}

.experience-box{

    position:absolute;

    bottom:30px;

    left:30px;

    background:#ED2D41;

    color:#fff;

    padding:25px 35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.experience-box h2{

    color:#fff;

    font-size:48px;

    margin:0;

    line-height:1;

}

.experience-box span{

    font-size:16px;

    display:block;

    margin-top:10px;

}

.about-content{

    padding-left:30px;

}

.about-feature{

    display:flex;

    gap:15px;

    align-items:flex-start;

}

.about-feature i{

    width:55px;

    height:55px;

    background:#ED2D41;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    flex-shrink:0;

}

.about-feature h5{

    margin-bottom:8px;

    font-weight:700;

}

.about-feature p{

    margin:0;

    font-size:15px;

}

@media(max-width:991px){

.about-content{

    padding-left:0;

    margin-top:50px;

}

.experience-box{

    left:20px;

    bottom:20px;

}

}


/*=========================================
Technology Section
=========================================*/

.technology-section{

    background:#f8f9fb;

    padding:120px 0;

}

.technology-image{

    overflow:hidden;

    border-radius:20px;

}

.technology-image img{

    transition:.5s;

}

.technology-image:hover img{

    transform:scale(1.05);

}

.tech-card{

    background:#fff;

    padding:30px;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

    transition:.35s;

}

.tech-card:hover{

    transform:translateY(-8px);

}

.tech-card i{

    font-size:40px;

    color:#ED2D41;

    margin-bottom:20px;

}

.tech-card h5{

    font-weight:700;

    margin-bottom:15px;

}

.tech-card p{

    margin-bottom:0;

    color:#666;

}

/*=========================================
WHY CHOOSE US
=========================================*/

.why-us-section{

    padding:120px 0;

    background:#ffffff;

}

.why-image{

    position:relative;

    overflow:hidden;

    border-radius:20px;

}

.why-image img{

    width:100%;

    border-radius:20px;

    transition:.5s;

}

.why-image:hover img{

    transform:scale(1.05);

}

.experience-box{

    position:absolute;

    bottom:30px;

    left:30px;

    background:#ED2D41;

    color:#fff;

    padding:25px 35px;

    border-radius:16px;

    box-shadow:0 15px 40px rgba(0,0,0,.20);

}

.experience-box h2{

    font-size:48px;

    font-weight:700;

    margin-bottom:5px;

    color:#fff;

}

.experience-box span{

    font-size:15px;

}

.why-card{

    background:#fff;

    padding:30px;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.why-card i{

    font-size:42px;

    color:#ED2D41;

    margin-bottom:18px;

    display:inline-block;

}

.why-card h5{

    font-weight:700;

    margin-bottom:12px;

}

.why-card p{

    margin-bottom:0;

    color:#666;

}

@media(max-width:991px){

    .experience-box{

        left:20px;

        bottom:20px;

        padding:20px 25px;

    }

    .experience-box h2{

        font-size:36px;

    }

}

/*=========================================================
    FEATURED PRODUCTS
=========================================================*/

.products-section{

    padding:120px 0;

    background:#f8f9fb;

}

.products-section .section-title{

    margin-bottom:20px;

}

.products-section .section-text{

    max-width:760px;

    margin:auto;

    color:#666;

}

/* Product Card */

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:all .4s ease;

    height:100%;

    position:relative;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/* Image */

.product-image{

    position:relative;

    overflow:hidden;

    height:260px;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:all .6s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.10);

}

/* Overlay */

.product-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15)
    );

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.product-card:hover .product-overlay{

    opacity:1;

}

/* Explore Button */

.product-link{

    background:#ED2D41;

    color:#fff;

    padding:12px 28px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.product-link:hover{

    background:#ffffff;

    color:#ED2D41;

}

.product-link i{

    margin-left:8px;

    transition:.35s;

}

.product-link:hover i{

    transform:translateX(6px);

}

/* Content */

.product-content{

    padding:30px;

}

.product-content h4{

    font-size:24px;

    font-weight:700;

    color:#222;

    margin-bottom:15px;

    transition:.35s;

}

.product-card:hover h4{

    color:#ED2D41;

}

.product-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;

}

/* Red Accent */

.product-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#ED2D41;

    transform:scaleX(0);

    transition:.4s;

    transform-origin:left;

}

.product-card:hover::before{

    transform:scaleX(1);

}

/* Button */

.products-section .btn-theme{

    padding:15px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.products-section .btn-theme:hover{

    transform:translateY(-3px);

}

/*=========================================================
Responsive
=========================================================*/

@media(max-width:991px){

    .products-section{

        padding:90px 0;

    }

    .product-image{

        height:220px;

    }

}

@media(max-width:767px){

    .product-image{

        height:240px;

    }

    .product-content{

        padding:25px;

    }

    .product-content h4{

        font-size:22px;

    }

}

/*=========================================================
    STATISTICS
=========================================================*/

.statistics-section{

    padding:100px 0;

    background:#ED2D41;

    color:#fff;

}

.stat-box{

    padding:30px 20px;

}

.stat-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;

    align-items:center;

    justify-content:center;

}

.stat-icon i{

    font-size:36px;

    color:#fff;

}

.stat-box h2{

    display:inline-block;

    font-size:52px;

    font-weight:700;

    margin-bottom:10px;

    color:#fff;

}

.plus{

    font-size:32px;

    font-weight:700;

    margin-left:4px;

}

.stat-box p{

    font-size:16px;

    color:rgba(255,255,255,.9);

    margin-bottom:0;

}

@media(max-width:991px){

    .stat-box{

        margin-bottom:40px;

    }

    .stat-box:last-child{

        margin-bottom:0;

    }

}

/*=========================================================
    FOOTER
=========================================================*/

.footer{
    background:#1f1f1f;
    color:#d8d8d8;
}

.footer-top{
    padding:80px 0 50px;
}

.footer-logo img{
    height:60px;
}

.footer-about{
    line-height:1.9;
    color:#bdbdbd;
}

.footer h5{
    color:#fff;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.footer h5::after{
    content:'';
    width:45px;
    height:3px;
    background:#ED2D41;
    display:block;
    margin-top:10px;
}

.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ED2D41;
    padding-left:6px;
}

.footer-contact li{
    display:flex;
    gap:12px;
    margin-bottom:18px;
}

.footer-contact i{
    color:#ED2D41;
    font-size:18px;
    margin-top:3px;
}

.footer-contact a{
    color:#bdbdbd;
    text-decoration:none;
}

.footer-contact a:hover{
    color:#fff;
}

.footer-social{
    margin-top:30px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.15);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:10px;
    color:#fff;
    transition:.35s;
}

.footer-social a:hover{
    background:#ED2D41;
    border-color:#ED2D41;
    transform:translateY(-4px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:20px 0;
}

.footer-bottom p{
    margin:0;
}

.footer-bottom a{
    color:#bdbdbd;
    text-decoration:none;
    margin:0 8px;
}

.footer-bottom a:hover{
    color:#ED2D41;
}

/* Back to Top */

.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:48px;
    height:48px;
    background:#ED2D41;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.back-to-top:hover{
    background:#c71f34;
    color:#fff;
    transform:translateY(-5px);
}

@media (max-width:991px){
    .footer-bottom{
        text-align:center;
    }

    .footer-bottom .text-lg-end{
        margin-top:10px;
    }
}