
        /* Mobile devices (Up to 480px) */
        @media screen and (max-width: 480px) {
            .container {
                width: 95%;
                font-size: 14px;
            }
        }

        /* Tablets (481px - 768px) */
        @media screen and (min-width: 481px) and (max-width: 768px) {
            .container {
                width: 80%;
                font-size: 16px;
            }
        }

        /* Small Laptops (769px - 1024px) */
        @media screen and (min-width: 769px) and (max-width: 1024px) {
            .container {
                width: 70%;
                font-size: 18px;
            }
        }

        /* Desktops (1025px and above) */
        @media screen and (min-width: 1025px) {
            .container {
                width: 60%;
                font-size: 20px;
            }
        }

        

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: white;
}




.header {
    background-color: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    animation: fadeIn 2s ease-in-out;
}

.container {
    width: 80%;
    margin: 20px auto;
    background: #222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    animation: slideUp 1s ease-in-out;
}
.update, .project {
    border-bottom: 1px solid #444;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}
/* Update animation delays for 11 updates */
.update:nth-child(1) { animation-delay: 0.3s; }
.update:nth-child(2) { animation-delay: 0.6s; }
.update:nth-child(3) { animation-delay: 0.9s; }
.update:nth-child(4) { animation-delay: 1.2s; }
.update:nth-child(5) { animation-delay: 1.5s; }
.update:nth-child(6) { animation-delay: 1.8s; }
.update:nth-child(7) { animation-delay: 2.1s; }
.update:nth-child(8) { animation-delay: 2.4s; }
.update:nth-child(9) { animation-delay: 2.7s; }
.update:nth-child(10) { animation-delay: 3s; }
.update:nth-child(11) { animation-delay: 3.3s; }
/* Project animation delays */
.project:nth-child(1) { animation-delay: 0.5s; }
.project:nth-child(2) { animation-delay: 1s; }
.project:nth-child(3) { animation-delay: 1.5s; }
.project:nth-child(4) { animation-delay: 2s; }
.project:nth-child(5) { animation-delay: 2.5s; }
.project:nth-child(6) { animation-delay: 3s; }
.contact {
    text-align: center;
    margin: 30px 0;
}
.contact a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    color: #007bff;
    font-size: 18px;
    transition: color 0.3s;
}
.contact a:hover {
    color: #0056b3;
}
.address {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #ccc;
}
.project img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}