@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    /* Subtle high-end texture: faint dot grid layered over a soft blue-to-slate gradient */
    background-image: 
        radial-gradient(#e2e8f0 1px, transparent 1px), 
        linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    background-size: 30px 30px, 100% 100%;
    color: #1e293b;
    margin: 0;
    line-height: 1.6;
}

h1{
    font-size: medium;
}
.about-header {
    background: #2b6cb0;
    color: white;
    padding: 2px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-btn {
    color: white;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255,255,255,0.15);
    padding: 5px 10px;
    border-radius: 8px;
    transition: 0.3s;
}

.back-btn:hover { background: rgba(255,255,255,0.25); }

.about-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, opacity 0.6s ease;
}

.glass-card:hover { transform: translateY(-5px); }

.mission-section .icon-circle {
    width: 60px; height: 60px;
    background: #eff6ff; color: #2b6cb0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature i {
    font-size: 30px;
    color: #2b6cb0;
    margin-bottom: 15px;
}

.feature h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature p { font-size: 0.85rem; color: #64748b; }

.tech-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tech-tags span {
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
}

.version-info {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 40px;
    color: #94a3b8;
    font-size: 0.8rem;
}

.version-info strong { color: #64748b; }

@media (max-width: 600px) { h1 { font-size: 1.2rem; } }

/* --- Modern Split Section Layout --- */
.split-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.info-content {
    flex: 1;
    text-align: left;
}

.info-content h2 {
    font-size: 2.2rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 800;
}

.info-content p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.info-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.info-image img {
    width: 100%;
    max-width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    transition: transform 0.5s ease;
}

.split-section:hover .info-image img {
    transform: scale(1.02) translateY(-5px);
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Custom Styling for Founder's Card --- */
.founder-card-custom {
    background: linear-gradient(145deg, #f0f4f8, #e0e7ed); /* Subtle gradient background */
    border: 1px solid rgba(255, 255, 255, 0.6); /* Lighter border */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08); /* More pronounced shadow */
    padding: 40px; /* Increased padding */
    margin-bottom: 50px; /* More space below the card */
    text-align: center; /* Center content within the card */
}

.founder-profile {
    display: flex;
    flex-direction: column; /* Stack photo and details vertically on small screens */
    align-items: center;
    gap: 30px; /* Spacing between photo and details */
}

.founder-photo {
    width: 200px; /* Slightly larger for prominence */
    height: 200px;
    border-radius: 50%; /* Perfectly round */
    object-fit: cover; /* Ensures image covers area without distortion */
    border: 6px solid #ffffff; /* Thicker white border for a "card" effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow for the photo itself */
    transition: transform 0.3s ease-in-out;
}

.founder-photo:hover {
    transform: scale(1.05) rotate(2deg); /* Subtle hover effect */
}

.founder-details {
    text-align: center; /* Center text within details block */
    max-width: 700px; /* Constrain width for readability */
}

.founder-details h2 {
    font-size: 2.0rem; /* Larger font for name */
    color: #1a202c; /* Darker, more impactful color */
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.founder-title {
    font-size: 1.0rem;
    color: #4a5568; /* Muted color for title */
    font-style: italic;
    margin-bottom: 25px;
}

.founder-bio {
    font-size: 1.05rem;
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 30px;
}

.founder-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #2b6cb0; /* Highlight color for quote */
    border-left: 5px solid #2b6cb0; /* Decorative left border */
    padding-left: 20px;
    margin: 30px auto 0; /* Center and space out */
    max-width: 600px;
    line-height: 1.6;
}

/* Responsive adjustments for founder section */
@media (min-width: 850px) {
    .founder-profile {
        flex-direction: row; /* Side-by-side on larger screens */
        text-align: left;
        align-items: flex-start; /* Align items to the top */
    }
    .founder-details {
        text-align: left; /* Align text left when side-by-side */
    }
    .founder-quote {
        margin-left: 0; /* Align quote left */
        margin-right: auto;
    }
}

/* --- Enhancements for Credits Section --- */
.credits-section {
    background: linear-gradient(145deg, #e2e8f0, #d6e0e8); /* Different subtle gradient */
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 35px;
    margin-top: 40px; /* Space from previous section */
}

.credits-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 15px;
}

.credits-section p {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 25px;
}

.tech-tags span {
    background: #dbeafe; /* Lighter blue background */
    color: #1e40af; /* Darker blue text */
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: background 0.3s ease, transform 0.2s ease;
}

.tech-tags span:hover {
    background: #bfdbfe;
    transform: translateY(-2px);
}
/* Responsive Fix */
@media (max-width: 850px) {
    .split-section, .split-section.reverse {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .info-content { text-align: center; }
    .info-content h2 { font-size: 1.8rem; }
    .info-image img { height: 250px; }
}