:root {
    --primary-color: #007BFF; /* Electric Blue */
    --secondary-color: #0D1117; /* Near Black */
    --text-color: #F0F6FC; /* Light Grey */
    --background-color: #010409; /* Very Dark Blue/Black */
    --card-background: #161B22;
    --border-color: #30363d;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.page-header {
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-color);
}

 .logo img {
            width: 12vw;
        }

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(1, 4, 9, 0.8), rgba(1, 4, 9, 0.8)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    padding: 6rem 2rem;
    text-align: center;
    color: #fff;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero .subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
}

.content-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-section.reverse .container {
    grid-template-columns: 1fr 1fr;
}

.content-section.reverse .text-content {
    order: 2;
}
.content-section.reverse .image-content {
    order: 1;
}

.text-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: #fff;
}

.text-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: rgba(240, 246, 252, 0.8);
}

.text-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.text-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.text-content ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.text-content ul li i {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Vision Section */
.vision-section {
    background-color: var(--secondary-color);
    padding: 6rem 0;
    text-align: center;
}

.vision-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.vision-content p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--background-color);
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Footer (reusing from previous styles for consistency) */
footer {
    background-color: var(--secondary-color);
    padding: 4rem 2rem 1rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    max-width: 1200px;
    margin: 0 auto;
}
.footer-main { flex-basis: 40%; }
.footer-main h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.cta-button-footer { background: var(--primary-color); color: #fff; padding: 12px 28px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: background-color 0.3s; }
.cta-button-footer:hover { background-color: #0056b3; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 1rem; color: #fff; }
.footer-col ul { list-style: none; }
.footer-col ul li a { color: var(--text-color); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--primary-color); }
.footer-creator { padding: 2rem 0; text-align: center; border-bottom: 1px solid var(--border-color); max-width: 1200px; margin: 0 auto; }
.creator-card { display: inline-flex; align-items: center; gap: 1rem; background-color: var(--card-background); padding: 1rem; border-radius: 10px; margin-top: 1rem; border: 1px solid var(--border-color); }
.creator-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.creator-info h4 a { color: #fff; text-decoration: none; font-size: 1.2rem; transition: color 0.3s; }
.creator-info h4 a:hover { color: var(--primary-color); }
.social-links { margin-top: 0.5rem; }
.social-links a { color: var(--text-color); margin: 0 0.5rem; transition: color 0.3s; }
.social-links a:hover { color: var(--primary-color); }
.footer-bottom { padding-top: 1rem; text-align: center; font-size: 0.9rem; color: rgba(240, 246, 252, 0.7); max-width: 1200px; margin: 0 auto; }


/* Responsive Design */
@media (max-width: 900px) {
    .content-section .container,
    .content-section.reverse .container {
        grid-template-columns: 1fr;
    }
    .content-section.reverse .text-content {
        order: 1;
    }
    .content-section.reverse .image-content {
        order: 2;
    }
    .footer-content { flex-direction: column; align-items: center; text-align: center; }
    .footer-main { margin-bottom: 2rem; }
}

@media (max-width: 480px) {
    .footer-links { flex-direction: column; align-items: center; text-align: center; }
    .creator-card { flex-direction: column; }
}


/* Responsive Design for Logo*/
@media (max-width: 900px) {
    .logo img{
        width: 19vw;
    }
}

@media (max-width: 768px) {
    .logo img{
        width: 23vw;
    }
}

@media (max-width: 480px) {
    .logo img{
        width: 30vw;
    }
}