@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.seo{
    display:none;
}
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    color: #333;
}

.container {
    text-align: center;
    /* background-color: #f0f4f8; */
    color: #333;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
    position: relative;
}

.logo {
    width: 200px;
}

.main-content {
    padding: 20px;
}
.mt-5{
    margin-top:1rem;
}
.promotion {   
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: #fff; */
}

.promo-image {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.promo-image:hover {
    transform: scale(1.05);
}

.fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0; /* No gap between buttons */
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 0; /* No padding around buttons */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.btn {
    flex: 1; /* Each button takes up equal space */
    text-align: center;
    padding: 30px 0; /* Adjust padding to fit full height */
    font-size: 25px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    color: white;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn:hover {
    transform: scale(1.05);
}

.blue {
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.blue:hover {
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
}

.white {
    background: #fff;
    color: #1e3a8a;
    box-shadow: 0 4px 8px rgba(209, 213, 219, 0.3);
}

.white:hover {
    background: #e5e7eb;
    color: #1e3a8a;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
    }

    .logo {
        width: 150px;
    }

    .btn {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .promotion {
        padding: 10px;
    }

    .promo-image {
        max-width: 100%;
    }

    .btn {
        padding: 20px 0; /* Adjust padding to fit full height */
        font-size: 18px;
    }
}

.image-container {
    width: 100%; /* ปรับขนาดตามต้องการ */
    height: 100%; /* ปรับขนาดตามต้องการ */
    overflow: hidden; /* ป้องกันไม่ให้ภาพที่เบลอหลุดออกมานอกขอบ */
    position: relative;
}

.contact {
    margin-left: 2%;
    width: 100px;
    margin-top: 50px;
    margin-bottom: 100px;
    display: block;
    text-align: start;
    color: #c6c8df;
    text-decoration: none;
}
.contact:hover {
    color: #babbc9;
}

@media (max-width: 1024px) {
    /* Hide on screens 1024px and below (tablets and phones) */
    .contact {
        display: none;
    }
}


.blur-image {   
    height: 100%;
    object-fit: cover; /* ปรับภาพให้เต็มพื้นที่โดยไม่เสียอัตราส่วน */
}