﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #374151;
    background: linear-gradient(135deg, #fef7f0 0%, #fefce8 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
h1 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Header */
header {
    padding: 2px;
    text-align: center;
    background-color: #111827;
    color: white;
}
    header .heading {
        display: flex;
        justify-content: space-between;
    }
    
    
 .logo-wrapper{

}
.logo {
    height: 45px;
    width: auto;
    margin-top: 5px;
}

.language-selector {
    display: flex;
    align-items: center;
}


.html-home-page header {
    display: none;
}




/* Main Content */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    flex-wrap: wrap;
}

.home-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.home-banner {
    height: 210px;
    width: auto;
}


.xheader {
    padding: 1.5rem 0;
    text-align: center;
    width:100%;
}



/* Construction Icons */
.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.icon {
    width: 48px;
    height: 48px;
    color: #f97316;
}

    .icon.pulse {
        animation: pulse 2s infinite;
    }

    .icon.bounce {
        animation: bounce 1s infinite;
    }

    .icon.bounce-delay {
        animation: bounce 1s infinite;
        animation-delay: 0.2s;
    }


@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }

    70% {
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

/* Typography */
.main-heading {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.sub-heading {
    font-size: 1.875rem;
    font-weight: 600;
    color: #ea580c;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.75;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 2rem;
}

.progress-bar {
    background-color: #e5e7eb;
    border-radius: 9999px;
    height: 1rem;
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(to right, #fb923c, #eab308);
    height: 100%;
    width: 75%;
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

.progress-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Button */
.cta-container {
    margin-top: 2rem;
}

.btn {
    background-color: #f97316;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn:hover {
        background-color: #ea580c;
        transform: scale(1.05);
    }

.btn-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #111827;
    color: white;
    padding:2rem 1rem;
    margin-top: auto;
}

.footer-content {
    max-width: 64rem;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: underline;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.2s;
}

    .footer-link:hover {
        color: #fb923c;
    }

.footer-copyright {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #374151;
    text-align: center;
}
    .footer-copyright p {
        color: #ffffff;
        font-size: 1.125rem;
    }

.footer-contact {
    text-align: center;
}

    .footer-contact p {
        color: #9ca3af;
        font-size: 1.125rem;
    }

    .footer-contact a {
        color: #fb923c;
        text-decoration: underline;
    }

        .footer-contact a:hover {
            color: #fdba74;
        }




/* Responsive Design */
@media (min-width: 768px) {
    .main-heading {
        font-size: 4rem;
    }

    .sub-heading {
        font-size: 2.25rem;
    }

    .footer-main {
        flex-direction: row;
        gap: 0;
    }

    .icons {
        gap: 1.5rem;
    }

    .icon {
        width: 56px;
        height: 56px;
    }
}

@media (min-width: 1024px) {
    .main-heading {
        font-size: 4.5rem;
    }
}




/* topics */



        .content-card {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            padding: 2rem;
        }

        .title-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .file-icon {
            width: 2rem;
            height: 2rem;
            color: #f97316;
        }

     

        .last-updated {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 2rem;
        }

.content-body {
    color: #4b5563;
    text-align: justify;
    line-height: 22px;
    width: 100%;
}

    .content-body section {
        margin-bottom: 1.5rem;
    }

    .content-body h2 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.75rem;
    }

    .content-body p {
        margin-bottom: 1rem;
        line-height: 1.75;
    }

    .content-body a {
        color: #f97316;
        text-decoration: none;
    }

        .content-body a:hover {
            color: #ea580c;
            text-decoration: underline;
        }