.hero-section {
    background-image: url('/quboinfra/images/green.png');
    padding: 80px 0;
}

.hero-section2 {
    background-image: url('/quboinfra/images/light-line.png');
}

.hero-text h1 {
    font-size: 2rem;
}

.hero-text span {
    color: #b2957a;
}

.read-more-btn {
    background-color: #79c143;
    color: white;
    border: none;
}

.read-more-btn:hover {
    background-color: #67a536;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

img.hero-img {
    max-width: 100%;
    border-radius: 12px;
}

.custom-read-more {
    background-color: #68a356 !important;
    color: #fff;
    border-radius: 4px;
    padding: 15px 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
}

.custom-read-more:hover {
    background-color: #071703;
    color: #fff;
}

.custom-read-more .arrow {
    font-size: 1.2rem;
    line-height: 1;
    margin-left: 10px;
}




.top-bg {
    background: linear-gradient(to bottom, #24513B, #2F4F3B);
    padding-bottom: 120px;
}

.team-title {
    font-family: 'Brush Script MT', cursive;
    font-size: 2.5rem;
    font-weight: bold;
}

.team-cards-wrapper {
    top: 100%;
    /* positions at the bottom edge of top section */
    transform: translateY(-50%);
}

.team-card {
    background-color: #1E3A32;
    color: white;
    padding: 50px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 450px;
    max-width: 350px;
    margin: 0 auto;
    transition: all 0.4s ease-in-out;
    transform: translateY(0);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.team-card:hover .team-img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid white;
    margin-bottom: 15px;
}

.team-name {
    font-weight: bold;
    font-size: 1.2rem;
    color: #F5E3C6;
    margin-bottom: 20px;
}

.team-desc {
    font-size: 0.95rem;
    color: #d3d3d3;
    margin-top: 20px;
}

.team-heading-stylish {
    font-family: 'Pacifico', cursive;
    color: #365341;
    font-size: 3rem;
    margin: 3rem !important;
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease-in-out;
}

.team-heading-stylish::after {
    content: "";
    display: block;
    width: 30%;
    height: 4px;
    background-color: #ffc107;
    margin: 10px auto 0;
    border-radius: 2px;
    animation: underlineGrow 1s ease-out;
}

.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-heading {
    font-size: 1.25rem;
    font-family: 'Segoe UI', sans-serif;
}

.feature-text {
    font-size: 0.95rem;
    font-family: 'Roboto', sans-serif;
}

.stylish-heading1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #365341;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.custom-list {
    padding-left: 1.2rem;
    list-style: none;
}

.custom-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.custom-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 576px) {
    .content-text {
        font-size: 0.95rem;
    }

    .custom-list li {
        font-size: 0.95rem;
    }
}

@keyframes underlineGrow {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 30%;
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}


  