.about-us-page .banner {
    background: url('about-page/streeet.png') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
}
.about-us-page .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3); /* Light overlay */
}
.about-us-page .banner h1, .about-us-page .banner p {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    font-weight: bold;
}
.abo-img-li .abo-info-section {
    flex-wrap: wrap;
}

.abo-img-li .info-image {
    max-width: 90%;
    height: 80vh;
}

.abo-img-li{
    text-align: left;
    
}
.abo-img-li .abo-info-section strong {
    color: #333;
}

.abo-img-li .info-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}
.info-content{
    padding-left: 60px ;
}
.for-more-btn {
    background: rgb(4, 4, 77);
    color: white;
    padding: 5px 10px;
    display: inline-block;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.for-more-btn:hover{
    text-decoration: none;
    color: white;
    background-color: #00143a;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .abo-img-li .info-content {
        padding-left: 30px;
        margin-top: 20px;
    }

    .abo-img-li .abo-info-section {
        flex-direction: column;
    }
}
@media (max-width: 575.98px) {
    .abo-img-li .abo-info-section {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .abo-img-li .info-content {
        padding-left: 30px;
        margin-top: 20px;
        text-align: left;
    }

    .abo-img-li .info-content ul {
        padding-left: 0;
    }

    .abo-img-li .info-content ul li {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .abo-img-li .info-image {
        width: 100% !important;
        height: auto !important;
    }

    .for-more-btnn {
        display: inline-block;
        padding: 8px 20px;
        font-size: 15px;
        margin-top: 20px;
    }
}


.custom-section {
    padding: 40px;
}
.custom-section h1 {
    font-size: 1.8rem;
    font-weight: bold;
}
.custom-section img {
    width: 100%;
    height: auto;
}
.head{
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 30px;

}
.text-ab{
    text-align: justify;
    color: #545454;
    padding-block: 20px;
    font-size: 17px;
}
.matter{
    margin-bottom: 60px;
}
@media (max-width: 575.98px) {
    .custom-section .matter {
        display: flex;
        flex-direction: column;
        
    }
}

.choose-ss-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f3f4f6; /* Tailwind's bg-gray-100 */
    padding: 2rem;
}

.choose-ss-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    padding: 1rem;
}

.choose-ss-heading {
    font-size: 2rem;
    font-weight: 700;
}

.choose-ss-subheading {
    margin-top: 0.5rem;
    color: #6b7280; /* Tailwind's text-gray-600 */
}

.choose-ss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.choose-ss-item {
    padding: 1rem;
    transition: transform 0.3s ease;
}

.choose-ss-item:hover {
    transform: translateY(-5px);
}

.choose-ss-icon {
    background-color: #dbeafe; /* Tailwind's bg-blue-100 */
    color: #2563eb; /* Tailwind's text-blue-600 */
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.25rem;
}

.choose-ss-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.choose-ss-desc {
    font-size: 0.875rem;
    color: #374151; /* Tailwind's text-gray-700 */
}

