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

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

.page-header {
  padding: 200px 0 90px 0;
  background-color: #f1f1f1;
}

.section-padding {
    padding: 100px 0 !important;
}

/* Section */
.section-title {
    font-weight: bold;
    font-size: clamp(18px, 3vw, 50px);
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* Section */
.section-text{
    font-size: clamp(16px, 3vw, 20px);
}

.section-span{
    font-size: clamp(10px, 3vw, 25px);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}


.container {
    max-width: 1920px !important;
    padding: 0 15px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ECFEFF;
}



/* Navbar */
.navbar {
    background: #111;
}

.navbar-brand{
    font-size: clamp(18px, 3vw, 30px);
    padding: 30px 0;
    text-transform: uppercase;
}
.nav-item{
    margin-right: 20px;
    font-size: 20px;
}



/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('../img/banner-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
}

@media (max-width: 800px) {
    .hero-section {
        background-image: url('../img/small-banner.png');
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 130px);
    font-weight: bold;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
}





/* about  */
.custom-img {
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}



/* Team */
.team-card {
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
}

/* Hardware */
.hardware-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

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

.hardware-card i {
    font-size: 35px;
    color: #dc3545;
}






/* Footer */
.footer-section {
    background: #111;
    color: #bbb;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-title {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.footer-titles {
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-line {
    border-color: #333;
}
.footer-nav li{
    margin-top: 20px;
}





/* working */

.size-img{
    height:400px;
    width:80%;
    object-fit:cover;
}



/* team-img */
.team-imgs{
    max-height: 650px;
    object-fit: cover;
}