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

:root {
    --pink: #E91E63;
    --fuchsia-pink: #FF1493;
    --dark-green: #006A4E;
    --red: #F42A41;
    --grey: #4A4A4A;
    --light-grey: #6B6B6B;
    --white: #FFFFFF;
    --black: #000000;
    --light-bg: #F8F8F8;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

.container {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.logo-section {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.content-section {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.maintenance-icon {
    margin-bottom: 40px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--fuchsia-pink) 0%, var(--pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.icon-circle svg {
    width: 60px;
    height: 60px;
    color: var(--white);
}

.title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--grey);
    margin-bottom: 10px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 30px;
    line-height: 1.3;
}

.description {
    font-size: 1.1rem;
    color: var(--light-grey);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.description-bengali {
    font-size: 1rem;
    color: var(--light-grey);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 50px auto;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--fuchsia-pink);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--grey);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--light-grey);
    line-height: 1.6;
}

.info-card a {
    color: var(--fuchsia-pink);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.info-card a:hover {
    color: var(--pink);
    text-decoration: underline;
}

.flag-decoration {
    position: fixed;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 300px;
    height: 300px;
    background: var(--dark-green);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.flag-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--red);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.footer {
    background: linear-gradient(135deg, var(--dark-green) 0%, #005a3d 100%);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-bengali {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%) rotate(-15deg) translateX(0);
    }
    50% {
        transform: translateY(-60%) rotate(-15deg) translateX(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .description,
    .description-bengali {
        font-size: 0.95rem;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .icon-circle svg {
        width: 50px;
        height: 50px;
    }
    
    .info-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .flag-decoration {
        width: 200px;
        height: 200px;
        right: -60px;
    }
    
    .flag-decoration::after {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .logo-section {
        margin-bottom: 40px;
    }
    
    .title {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .info-card {
        padding: 20px;
    }
}


