<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles */
:root {
    --primary-color: #D97D54;  /* Keeping existing accent color */
    --secondary-color: #002138; /* Slightly lighter than bg for contrast */
    --bg-color: #001524;       /* New background color */
    --text-color: #FFECD1;     /* New text color */
    --gray-dark: #001d30;      /* Adjusted dark gray for new bg */
    --gray-light: #002947;     /* Adjusted light gray for new bg */
    --transition-speed: 0.3s;
    --border-radius: 12px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.125rem; /* Increased base font size */
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-color);
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.2); /* Changed from 0.95 to 0.2 */
    padding: 0.7rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    position: relative;
    padding: 0.5rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 5rem;
}

.hero-content {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem; /* Increased size for hero paragraph */
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.hero-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.pulse-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    opacity: 0.2;
    animation: pulse 3s infinite;
}

.hex-shape {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    animation: rotate 20s linear infinite;
}

.center-circle {
    fill: var(--primary-color);
    animation: blink 2s infinite alternate;
}

.connection-line {
    stroke: white;
    stroke-width: 2;
    animation: draw 1.5s forwards;
}

/* Features Section */
.features {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--gray-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card p {
    font-size: 1.125rem; /* Increased size for general text */
}

.card-icon {
    margin-bottom: 1.5rem;
}

.icon-path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    animation: draw 1.5s forwards;
}

/* Process Section */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-color);
    color: black;
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.5rem;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--gray-light);
    z-index: -1;
}

.step p {
    font-size: 1.125rem; /* Increased size for general text */
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.125rem; /* Increased size for general text */
}

input, select, textarea {
    padding: 0.8rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-light);
    background-color: var(--gray-dark);
    color: var(--text-color);
    font-family: inherit;
    resize: none;
    font-size: 1.125rem; /* Increased size for general text */
}

.submit-button, .cta-button, .close-button {
    padding: 1.2rem 2.5rem; /* Slightly larger padding */
    background-color: var(--primary-color);
    color: black;
    border: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    cursor: pointer;
    transition: background-color var(--transition-speed);
    font-size: 1.25rem; /* Increased button text size */
}

.submit-button:hover, .cta-button:hover, .close-button:hover {
    background-color: #80ffff;  /* Lighter cyan for hover state */
    color: black;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.contact-item svg {
    margin-right: 1rem;
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.success-message.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    animation: scaleIn 0.3s forwards;
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.success-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.success-check {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 1s forwards 0.5s;
}

.close-button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.close-button:hover {
    background: #80ffff;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    justify-content: flex-start;
    margin-right: auto;
    margin-left: 30rem; /* Add this line to move links to the right */
}

.footer-links a {
    margin: 0 1rem;
}

.footer-social {
    display: flex;
}

.social-icon {
    margin-left: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
    font-size: 0.9rem;
    color: var(--text-color);  /* Update copyright text color */
    max-width: 1200px;
    margin: 0 auto;
}

/* About Page Styles */
.about-hero {
    min-height: 40vh; /* Reduced from 50vh */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 0;
    margin-bottom: -3rem; /* Added negative margin to pull next section up */
}

.about-hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.our-story {
    padding-top: 0;
}

.our-story h2 {
    margin-bottom: 1rem; /* Reduced from 2rem */
}

.our-story p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.timeline-container {
    position: relative;
    padding: 3rem 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 0;
    background-color: var(--primary-color);
    animation: growLine 2s forwards;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
    animation-delay: calc(var(--i, 0) * 0.5s);
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-item:nth-child(odd) {
    margin-right: 50%;
    text-align: right;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    top: 0;
    background-color: var(--primary-color);
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.timeline-item:nth-child(odd)::before {
    right: -8rem;
}

.timeline-item:nth-child(even)::before {
    left: -8rem;
}

.timeline-content {
    background-color: var(--gray-dark);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    animation: fadeIn 0.5s forwards;
    opacity: 0;
}

.member-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    background-color: var(--gray-dark);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-head, .avatar-body {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
    animation: draw 1s forwards;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat {
    animation: fadeIn 0.5s forwards;
    opacity: 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.join-us {
    text-align: center;
    padding: 5rem 2rem;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.join-us p {
    margin-bottom: 3rem; /* Increased from 2rem to 3rem for more space */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 1;
    }
}

@keyframes draw {
    from {
        stroke-dasharray: 500;
        stroke-dashoffset: 500;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    from {
        stroke-dashoffset: 100;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes growLine {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-visual {
        width: 100%;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .navbar {
        width: 95%;
        padding: 0.8rem 1rem;
    }

    body {
        font-size: 1rem; /* Slightly smaller base font on mobile */
    }

    .hero-content p {
        font-size: 1.25rem; /* Adjusted for mobile */
    }

    .submit-button, .cta-button, .close-button {
        font-size: 1.125rem; /* Adjusted for mobile */
        padding: 1rem 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .timeline-item::before {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .timeline-item:nth-child(odd)::before {
        right: -5rem;
    }

    .timeline-item:nth-child(even)::before {
        left: -5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        margin: 0 0 3rem 2rem;
        text-align: left;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd)::before,
    .timeline-item:nth-child(even)::before {
        left: -4rem;
    }
}</pre></body></html>