*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    }
    
    body{
        background:#fff;
        overflow-x:hidden;
        font-family: "Poppins", sans-serif;
    }
    
    .navbar{
    padding:18px 0;
    background:#fff;
    }
    
    .navbar-brand{
    font-size:32px;
    font-weight:700;
    color:#003366;
    }
    .navbar-brand img{
        width: 200px;
    }
    .navbar-nav .nav-link{
    font-size:16px;
    font-weight:500;
    color:#222;
    margin-left:25px;
    }
    
    .hero{
    
    padding:100px 0;
    background:#fff;
    
    }
    
    .hero-content{
        text-align: left;
        padding-left: 40px;
    }

    .hero h1{
    font-size: 66px;
    line-height: 52px;
    font-family: "Poppins", sans-serif;
    color:#111;
    font-weight: 200;
    
    }
    
    .hero p{
        font-size: 30px;
        color: #000000;
        font-weight: 700;
        margin: 37px 0;
        font-weight: 300;
    }
    .hero p span{
        color: rgb(51, 57, 116);
        font-weight: 500;
    }
    .btn-main{
    
        border:2px solid #000;
    
        padding:6px 25px;    
        text-decoration:none;
        
        font-weight:300;
        
        color:#000;
         margin-right: 20px;
    transition:.3s;
    
    }
    
    .btn-main:hover{
    
    background:#003fc7;
    
    color:#fff;
    
    }
    
    .btn-outline{
    
    border:2px solid #000;
    
    padding:6px 25px;    
    text-decoration:none;
    
    font-weight:300;
    
    color:#000;
    
    }
    
    .hero img{
    
    width:100%;
    
    max-width:600px;
    
    }

 .about{
    text-align: center;
 }
 .about h2{
    margin: 20px 0;
    font-weight: 200;
 }
.about h2.awards{
    margin-top: 60px;
}

.about .image-box{
    display: grid;
    align-content: center;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.about .image-box img{
    width: 100%;
}

.industries h2{
    font-weight: 300;
}
 
.products h2{
    font-size: 33px;
    font-weight: 200;
}
.products h3{
    font-size: 23px;
    font-weight: 300;
    text-align: center;
}
.products .microscope-heading-part{
    padding: 60px 0;
}
.products .microscope-box{
    display: flex;
    margin-top: 30px;
    align-content: center;
    justify-content: space-around;
    text-align: center;
}
.products .microscope-box .card-body h5{
  font-size: 17px;
  font-weight: 300;
}
.products .box-part{
    margin-top: 40px;
}

.products .box-part h3{
  text-align: left;
  margin: 20px 0;
  font-weight: 400;
}
.Experience{
    padding: 50px 0;
}
.Experience h2{
    text-align: center;
    font-weight: 300;
}
.Experience .box-conatiner{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    align-content: center;
    align-items: center;
    justify-items: center;
    text-align: center;
    margin-top: 46px;

}
.Experience .box-conatiner .box-part{
    box-shadow: 1px 3px 10px #a4a4a4;
    width: 100%;
    padding: 20px;
}


/*==============================
Gallery Section
==============================*/

.gallery-section{
    padding:40px 0;
    background:#f8f8f8;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    border:3px solid #8a46ff;
    padding:20px;
    background:#fff;
}

.gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    border:1px solid #ddd;
}



/*==============================
FAQ
==============================*/

.faq h5{
    font-size:20px;
    font-weight:500;
    color:#263d92;
    margin-bottom:8px;
    text-transform:uppercase;
}

.faq h2{
    font-size: 26px;
    line-height: 1.3;
    color: #263d92;
    margin-bottom: 30px;
    font-weight: 400;
}

.accordion details{
    border:1px solid #ddd;
    margin-bottom:8px;
    background:#fff;
}

.accordion summary{
    list-style:none;
    cursor:pointer;
    padding:15px 18px;
    font-size:15px;
    font-weight:600;
    position:relative;
}

.accordion summary::before{
    content:"+";
    margin-right:10px;
    font-size:18px;
}

.accordion details[open] summary::before{
    content:"−";
}

.accordion p{
    padding:15px 18px;
    font-size:14px;
    color:#666;
    line-height:1.8;
    border-top:1px solid #eee;
}


/*==============================
Contact Box
==============================*/

.contact{
    border:1px solid #999;
    padding:35px;
    background:#fff;
}

.contact h2{
    font-size:38px;
    font-weight:700;
    color:#111;
    margin-bottom:12px;
}

.contact p{
    font-size:26px;
    color:#333;
    margin-bottom:40px;
}

.contact form{
    display:flex;
    gap:50px;
}

.contact .left,
.contact .right{
    flex:1;
}

.contact input,
.contact textarea{
    width:100%;
    border:none;
    border-bottom:1px solid #ddd;
    padding:14px 0;
    font-size:16px;
    margin-bottom:22px;
    outline:none;
    background:transparent;
}

.contact textarea{
    height:250px;
    resize:none;
}


/*==============================
Responsive
==============================*/

@media(max-width:991px){

.gallery{
    grid-template-columns:repeat(2,1fr);
}

.bottom-section{
    flex-direction:column;
}

.faq,
.contact{
    width:100%;
}

.contact form{
    flex-direction:column;
}

}

@media(max-width:576px){

.gallery{
    grid-template-columns:1fr;
}

.gallery img{
    height:200px;
}

.contact{
    padding:20px;
}

.contact h2{
    font-size:28px;
}

.contact p{
    font-size:18px;
}

.faq h2{
    font-size:22px;
}

.contact input,
.contact textarea{
    font-size:16px;
}

}


    @media(min-width:991px){
    
    .hero{
    
    padding:60px 0;
    
    text-align:center;
    
    }
    
    .hero img{
    
    margin-top:50px;
    
    }
    
    .navbar-nav{
    
    text-align:center;
    
    padding-top:20px;
    
    }
    
    }