/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6rem;
}



/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-gradient-bar {
    position: relative;
    background: linear-gradient(135deg, #ffecd2 0%, #fed6e3 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 236, 210, 0.7) 0%, rgba(254, 214, 227, 0.7) 100%);
    z-index: -1;
} */


/* .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
} */


.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-svg {
    height: 70px;
    width: auto;
    max-width: 300px;
    filter: none;
}

.hero-text {
    color: #f8fafc;
    text-shadow: 0 0px 20px rgba(0, 0, 0, 0.75);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0px 20px rgba(0, 0, 0, 0.75);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #19daca;
    color: white;
    box-shadow: 0 4px 15px rgba(25, 218, 202, 0.3);
}

.btn-primary:hover {
    background: #16c4b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 218, 202, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #19daca;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Future Section */
.future-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 1.5em;
}

.future-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.future-paragraph {
    font-size: 1.25rem;
    color: #2d3748;
    line-height: 1.8;
    text-align: center;
    max-width: 600px;
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fed6e3 100%);
    color: #2d3748;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-text .section-title {
    color: #2d3748;
}

.contact-text {
    text-align: left;
}

.contact-description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.email-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.email-container i {
    font-size: 1.5rem;
    color: #19daca;
}

.email-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 2px solid transparent;
    opacity: 0.7;
}

.email-link:hover {
    color: #19daca;
    background: rgba(25, 218, 202, 0.1);
    border-color: #19daca;
    transform: translateY(-2px);
}

.contact-note {
    font-size: 0.875rem;
    color: #4a5568;
    margin: 0;
    font-style: italic;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo .logo-svg {
    height: 35px;
    width: auto;
    max-width: 180px;
    filter: brightness(0) invert(1);
}

.footer-text p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero-content {
        text-align: center;
        gap: 2rem;
        max-width: 700px;
    }
    
    
    
    .hero-logo-svg {
        height: 70px;
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .future-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding: 2rem;
    }

    .contact-text {
        text-align: center;
    }
    
    .email-link {
        font-size: 1.25rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        max-width: 500px;
    }
    
    .hero-logo-svg {
        height: 55px;
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    .section-description,
    .contact-description {
        font-size: 1.25rem;
    }

   
    
}
