
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');


:root{

    --primary: #F15A22;
    --secondary: #F9A602;
    --accent: #0D2C7A;

    --white: #FFFFFF;
    --body: #F8F9FA;
    --text: #555555;
    --border: #E5E7EB;

    --font-family: 'Inter', sans-serif;

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--font-family);
    background:var(--body);
    color:var(--text);
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

.container-custom{
    width:min(1430px,92%);
    margin:auto;
}

section{
    padding:100px 0;
}


/*==================================
        NAVBAR
==================================*/

.header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 999;
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
   
}

.logo img{
    height: 80px;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a{
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: .3s;
}

.nav-links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: .3s;
}

.nav-links a:hover,
.nav-links a.active{
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width: 100%;
}

.quote-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}

.quote-btn:hover{
    background: var(--accent);
}

.menu-btn{
    display: none;
    cursor: pointer;
}

.menu-btn span{
    display: block;
    width: 26px;
    height: 3px;
    background: var(--accent);
    margin: 5px 0;
    transition: .3s;
}
@media (max-width:991px){

    .navbar{
        position:relative;
    }

    .menu-btn{
        display:block;
        cursor:pointer;
        z-index:1001;
    }

    .quote-btn{
        display:none;
    }

    .nav-links{

        position:absolute;
        top:85px;
        left:0;

        width:100%;
        background:#fff;

        flex-direction:column;
        align-items:flex-start;
        gap:0;

        border-top:1px solid #E5E7EB;
        box-shadow:0 10px 20px rgba(0,0,0,.08);

        max-height:0;
        overflow:hidden;

        transition:.35s ease;
    }

    .nav-links.active{
        max-height:500px;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links li a{
        display:block;
        width:100%;
        padding:16px 25px;
    }

}

.hero-section{

    min-height:820px;

    display:flex;

    align-items:center;

    position:relative;

    background:url("assets/banner-1.png") center center no-repeat;

    background-size:cover;

}

.hero-content{

    width:50%;

}

.hero-tag{

    display:inline-block;

    color:#0D2C7A;

    font-size:16px;

    font-weight:700;

    letter-spacing:4px;

    margin-bottom:20px;

}

.hero-content h4{

    font-size:60px;

    font-weight:700;

    line-height:1.3;
    letter-spacing:1px;

    color:#0D2C7A;

    text-transform:uppercase;

}

.hero-content h4 .orange{

    display:block;

    color:#F15A22;

}

.hero-line{

    width:90px;

    height:4px;

    background:#F15A22;

    margin:35px 0;

}

.hero-content p{
width: 520px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 1px;
    color: #555;

}

.hero-feature{

    display:flex;

    gap:20px;

    margin-top:30px;

}

.hero-feature div{
    text-align: center;
    display: flex;
    gap: 10px
}

.hero-feature i{

    font-size:24px;

    color:#F15A22;

    margin-bottom:12px;

}

.hero-feature span{

    font-size:14px;

    font-weight:700;

    color:#0D2C7A;

}
@media(max-width:991px){

.hero-section{

    min-height:auto;

    padding:100px 0 80px;

    background:url("../images/hero/banner-mobile.webp") center center no-repeat;

    background-size:cover;

}

.hero-content{

    width:100%;

    text-align:center;

}

.hero-content h1{

    font-size:58px;

}

.hero-content p{

    width:100%;

}

.hero-line{

    margin:30px auto;

}

.hero-feature{

    justify-content:center;

    flex-wrap:wrap;

}

}


/* about css */
/*====================================
            ABOUT SECTION
====================================*/

.about-section{

    padding:100px 0;
    background:var(--white);

}

.section-tag{

    display:inline-block;

    background:rgba(241,90,34,.1);

    color:var(--primary);

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:20px;

}

.section-title{

    font-size:36px;

    font-weight:800;

    color:var(--accent);

    line-height:1.3;

    margin-bottom:25px;

}

.section-description{

    color:var(--text);

    line-height:1.9;
  letter-spacing:0.6px;
    margin-bottom:18px;

    font-size:16px;

}

.about-features{
   display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;
    margin-top:35px;

}

.feature-box{

    display:flex;

    align-items:flex-start;

    gap:18px;

    background:var(--white);

    padding:12px;

    border-radius:15px;

    border:1px solid var(--border);

    /* margin-bottom:18px; */

    transition:.4s;

}

.feature-box:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.feature-icon{

    width:60px;

    height:60px;

    border-radius:15px;

    background:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:22px;

    flex-shrink:0;

}

.feature-box h5{

    font-size:19px;

    color:var(--accent);

    font-weight:700;

    margin-bottom:8px;

}

.feature-box p{

    margin:0;

    color:var(--text);

    font-size:15px;

}

.about-btn{

    display:inline-flex;

    align-items:center;

    text-decoration:none;

    background:var(--primary);

    color:#fff;

    padding:16px 35px;

    border-radius:50px;

    margin-top:20px;

    font-weight:600;

    transition:.4s;

}

.about-btn:hover{

    background:var(--accent);

    color:#fff;

}

.about-image{

    position:relative;

    text-align:center;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.experience-card{

   position: absolute;
    top: -80px;
    left: -130px;
    background: #fff;
    border-radius: 18px;
    padding: 22px 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .15);
}

.experience-card h3{

    font-size:40px;

    color:var(--primary);

    font-weight:800;

    margin-bottom:5px;

}

.experience-card span{

    color:var(--text);

    font-size:15px;

}
/*====================================
        RESPONSIVE
====================================*/

@media(max-width:991px){

    .about-section{

        padding:80px 0;

    }

    .section-title{

        font-size:34px;

    }

    .about-image{

        margin-top:20px;

    }

    .experience-card{

        left:0px;

    }

}

@media(max-width:767px){

    .section-title{

        font-size:28px;

    }

    .feature-box{

        padding:18px;

    }

    .feature-icon{

        width:50px;

        height:50px;

        font-size:18px;

    }
    
.about-features{
   display:grid;
  
    grid-template-columns:repeat(1,1fr);

    gap:30px;
    margin-top:35px;

}



}

/* why choose us */

/*============================
        WHY SECTION
=============================*/

.why-section{

    padding:100px 0;

    background:var(--body);

}

.section-heading{

    max-width:760px;

    margin:auto;

}

.section-subtitle{

    display:inline-block;

    background:rgba(241,90,34,.1);

    color:var(--primary);

    padding:8px 20px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.section-heading h2{

    font-size:42px;

    color:var(--accent);

    font-weight:800;

    margin-bottom:20px;

}

.section-heading h2 span{

    color:var(--primary);

}

.section-heading p{

    color:var(--text);

    line-height:1.9;

}

.why-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    border:1px solid var(--border);

    transition:.4s;

    height:100%;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.why-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:rgba(241,90,34,.1);

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

    font-size:34px;

    margin-bottom:25px;

    transition:.4s;

}

.why-card:hover .why-icon{

    background:var(--primary);

    color:#fff;

}

.why-card h4{

    color:var(--accent);

    font-weight:700;

    margin-bottom:15px;

}

.why-card p{

    color:var(--text);

    line-height:1.8;

    margin:0;

}

/*=========================
      PRODUCT GALLERY
==========================*/

.product-gallery{
    padding:90px 0;
    background:#f8f9fb;
}

.section-title{
    max-width:750px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    padding:8px 22px;
    background:#fff3ed;
    color:var(--primary);
    border-radius:50px;
    font-weight:600;
    margin-bottom:18px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#1d1d1d;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.product-image{
    position:relative;
    overflow:hidden;
    height:280px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.product-card:hover img{
    transform:scale(1.12);
}

.product-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.45));

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;

    transform:translateY(100%);
    transition:.45s;
}

.product-card:hover .product-overlay{
    transform:translateY(0);
}

.product-overlay h4{
    color:#fff;
    margin-bottom:12px;
    font-size:24px;
}

.product-overlay p{
    color:#eee;
    line-height:1.8;
    font-size:15px;
}

.product-info{
    text-align:center;
    padding:22px 15px;
}

.product-info h3{
    margin:0;
    font-size:22px;
    color:#222;
    font-weight:600;
}

/* Tablet */

@media(max-width:991px){

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:34px;
}

}

/* Mobile */

@media(max-width:576px){

.product-gallery{
    padding:70px 0;
}

.gallery-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.section-title h2{
    font-size:28px;
}

.product-image{
    height:240px;
}

.product-info h3{
    font-size:20px;
}

}


/*==========================
      TESTIMONIAL
==========================*/

.testimonial-section{
    padding:100px 0;
    background:#fff9f6;
    position:relative;
    overflow:hidden;
}


.section-heading{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.section-heading span{
    display:inline-block;
    padding:8px 22px;
    border-radius:50px;
    background:#fff0ea;
    color:var(--primary);
    font-weight:600;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:18px;
    color:#222;
}

.section-heading p{
    color:#666;
    line-height:1.9;
}



.testimonial-section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#F15A22;
    font-weight:600;
}

.section-title h2{
    margin:15px 0;
    font-size:40px;
    font-weight:700;
}

.section-title p{
    color:#666;
}

.testimonial-card{

    background:#fff;
    border-radius:18px;
    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
    height:100%;
}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.quote{

    width:60px;
    height:60px;

    background:#F15A22;

    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    margin-bottom:20px;

}

.stars{

    color:#ffc107;

    font-size:18px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:65px;
    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.client h4{

    margin:0;

    font-size:18px;

}

.client span{

    color:#F15A22;

    font-size:14px;

}

/* Swiper */

.swiper{

    padding-bottom:60px;

}

.swiper-button-next,
.swiper-button-prev{

    color:#F15A22;

}

.swiper-pagination-bullet{

    background:#F15A22;

}

.swiper-pagination-bullet-active{

    width:25px;

    border-radius:20px;

}

@media(max-width:991px){

.section-title h2{

    font-size:32px;

}

}

@media(max-width:576px){

.testimonial-section{

    padding:70px 0;

}

.section-title h2{

    font-size:28px;

}

.testimonial-card{

    padding:25px;

}

}

/*==================================
        CONTACT SECTION
===================================*/

.contact-section{
    padding:100px 0;
    background:#f8f9fc;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
    margin-top:50px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-card{
    background:#fff;
    padding:25px;
    border-radius:16px;
    display:flex;
    gap:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-5px);
}

.info-card .icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#F15A22,#ff8c42);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.info-card h4{
    margin-bottom:8px;
    font-size:18px;
    color:#222;
}

.info-card p{
    margin:0;
    color:#666;
    line-height:1.8;
}

.contact-form{
    height: fit-content;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:#F15A22;
}

.contact-form textarea{
    resize:none;
}

.theme-btn{
    background:#F15A22;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.theme-btn:hover{
    background:#0D2C7A;
}

/*==================================
            FOOTER
===================================*/

.footer{
    background:#ffffff;
    border-top:1px solid #e5e5e5;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
    padding-bottom:50px;
}

.footer-logo{
    max-width:180px;
    margin-bottom:20px;
}

.footer-widget p{
    color:#666;
    line-height:1.9;
}

.footer-widget h3{
    font-size:20px;
    margin-bottom:25px;
    color:#222;
    position:relative;
}

.footer-widget h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:40px;
    height:3px;
    background:#F15A22;
}

.footer-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-widget ul li{
    margin-bottom:12px;
}

.footer-widget ul li a{
    color:#666;
    text-decoration:none;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#F15A22;
    padding-left:5px;
}

.footer-contact li{
    display:flex;
    gap:12px;
    color:#666;
    line-height:1.7;
}

.footer-contact i{
    color:#F15A22;
    margin-top:5px;
}

.social-icons{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f3f4f8;
    color:#F15A22;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    text-decoration:none;
}

.social-icons a:hover{
    background:#F15A22;
    color:#fff;
    transform:translateY(-3px);
}

.footer-bottom{
    border-top:1px solid #e5e5e5;
    padding:25px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-bottom p{
    margin:0;
    color:#666;
}

.footer-bottom a{
    color:#F15A22;
    text-decoration:none;
    font-weight:600;
}

/*==================================
          RESPONSIVE
===================================*/

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .form-row{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .contact-form{
        padding:25px;
    }

}

@media(max-width:576px){

    .contact-section{
        padding:70px 0;
    }

    .info-card{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .theme-btn{
        width:100%;
    }

}