@font-face {
    font-family: 'Montserrat-Black';
    src: url(../fonts/Montserrat-Black.ttf);
}




body {
    font-family: 'Montserrat-Black.ttf', sans-serif !important;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-image: url('../images/bgimg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ocontainer {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
}


main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}


h1 {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6) !important;
}


p {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 0.5rem;
    Margin-top: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    font-size: 2rem;
    color: #1f1257;
    margin-bottom: 1.5rem;
}

.contact-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    text-shadow: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background-color: #217dbb;
    transform: scale(1.1);
}


footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
}


.header-container {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    max-height: 100px;
    margin-bottom: 0;
}

.company-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 0 1rem;
    flex-grow: 1;
    text-align: center;
}

/*mobile view adjustments*/
@media (max-width: 425px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        max-height: 70px;
        margin: 0.5rem 0;
    }

    .company-name {
        font-size: 1rem;
        margin: 0.5rem 0;
    }

    h1 {
        font-size: 2rem !important;
    }

    p {
        font-size: 1rem;
    }

    #countdown {
        font-size: 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-section p {
        font-size: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 375) {
    .logo {
        max-height: 60px;
    }

    .company-name {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 320px) {
    .logo {
        max-height: 50px;
    }

    .company-name {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 1.6rem !important;
    }
}