@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-size: 24px;
    color: #333;
}

.menu {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
}

.menu a:hover {
    color: red;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    .brand-name {
        margin-top: 10px;
        font-size: 20px;
    }

    .menu {
        gap: 10px;
    }

    .menu a {
        font-size: 16px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 60px;
        height: 60px;
    }

    .brand-name {
        font-size: 18px;
    }

    .menu {
        gap: 5px;
        justify-content: space-evenly;
        width: 100%;
    }

    .menu a {
        font-size: 14px;
        padding: 8px 10px;
        flex-shrink: 1;
    }

    .big-card {
        padding: 15px;
        font-size: 14px;
        
    }
}

.logo-section-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.logo-1 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.logo-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big-card {
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    color: #333;
}

@media (max-width: 768px) {
    .big-card {
        padding: 20px;
        font-size: 16px;
    }
}

/* Scroll Button */
.scroll-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #f8f9fa;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.scroll-button:hover {
    background-color: #e0e0e0;
}


#bold { 
    text-align: center;
}

@media (max-width: 480px) {
    .menu {
        flex-wrap: wrap; /* Allow wrapping */
        justify-content: center; /* Center items */
        gap: 10px;
    }

    .menu a {
        flex-basis: 30%; /* Adjust width as necessary */
        text-align: center; /* Center-align text */
    }
}
