.banner {
    position: relative;
    width: 100%;
    height: 45rem;
    overflow: hidden;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.3)
    );
}


.banner video {
    width: 100%;
    height: 45rem;
    object-fit: cover;
}

.banner_text {
    background-color: rgba(1, 1, 1, 0.35);
    backdrop-filter: blur(6px);
    border-radius: 30px;
    box-shadow: 0px 0px 17px 2px #0a0a0a;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 350px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    /* font-family: "comic sans ms"; */
    text-align: center;
    max-width: 590px;
    min-width: 320px;

    z-index: 2;
}

@media (max-width: 750px) {
    .banner_text h1 {
      font-size: 1.9rem;
    }
}

.extra_bunner_text {
    font-size: 1rem;
    color: rgb(229, 229, 229);
    text-align: center;
}

.bunner_buttom {
    padding: 4px 14px;
    border: 2px solid white;
    border-radius: 20px;
    text-decoration: none;
    color: white;
}

.bunner_buttom:hover {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    transition: all 0.1s ease-in-out;
}

.title1{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #010814;
    font-family: "Segoe UI", "Montserrat", sans-serif;
    font-size: 2.4rem;
    letter-spacing: 1px;
}

.maintext{
    font-size: 20px;
    text-align: center;
}

.partners {
    display: flex;
    margin: 20px 5% 10%;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.partners-describe {
    background: white;
    border-radius: 20px;
    padding: 25px 30px;
    width: 360px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 5px;
}

.partners-describe:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


.partners-img{
    display: flex;
    width: 100px;
    height: 110px;
    justify-content: center;
    align-items: center;
}

.partners-img img{
    width: 70px;
}

.row{
    flex-direction: row;
}

.allinone {
    background: linear-gradient(
        to bottom,
        #eef4f8,
        #ffffff
    );
    padding-bottom: 30px;
}


.maintext2{
    font-size: 20px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pi{
    width: 70%;
}


/* ===== History Section ===== */

.history-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 60px;
    font-family: "Segoe UI", "Montserrat", sans-serif;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.history-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.history-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.history-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #111;
}

.history-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.history-card.wide {
    /* grid-column: span 2; */
    text-align: center;
    margin: 30px 10%;
}

/* Mobile */
@media (max-width: 768px) {
    .history-card.wide {
        grid-column: span 1;
    }
}





/* ===== Christmas Section ===== */

.christmas-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -60px;
    margin-bottom: 25px;
    z-index: 5;
    position: relative;
}

.christmas-card {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    overflow: hidden;
    animation: glow 3s infinite alternate;
    margin: 0px 25px;
}

@keyframes glow {
    from { box-shadow: 0 0 20px 10px rgba(255, 0, 0, 0.3); }
    to { box-shadow: 0 0 30px 15px rgba(0, 150, 0, 0.60); }
}

.christmas-image img {
    width: 400px;
    height: 100%;
    object-fit: cover;
}

.christmas-text {
    padding: 40px;
    text-align: center;
    color: #012;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.christmas-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #b30000;
}

.christmas-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.christmas-text span {
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .christmas-image img {
        width: 270px;
    }

    .christmas-card {
        margin: 0 15px;
    }
}






