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

* {
    font-family: poppins;
}

span {
    color: rgb(244, 136, 32);
}

body {
    background: rgb(63, 63, 63);
}

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

.carousel-item {
    height: 100vh;
    min-height: 300px;
}

.carousel-caption {
    bottom: 220px;
    z-index: 2;
}

.carousel-caption h5 {
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
}

.carousel-caption p {
    width: 60%;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
}

.carousel-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.navbar-nav a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-brand {
    color: white;
    font-weight: 400;
    transition: .3s all ease;
}

.navbar-brand:hover {
    transform: scale(1.1);
}

/* .brand {
    color: black;
    background: rgb(244, 136, 32);
    padding: 2px 4px;
    border-radius: 5px;
} */

.navbar-dark .navbar-brand {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
    color: #ffffff;
}

.navbar-dark .navbar-nav .navbar-link {
    color: #ffffff;
}

.w-100 {
    height: 100vh;
}

.services .card-body i {
    font-size: 50px;
}

.team .card-body i {
    font-size: 20px;
}

.portfolio .card {
    box-shadow: 12px 12px 30px rgba(0, 0, 0, 0.3);
}

.services .card {
    box-shadow: 12px 12px 30px rgba(0, 0, 0, 0.3);
}

.team .card {
    box-shadow: 12px 12px 30px rgba(0, 0, 0, 0.3);
}

/* === Responsive CSS === */
@media only screen and (min-width : 768px) and (max-width : 991px) {
    .carousel-caption {
        bottom: 370px;
    }
    .carousel-caption p {
        width: 100%;
    }
}

@media only screen and (max-width : 767px) {
    .navbar-nav {
        text-align: center;
    }
    .carousel-caption {
        bottom: 125px;
    }
    .carousel-caption h5 {
        font-size: 17px;
    }
    .carousel-caption a {
        padding: 10px 15px;
    }
    .carousel-caption p {
        width: 100%;
        line-height: 1.6;
        font-size: 1.6px;
    }
}