 /* Global Styles */
 body, html {
    margin:0 auto;
    padding: 0;
    font-family: Arial, sans-serif;
    max-width: 1000px;
    box-shadow: 1px 1px 10px 1px;
    padding:1px;
}


/* Header Styles */
header {
    background-color: #007bff;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 28px;
    font-family:Arial, Helvetica, sans-serif;
}

/* Navigation Styles */
nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start; /* Left align */
    background-color: blue;
    padding: 10px;
    position: relative;
}

nav .menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    background-color: blue; /* Default button color */
    border-radius: 5px;
}

nav ul li a.active {
    background-color: red; /* Active button color */
}

nav ul li a:hover {
    opacity: 0.8;
    background-color: yellow;
    color: black;
}
nav ul li a::after{
    background-color: blue;
}

/* Responsive Design */
@media (max-width: 900px) {
    nav .menu-icon {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color:blue;
        z-index: 1000;
        
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: left; /* Left align for all menu items */
        padding-left: 20px;
        background-color: blue;
    

    }
    nav ul li a:hover{
        width: 100px;
    }
    
}
@media (max-width: 800px) {
    nav .menu-icon {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color:blue;
        z-index: 1000;
        
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: left; /* Left align for all menu items */
        padding-left: 20px;
        background-color: blue;
    

    }
    nav ul li a:hover{
        width: 100px;
    }
    
}
@media (max-width: 700px) {
    nav .menu-icon {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color:blue;
        z-index: 1000;
        
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: left; /* Left align for all menu items */
        padding-left: 20px;
        background-color: blue;
    

    }
    nav ul li a:hover{
        width: 100px;
    }
    
}
@media (max-width: 600px) {
    nav .menu-icon {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color:blue;
        z-index: 1000;
        
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: left; /* Left align for all menu items */
        padding-left: 20px;
        background-color: blue;
    

    }
    nav ul li a:hover{
        width: 100px;
    }
   
}
/* Main Content */
main {
    padding: 20px;
    
}
/* Social  icon */
.social-icons {
    display: flex;
    gap: 15px;
    text-align: center;
    justify-content: center;
    align-items: center;

    
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.social-icons a.youtube {
    background-color: #FF0000; /* YouTube Red */
}

.social-icons a.facebook {
    background-color: #1877F2; /* Facebook Blue */
}

.social-icons a.whatsapp {
    background-color: #25D366; /* WhatsApp Green */
}

.social-icons a.instagram {
    background: radial-gradient(circle at 35% 100%, #fdc468, #df4996 60%, #4c68d7);
    color: white; /* Instagram Gradient */
}

.social-icons a.telegram {
    background-color: #0088cc; /* Telegram Blue */
}

.social-icons a i {
    display: block;
    line-height: 1;
}

/* Footer Styles */
footer {
    left: 0;
    background-color: red;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    position:relative;
}