* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #FFD700;
    --secondary-color: #000;
    --text-color: #fff;
    --background-color: #000;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.logo {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.menu-btn {
    display: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.menu-btn.active {
    transform: rotate(90deg);
}

.menu-btn i {
    transition: transform 0.3s ease;
}

.menu-btn.active i {
    transform: rotate(180deg);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        padding: 2rem;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 1.5rem 0;
        font-size: 1.2rem;
    }

    /* Overlay styles */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--text-color);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-color);
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
}

/* About Section */
.about {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
    color: var(--background-color);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.about-content {
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    margin: 2rem 5%;
    border-radius: 10px;
    color: var(--text-color);
    text-align: center;
}

.about-section {
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-color);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid var(--primary-color);
}

.member-image i {
    font-size: 4rem;
    color: var(--primary-color);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-member p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Services Page Styles */
.services-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 80px;
    color: var(--text-color);
}

.services-hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-content {
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    margin: 2rem 5%;
    border-radius: 10px;
    color: var(--text-color);
    text-align: center;
}

.service-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-color);
}

.service-icon {
    flex: 0 0 100px;
    text-align: center;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-info {
    flex: 1;
    padding-left: 2rem;
}

.service-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-info ul {
    list-style: none;
    margin-top: 1rem;
}

.service-info ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-info ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.cta-section {
    text-align: center;
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
}

/* Contact Page Styles */
.contact-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 80px;
    color: var(--text-color);
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-content {
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    background: rgba(0, 0, 0, 0.8);
    margin: 2rem 5%;
    border-radius: 10px;
    color: var(--text-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-color);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .service-icon {
        margin-bottom: 1rem;
    }

    .service-info {
        padding-left: 0;
    }

    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Make sure all text is visible */
p, h1, h2, h3, h4, h5, h6, span, li {
    color: var(--text-color);
}

/* Ensure images are visible */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Add hover effects for better visibility */
.service-card:hover,
.value-card:hover,
.info-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Footer Styles */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--text-color);
    padding: 3rem 5% 1rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Canvas Container */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #FFD700;
}

.timer {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.time-block .label {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #FFD700;
    opacity: 0.8;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .timer {
        gap: 1rem;
    }
    
    .time-block span {
        font-size: 2rem;
    }
}

/* About Page Styles */
.about-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 80px;
    color: var(--text-color);
}

.about-hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-content {
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    margin: 2rem 5%;
    border-radius: 10px;
    color: var(--text-color);
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-color);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.team-member {
    text-align: center;
    color: var(--text-color);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.member-image i {
    font-size: 4rem;
    color: var(--primary-color);
}

/* Services Page Styles */
.services-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 80px;
    color: var(--text-color);
}

.services-hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-content {
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    margin: 2rem 5%;
    border-radius: 10px;
    color: var(--text-color);
}

.service-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-color);
}

.service-icon {
    flex: 0 0 100px;
    text-align: center;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-info {
    flex: 1;
    padding-left: 2rem;
}

.service-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-info ul {
    list-style: none;
    margin-top: 1rem;
}

.service-info ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-info ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.cta-section {
    text-align: center;
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
}

/* Contact Page Styles */
.contact-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 80px;
    color: var(--text-color);
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-content {
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    background: rgba(0, 0, 0, 0.8);
    margin: 2rem 5%;
    border-radius: 10px;
    color: var(--text-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-color);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .service-icon {
        margin-bottom: 1rem;
    }

    .service-info {
        padding-left: 0;
    }

    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Make sure all text is visible */
p, h1, h2, h3, h4, h5, h6, span, li {
    color: var(--text-color);
}

/* Ensure images are visible */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Add hover effects for better visibility */
.service-card:hover,
.value-card:hover,
.info-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
} 