/* about.css */

/* Reset and Base Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #f5f9ff;
    color: #1c1c1c;
    line-height: 1.6;
}

/* Main Title */
h1.text-primary.fw-bold {
    font-size: 2.8rem;
    color: #000000 !important;
    text-shadow: 0 0 6px #00bfa6, 0 0 12px #00bfa6;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

/* Subtitle */
p.lead.text-secondary {
    color: #006494 !important;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Paragraphs */
.col-md-6 p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #333;
}

/* List Items */
ul.list-unstyled {
    margin-top: 1rem;
    padding-left: 0;
}

ul.list-unstyled li {
    font-size: 1.1rem;
    color: #003366;
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

ul.list-unstyled li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00bfa6;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Image Styling */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.25);
}

/* Container Layout Fix */
.container {
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1.text-primary.fw-bold {
        font-size: 2rem;
    }

    p.lead.text-secondary {
        font-size: 1.1rem;
    }

    .col-md-6 {
        margin-bottom: 2rem;
    }

    ul.list-unstyled li {
        font-size: 1rem;
    }
}

/* Animation */
@keyframes neonPulse {
    0% {
        text-shadow: 0 0 6px #00bfa6, 0 0 12px #00bfa6;
    }

    100% {
        text-shadow: 0 0 10px #00ffd0, 0 0 20px #00ffd0, 0 0 40px #00ffd0;
    }
}