/* ===============================
   KIAN ENTERPRISES
   =============================== */

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

:root{
    --primary:#D2B48C;
    --secondary:#C8A24A;
    --dark:#1F1F1F;
    --light:#F8F9FA;
    --white:#ffffff;
    --text:#555;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Outfit',sans-serif;
    color:var(--text);
    background:#F5F0E6;
    overflow-x:hidden;
    line-height:1.7;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

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

.navbar{
    background:#fff;
    padding:16px 0;
    transition:.4s;
    box-shadow:0 3px 20px rgba(0,0,0,.06);
}

.navbar-brand{
    font-size:32px;
    font-weight:700;
    color:var(--primary)!important;
}

.navbar-nav li{
    margin-left:28px;
}

.navbar-nav a{
    color:#222;
    font-weight:500;
    transition:.3s;
}

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

/*================ BUTTONS ================*/

.theme-btn{
    display:inline-block;
    padding:14px 34px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.theme-btn:hover{
    background:var(--secondary);
    color:#fff;
    transform:translateY(-3px);
}

.outline-btn{
    display:inline-block;
    padding:14px 34px;
    border:2px solid #fff;
    color:#fff;
    border-radius:50px;
    margin-left:12px;
    transition:.35s;
}

.outline-btn:hover{
    background:#fff;
    color:var(--primary);
}

/*================ HERO ================*/

.hero{
    position:relative;
    padding:170px 0 120px;
    background:url("../images/hero1.png") center/cover;
}

.overlay{
    position:absolute;
    inset:25;
    background:rgba(90,75,60,.78);
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero h5{
    color:var(--secondary);
    letter-spacing:2px;
    margin-bottom:15px;
}

.hero h1{
    font-size:58px;
    font-weight:800;
    color:#fff;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    color:#ddd;
    font-size:18px;
    margin-bottom:35px;
}

.hero-image img{
    animation:float 5s infinite ease-in-out;
}

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

}

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

.section-space{
    padding:100px 0;
}

.section-title h6{
    color:var(--secondary);
    font-weight:700;
    letter-spacing:2px;
}

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

/*================ ABOUT ================*/

.about img{
    border-radius:20px;
}

.about h3{
    color:var(--primary);
    font-size:42px;
    font-weight:700;
}

.about span{
    color:#777;
}

/*================ CARDS ================*/

.card{
    border:none;
    border-radius:18px;
    transition:.4s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08)!important;
}

.card i{
    color:var(--primary);
}

/*================ WHY CHOOSE ================*/

.shadow{
    transition:.35s;
}

.shadow:hover{
    transform:translateY(-8px);
}

/*================ CTA ================*/

.cta{
    background:rgb(200, 180, 150);
    color:#fff;
    text-align:center;
    padding:90px 0;
}

.cta h2{
    font-size:44px;
    font-weight:700;
}

.cta p{
    color:#ddd;
}

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

footer{
    background:#111;
    color:#ccc;
    padding:70px 0 20px;
}

footer h5{
    color:#fff;
}

footer a{
    color:#ccc;
}

footer a:hover{
    color:var(--secondary);
}

/*================ PAGE HEADER ================*/

.page-header{
    background:linear-gradient(rgba(210,180,140,.85),rgba(210,180,140,.85)),
    url("../images/banner.jpg");
    background-size:cover;
    background-position:center;
    padding:120px 0;
    text-align:center;
}

.page-header h1{
    color:#fff;
    font-size:55px;
    font-weight:700;
}

.page-header p{
    color:#ddd;
    margin-top:15px;
}

/*================ ICON BOX ================*/

.icon-box{
    padding:35px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
    text-align:center;
}

.icon-box:hover{
    transform:translateY(-10px);
}

.icon-box i{
    font-size:55px;
    color:var(--primary);
    margin-bottom:20px;
}

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

@media(max-width:991px){

.hero{
padding:140px 0 80px;
text-align:center;
}

.hero h1{
font-size:42px;
}

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

.hero-image{
margin-top:50px;
}

.navbar-nav{
padding-top:20px;
}

.navbar-nav li{
margin:10px 0;
}

}

@media(max-width:767px){

.hero h1{
font-size:34px;
}

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

.page-header h1{
font-size:38px;
}

.theme-btn,
.outline-btn{
display:block;
margin:10px auto;
width:220px;
text-align:center;
}

}
/* ================= PRODUCT CARD ================= */

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

#products .card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

/* Bottom Right Green Corner */

#products .card::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg,#D2B48C,#C9A876);
    clip-path: polygon(100% 0,100% 100%,0 100%);
    transition: .4s;
}

#products .card:hover::after{
    width: 110px;
    height: 110px;
}

/* Top Left Soft Corner */

#products .card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: rgba(210,180,140,.08);
    border-radius: 0 0 50px 0;
}

#products .card img{
    border-radius: 12px;
    transition: .4s;
}

#products .card:hover img{
    transform: scale(1.05);
}

#products .card h4{
    color:#D2B48C;
    font-weight:700;
}

#products .card p{
    color:#666;
    font-size:15px;
}
/*==============================
ABOUT PAGE
==============================*/

.page-banner{
    position: relative;
    background: linear-gradient(rgba(90,75,60,.82),rgba(90,75,60,.82)),
    url("/images/about.png") center/cover;
    height: 420px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    margin-top:80px;
}

.page-banner h1{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
}

.page-banner p{
    font-size:18px;
    margin:0;
}

.page-banner span{
    color:#d4af37;
    font-weight:600;
}

/*==============================
SECTION TITLE
==============================*/

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

.section-title h6{
    color:#D2B48C;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#222;
    margin-bottom:25px;
}

/*==============================
ABOUT IMAGE
==============================*/

.about img{
    border-radius:20px;
    transition:.4s;
}

.about img:hover{
    transform:scale(1.03);
}

/*==============================
ICON BOX
==============================*/

.icon-box{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    height:100%;
}

.icon-box:hover{
    transform:translateY(-10px);
}

.icon-box i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#D2B48C;
    color:#fff;
    font-size:30px;
    margin-bottom:20px;
}

.icon-box h4{
    font-weight:700;
    margin-bottom:15px;
}

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

/*==============================
MISSION CARD
==============================*/

.card{
    border:none;
    border-radius:20px;
    transition:.4s;
}

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

/*==============================
CTA
==============================*/

.cta{
    background:linear-gradient(135deg,#D2B48C,#C9A876);
    color:#fff;
    padding:70px 0;
}

.cta h2{
    font-size:42px;
    font-weight:700;
}

.cta p{
    opacity:.9;
}

.cta .counter{
    color:#fff;
    font-size:50px;
    font-weight:800;
}

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

footer{
    background:#111;
    color:#bbb;
    padding:70px 0 20px;
}

footer h5{
    color:#fff;
    margin-bottom:20px;
}

footer a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

footer a:hover{
    color:#d4af37;
}

footer ul{
    padding:0;
}

footer ul li{
    list-style:none;
    margin-bottom:10px;
}

footer hr{
    border-color:rgba(255,255,255,.1);
}

/*==============================
BUTTON
==============================*/

.theme-btn{
    display:inline-block;
    background:#D2B48C;
    color:#fff;
    padding:14px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.theme-btn:hover{
    background:#d4af37;
    color:#111;
}

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

@media(max-width:991px){

.page-banner{
    height:300px;
}

.page-banner h1{
    font-size:36px;
}

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

.cta h2{
    font-size:30px;
}

.cta{
    text-align:center;
}

}
.aboutSwiper{
    width:100%;
    height:100%;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-company-img{
    width:100%;
    height:620px;
    object-fit:cover;
    display:block;
}

.aboutSwiper .swiper-pagination-bullet{
    background:#fff;
    opacity:1;
}

.aboutSwiper .swiper-pagination-bullet-active{
    background:#D2B48C;
}
.aboutSwiper{
    width:100%;
    height:620px;
    overflow:hidden;
    border-radius:20px;
}

.aboutSwiper .swiper-wrapper{
    display:flex;
}

.aboutSwiper .swiper-slide{
    flex-shrink:0;
    width:100%;
    height:620px;
}

.about-company-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.top-bar{

    background:#D2B48C;

    padding:10px 0;

    color:#fff;

    font-size:14px;

}

.top-bar ul{

    display:flex;

    gap:25px;

    list-style:none;

    margin:0;

    padding:0;

}

.top-bar a{

    color:#fff;

    margin-left:15px;

    font-size:16px;

}

.navbar{

    background:#fff;

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

    padding:14px 0;

}

.navbar-brand img{

    height:60px;

}

.navbar-nav{

    gap:10px;

}

.nav-link{

    font-weight:600;

    color:#222;

    padding:10px 18px !important;

    transition:.3s;

}

.nav-link:hover{

    color:#D2B48C;

}

.dropdown-menu{

    border:none;

    border-radius:12px;

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

}

.dropdown-item{

    padding:12px 18px;

}

.dropdown-item:hover{

    background:#D2B48C;

    color:#fff;

}

.theme-btn{

    background:#D2B48C;

    color:#fff;

    padding:12px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

}

.theme-btn:hover{

    background:#D4AF37;

    color:#111;

}
.contact-page{
    padding:90px 0;
}

.contact-info h6{
    color:#D2B48C;
    font-weight:700;
}

.contact-info h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.contact-info p{
    color:#666;
}

.info-box{
    display:flex;
    gap:18px;
    margin-top:30px;
    align-items:flex-start;
}

.info-box i{
    width:60px;
    height:60px;
    background:#D2B48C;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

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

.contact-form .form-control,
.contact-form .form-select{
    height:55px;
    border-radius:10px;
}

.contact-form textarea{
    height:160px !important;
}
/*================ SERVICES =================*/

.service-card{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.service-card::after{
    content:"";
    position:absolute;
    bottom:0;
    right:0;
    width:90px;
    height:90px;
    background:linear-gradient(135deg,#D2B48C,#C9A876);
    clip-path:polygon(100% 0,100% 100%,0 100%);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#D2B48C;
    color:#fff;
    font-size:32px;
    margin-bottom:20px;
}

.service-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    margin-bottom:0;
}
/*================ SERVICES =================*/

.service-card{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.service-card::after{
    content:"";
    position:absolute;
    bottom:0;
    right:0;
    width:90px;
    height:90px;
    background:linear-gradient(135deg,#D2B48C,#C9A876);
    clip-path:polygon(100% 0,100% 100%,0 100%);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#D2B48C;
    color:#fff;
    font-size:32px;
    margin-bottom:20px;
}

.service-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    margin-bottom:0;
}
/*==============================
EXPLORE BUTTON
==============================*/

.explore-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 38px;
    background:linear-gradient(135deg,#D2B48C,#C9A876);
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    border-radius:50px;
    transition:.4s;
    box-shadow:0 12px 30px rgba(210,180,140,.25);
}

.explore-btn:hover{
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(210,180,140,.35);
}

.explore-btn i{
    transition:.4s;
}

.explore-btn:hover i{
    transform:translateX(6px);
}

/*==============================
READ MORE BUTTON
==============================*/

.readmore-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 34px;
    background:#D2B48C;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    border-radius:50px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(210,180,140,.25);
}

.readmore-btn:hover{
    background:#D4AF37;
    color:#111;
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.readmore-btn i{
    transition:.4s;
}

.readmore-btn:hover i{
    transform:translateX(6px);
}
.info-box{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.info-box i{
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #C9A876;
    color: #fff;
    font-size: 28px;

    margin-top: 2px; /* Is value ko 0-8px ke beech adjust kar lena */
}
/*==============================
PRODUCT FILTER
==============================*/

.product-filter{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin-bottom:50px;
}

.product-filter button{

padding:12px 28px;
border:2px solid #ff6b00;
background:#fff;
color:#111;
font-weight:600;
border-radius:50px;
cursor:pointer;
transition:.3s;
}

.product-filter button:hover{

background:#ff6b00;
color:#fff;

}

.product-filter button.active{

background:#ff6b00;
color:#fff;
box-shadow:0 8px 20px rgba(255,107,0,.3);

}


/*==============================
PRODUCT CARD
==============================*/

#productContainer .card{

border:none;
border-radius:18px;
overflow:hidden;
transition:.4s;
height:100%;
box-shadow:0 10px 25px rgba(0,0,0,.08);

}

#productContainer .card:hover{

transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.15);

}

#productContainer img{

height:230px;
width:100%;
object-fit:cover;
border-radius:12px;

}

#productContainer h4{

font-size:22px;
font-weight:700;
margin:20px 0 15px;

}

#productContainer p{

color:#666;
line-height:1.7;

}

.product-features{

margin-top:20px;
padding-left:20px;

}

.product-features li{

margin-bottom:8px;
color:#444;

}

.product-features li::marker{

color:#ff6b00;

}


/*==============================
MOBILE
==============================*/

@media(max-width:768px){

.product-filter{

gap:10px;

}

.product-filter button{

width:100%;

}

#productContainer img{

height:200px;

}

}
.product-top-bar{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
margin-bottom:40px;
}

.product-search input{

width:320px;
padding:12px 20px;
margin-top: -20px;
border:2px solid #ddd;
border-radius:50px;
outline:none;
transition:.3s;
font-size:15px;

}

.product-search input:focus{

border-color:#ff6b00;
box-shadow:0 0 15px rgba(255,107,0,.2);

}

@media(max-width:768px){

.product-top-bar{

flex-direction:column;

}

.product-search input{

width:100%;

}

}
/* ===============================
PRODUCT CARD ANIMATION
================================*/

.product-card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    transition:all .45s ease;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    animation:cardFade .6s ease forwards;
    opacity:0;
    transform:translateY(35px);
}

@keyframes cardFade{

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.product-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.product-card img{

    height:240px;
    width:100%;
    object-fit:cover;
    transition:transform .6s ease;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-card h4{

    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    transition:.3s;

}

.product-card:hover h4{

    color:#ff6b00;

}

.product-card p{

    color:#666;
    line-height:1.8;

}


/* ===============================
READ MORE BUTTON
================================*/

.read-more-btn{

    background:#ff6b00;
    color:#fff;
    border:none;
    border-radius:50px;
    padding:12px 24px;
    transition:.35s ease;

}

.read-more-btn:hover{

    background:#111;
    color:#fff;
    transform:translateY(-3px);

}


/* ===============================
FILTER BUTTON
================================*/

.product-filter button{

    transition:.35s ease;

}

.product-filter button:hover{

    transform:translateY(-4px);

}

.product-filter button.active{

    transform:translateY(-4px);

}


/* ===============================
SEARCH BAR
================================*/

.product-search input{

    transition:.35s ease;

}

.product-search input:focus{

    transform:scale(1.03);

}


/* ===============================
MODAL
================================*/

.modal-content{

    border:none;
    border-radius:20px;
    animation:zoomModal .35s ease;

}

@keyframes zoomModal{

    from{

        transform:scale(.9);
        opacity:0;

    }

    to{

        transform:scale(1);
        opacity:1;

    }

}

#modalImage{

    transition:.5s;

}

#modalImage:hover{

    transform:scale(1.03);

}

.fsc-nav-logo{
    display:flex;
    align-items:center;
}
.fsc-nav-logo img {
    height: 160px;   /* 50 ki jagah 70 ya 80 kar de */
    width: auto;
}
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 15px;
}
