* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4a90e2;
    color: white;
    padding: 20px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: linear-gradient(gold, transparent, gold);
    
}

.mobile-number {
    font-size: 18px;
}

/* Text  */

.info-container {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.info-box {
    text-align: center;
}

.info-box h2 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.info-box p {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    margin: 5px 0;
}

/*  Text End */

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.box {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 10px;
    width: calc(25% - 40px);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

.new-heading {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #3a3a3a;
    font-size: 24px;
    margin-bottom: 15px;
}

.heading-container {
    background: linear-gradient(0deg, #5b55cc, #a253c5);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.heading {
    font-family: 'Comic Sans MS', cursive;
    color: #ffffff;
    font-size: 22px;
    margin: 0;
}

.phone-number {
    font-family: 'Montserrat';
    color: #f8424c;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 30px;
}

.time-container {
    margin: 10px 0;
    margin-top: 25px;
}

.time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.open-text, .close-text {
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 16px;
    text-align: center;
    width: 50%;
}

.open-time, .close-time {
    font-family: Arial, sans-serif;
    color: #026c9d;
    font-size: 16px;
    text-align: center;
    width: 50%;
    font-weight: bold;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .box {
        width: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .box {
        width: calc(100% - 40px);
    }
}

/***** Second Row */

.new-container {
    margin: 20px 0;
}

.new-heading {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #3a3a3a;
    font-size: 24px;
    margin-bottom: 15px;
}

.new-container .box {
    /* Ensure consistency with existing boxes */
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 10px;
    width: calc(25% - 40px);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.new-container .box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

/* Disclaimer */

.disclaimer-container {
    background-color: #215155;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.disclaimer-heading {
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.disclaimer {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}
