.hero-section {
    min-height: 60vh; /* Full viewport height */
    background: url("/images/section.png") no-repeat center center;
    background-size: cover;
    margin-top: 7%;
}
@media (max-width: 991px) {
    .hero-section {
        margin-top: 30%;
    }
}
/* Main box styling */
.main-box {
    background: linear-gradient(
        180deg,
        rgba(239, 228, 229, 1) 0%,
        rgba(248, 217, 220, 1) 100%
    );
    border-radius: 10px;
    border-color: #e0d9d9;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-box-image {
    height: auto;
}
.main-box-title {
    font-size: 60px;
    font-weight: bold;
    color: #6b0a11;
}
.main-box-paragraph {
    font-size: 1rem;
    color: #000000;
}
.main-box-btn {
    background-color: #cdb03c;
    color: #fff;
    padding: 10px 20px;
    width: 50%;
    position: relative;
    overflow: hidden;
}

/* Sub boxes general style */
.sub-box {
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.sub-box-image {
    height: auto;
}

.sub-box-title {
    font-size: 60px;
    font-weight: bold;
    color: #ffffff;
}

/* Specific sub-box background colors */
.sub-box-1 {
    background: linear-gradient(
        180deg,
        rgba(219, 222, 235, 1) 0%,
        rgba(189, 198, 234, 1) 100%
    );
}
.sub-box-2 {
    background: linear-gradient(
        180deg,
        rgba(222, 232, 193, 1) 0%,
        rgba(193, 206, 153, 1) 100%
    );
}
.sub-box-3 {
    background: linear-gradient(
        180deg,
        rgba(209, 229, 239, 1) 0%,
        rgba(164, 203, 222, 1) 100%
    );
}
.sub-box-4 {
    background: linear-gradient(
        180deg,
        rgba(239, 235, 164, 1) 0%,
        rgba(227, 222, 137, 1) 100%
    );
}

/* Specific sub-box button colors */
.sub-box-btn-1 {
    background-color: #f7c232;
    border-radius: 5px;
    color: #fff;
}
.sub-box-btn-2 {
    background-color: #00874f;
    color: #fff;
}
.sub-box-btn-3 {
    background-color: #c98818;
    color: #fff;
}
.sub-box-btn-4 {
    background-color: #dc1530;
    color: #fff;
}

/* Boxed light-blue section (centered, NOT full width) */
.second-section {
    background: transparent;
}
.boxed {
    background-color: #dbeafe63; /* light blue */
    border-radius: 0.5rem;
}

/* White background only for logo area */
.card-partner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    border-radius: 0.5rem;
    background-color: transparent;
     transition: transform .2s ease;
}

.card-partner:hover {
  transform: translateY(-5px);
}
.logo-wrapper {
    width: 100%;
    height: auto;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
   
}

/* Logo size */
img.logo {
    width: 100%;
    max-height: 40%;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Left-align text in card body */
.card-body {
    text-align: left;
    padding: 20px 0px !important;
}

/* Button styling */
.card .btn {
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
}


@media (min-width: 576px) and (max-width: 1024px){
    .hero-section {
    margin-top: 14%;
}
.card .btn {
    display: inline-block;
    
    padding: 10px 10px;
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
     padding: 10px 10px !important;
        width: 100% !important;
}

#btnSultan{
    margin-left: 10% !important;
}




}


@media (max-width: 575.98px) {
    .btn {
        min-width: 0;
    }
}

@media (max-width: 991px) {

    .card .btn {
     
        padding: 10px 5px !important;
    }
    .logo-wrapper {
        width: 100% !important;
        height: 170px !important;
    }
}
