/* ===========================
   IND TECH ENGINEERING
   style.css
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
    --primary:#2D2D2D;
    --secondary:#C96A1B;
    --accent:#6B8E23;
    --light:#F7F7F5;
    --white:#ffffff;
    --text:#555;
    --shadow:0 10px 30px rgba(0,0,0,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--text);
    line-height:1.7;
}

a{
    text-decoration:none;
}

img{
    width:100%;
    display:block;
}

.section-padding{
    padding:80px 0;
}

.section-title{
    font-size:2rem;
    color:var(--primary);
    font-weight:700;
    margin-bottom:20px;
}

.section-subtitle{
    color:#777;
    max-width:700px;
    margin:auto;
    margin-bottom:50px;
}

/* NAVBAR */

.navbar{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.navbar-brand{
    font-size:1.5rem;
    font-weight:700;
    color:var(--primary)!important;
}

.nav-link{
    color:var(--primary)!important;
    font-weight:500;
    margin-left:18px;
    transition:.3s;
    position:relative;
}

.nav-link:hover{
    color:var(--secondary)!important;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* HERO 

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../images/hero.jpg") center/cover;
}
    */
    .hero{

    min-height:90vh;

    display:flex;

    align-items:center;

    position:relative;

    background:
    linear-gradient(rgba(30,30,30,.75),rgba(30,30,30,.75)),
    url("../images/hero-bg.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.hero h1{
    color:#fff;
    font-size:3.3rem;
    font-weight:700;
}

.hero p{
    color:#eee;
    font-size:1.1rem;
    margin:25px 0;
}

.page-header{

    height:45vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    position:relative;

    background:
    linear-gradient(rgba(35,35,35,.80),rgba(35,35,35,.80)),
    url("../images/header-bg.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.page-header h1{

    color:#fff;

    font-size:3rem;

    font-weight:700;

}

.page-header p{

    color:#ddd;

    margin-top:15px;

    font-size:1.1rem;

}

/* BUTTON */

.btn-main{
    background:var(--secondary);
    color:#fff;
    padding:14px 34px;
    border-radius:5px;
    transition:.3s;
    display:inline-block;
}

.btn-main:hover{
    background:var(--accent);
    color:#fff;
}

/* ABOUT */

.about-img img{
    border-radius:12px;
    box-shadow:var(--shadow);
}

.about-content h2{
    color:var(--primary);
    margin-bottom:20px;
}

/* CARDS */

.card-box{
    background:#fff;
    border-radius:12px;
    padding:35px;
    box-shadow:var(--shadow);
    transition:.4s;
    height:100%;
}

.card-box:hover{
    transform:translateY(-8px);
}

.card-box i{
    font-size:40px;
    color:var(--secondary);
    margin-bottom:20px;
}

.card-box h4{
    color:var(--primary);
    margin-bottom:15px;
}

/* PRODUCTS */

.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    height:220px;
    object-fit:cover;
}

.product-content{
    padding:25px;
}

.product-content h4{
    color:var(--primary);
}

/* QUALITY */

.quality{
    background:#fff;
}

.quality ul{
    list-style:none;
    padding:0;
}

.quality li{
    margin-bottom:15px;
}

.quality li i{
    color:var(--accent);
    margin-right:10px;
}

/* CONTACT */

.contact-info{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:var(--shadow);
    height:100%;
}

.contact-info i{
    color:var(--secondary);
    margin-right:12px;
}

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:var(--shadow);
}

.form-control{
    border-radius:5px;
    padding:12px;
}

.form-control:focus{
    box-shadow:none;
    border-color:var(--secondary);
}

/* FOOTER */

footer{
    background:var(--primary);
    color:#ddd;
    padding:60px 0 20px;
}

footer h4,
footer h5{
    color:#fff;
}

footer a{
    color:#ddd;
}

footer a:hover{
    color:var(--secondary);
}

.footer-logo{
    width:70px;
    margin-bottom:15px;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:30px;
    padding-top:20px;
    text-align:center;
    font-size:.9rem;
}

/* MAP */

.map iframe{
    width:100%;
    height:350px;
    border:0;
}

/* RESPONSIVE */

@media(max-width:991px){

.hero{
text-align:center;
padding:120px 0;
}

.hero h1{
font-size:2.4rem;
}

.section-padding{
padding:60px 0;
}

}

@media(max-width:768px){

.hero h1{
font-size:2rem;
}

.section-title{
font-size:1.8rem;
}

.card-box{
margin-bottom:30px;
}

.product-card{
margin-bottom:30px;
}
.navbar a{
    font-size: 18px;
}

}