/*==============================
        GOOGLE FONT
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f7f8fc;
    color:#222;
    overflow-x:hidden;
}

/*==============================
        TOP HEADER
==============================*/

.top-header{
    background:linear-gradient(90deg,#111,#333,#111);
    color:#fff;
    padding:10px 0;
    font-size:14px;
    letter-spacing:.5px;
}

.top-header i{
    color:#ffc107;
    margin-right:8px;
}


/*==============================
          NAVBAR
==============================*/

.custom-nav{
    background:rgba(0,0,0,.88);
    backdrop-filter:blur(10px);
    position:sticky;
    top:0;
    z-index:999;
    padding:12px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.navbar-brand{
    font-size:28px;
    font-weight:700;
    color:#fff!important;
}

.navbar-brand span{
    margin-left:8px;
}

.nav-link{
    color:#fff!important;
    margin-left:15px;
    font-weight:500;
    position:relative;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:3px;
    background:#ffc107;
    transition:.4s;
}

.nav-link:hover::after{
    width:100%;
}


/*==============================
          HERO
==============================*/

.hero{
    padding:120px 0;
    background:linear-gradient(135deg,#111,#222,#444);
    color:white;
}

.hero h1{
    font-size:58px;
    font-weight:800;
}

.hero h4{
    color:#ffc107;
    margin:20px 0;
}

.hero p{
    font-size:18px;
    line-height:32px;
}

.hero .btn{
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}


/*==============================
        HEX GALLERY
==============================*/

.hex-gallery{
    display:grid;
    grid-template-columns:repeat(3,180px);
    gap:25px;
    justify-content:center;
}

.hex{
    width:170px;
    height:170px;
    overflow:hidden;
    border-radius:25px;
    transform:rotate(45deg);
    transition:.5s;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.hex img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:rotate(-45deg) scale(1.4);
}

.hex:hover{
    transform:rotate(45deg) scale(1.08);
}


/*==============================
        SECTION TITLE
==============================*/

.section-title,
.title,
.section-heading{
    font-size:40px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
}

.line{
    width:120px;
    height:5px;
    background:#ffc107;
    margin:auto;
    border-radius:50px;
}


/*==============================
       INDUSTRY CARD
==============================*/

.industry-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.5s;
}

.industry-card img{
    height:260px;
    width:100%;
    object-fit:cover;
    transition:.6s;
}

.industry-card:hover img{
    transform:scale(1.12);
}

.industry-card .content{
    padding:25px;
    text-align:center;
}

.industry-card:hover{
    transform:translateY(-12px);
}


/*==============================
      PRODUCT CARD
==============================*/

.product-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    transition:.5s;
}

.product-card img{
    height:220px;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.1);
}

.product-name{
    padding:20px;
    text-align:center;
    font-weight:700;
    font-size:18px;
}

.product-card:hover{
    transform:translateY(-10px);
}


/*==============================
     TESTIMONIAL
==============================*/

.testimonial-section{
    background:#f3f6fa;
}

.testimonial-card{
    background:white;
    padding:35px;
    border-radius:25px;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.testimonial-card:hover{
    transform:translateY(-12px);
}

.testimonial-card.active{
    background:#222;
    color:white;
}

.client{
    display:flex;
    align-items:center;
    margin-top:25px;
}

.client img{
    width:65px;
    height:65px;
    border-radius:50%;
    margin-right:15px;
}


/*==============================
        WHY US
==============================*/

.why-us{
    background:linear-gradient(135deg,#111,#333);
    color:white;
}

.why-card{
    background:rgba(255,255,255,.08);
    padding:35px;
    border-radius:20px;
    text-align:center;
    backdrop-filter:blur(8px);
    transition:.4s;
}

.why-card i{
    font-size:45px;
    color:#ffc107;
    margin-bottom:20px;
}

.why-card:hover{
    background:#ffc107;
    color:#111;
    transform:translateY(-12px);
}

.why-card:hover i{
    color:#111;
}


/*==============================
      CONTACT
==============================*/

.contact-section{
    background:#fff;
}

.contact-box{
    background:#111;
    color:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.contact-box i{
    color:#ffc107;
    margin-right:10px;
}

.form-control{
    border-radius:12px;
    padding:14px;
}

.form-control:focus{
    border-color:#ffc107;
    box-shadow:none;
}

.btn-primary{
    background:#ffc107;
    color:#111;
    border:none;
    border-radius:40px;
    padding:12px 30px;
    font-weight:600;
}

.btn-primary:hover{
    background:#111;
    color:#fff;
}


/*==============================
        FOOTER
==============================*/

.footer{
    background:#0f0f0f;
    color:#ddd;
    padding:70px 0 20px;
}

.footer h4,
.footer h5{
    color:white;
    margin-bottom:20px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer li{
    margin-bottom:10px;
}

.footer a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#ffc107;
}

.footer i{
    width:45px;
    height:45px;
    line-height:45px;
    text-align:center;
    border-radius:50%;
    background:#222;
    margin-right:8px;
    transition:.4s;
}

.footer i:hover{
    background:#ffc107;
    color:#111;
    transform:translateY(-5px);
}

.footer hr{
    border-color:#444;
}


/*==============================
       ANIMATION
==============================*/

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0);
}

}

.hex,
.product-card,
.industry-card{
    animation:float 5s ease-in-out infinite;
}


/*==============================
      RESPONSIVE
==============================*/

@media(max-width:991px){

.hero{
text-align:center;
padding:80px 0;
}

.hero h1{
font-size:40px;
}

.hex-gallery{
grid-template-columns:repeat(2,160px);
margin-top:40px;
}

}

@media(max-width:576px){

.hex-gallery{
grid-template-columns:1fr;
}

.hex{
margin:auto;
}

.hero h1{
font-size:32px;
}

.section-title,
.title{
font-size:28px;
}

}

section{
    scroll-margin-top: 40px;
}