/* Base styles */
:root {
    --primary: #fdbb00;
    --primary-dark: #e6a800;
    --primary-light: #ffcc33;
    --dark: #000000;
    --dark-gray: #222222;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #f0f0f0;
    --section-gap: 100px;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, .primary-btn, .secondary-btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 5px 15px rgba(253, 187, 0, 0.3);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 187, 0, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    border: 2px solid var(--primary);
    text-align: center;
    margin-left: 15px;
}

.secondary-btn:hover {
    background-color: var(--primary);
    color: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    max-width: 700px;
    padding-top: 3%;
    margin: auto;
}

/* Navigation */
.main-nav {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.main-nav.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.main-nav.scrolled .logo img {
    height: 35px;
}

.nav-links a {
    margin: 0 15px;
    font-weight: 600;
    color: var(--dark);
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    left: 0;
    bottom: -5px;
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background-color: var(--dark);
    color: var(--text-light);
    position: relative;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%), url('../people.png');
    background-size: cover;
    z-index: -1;
    transform: none !important;
    filter: brightness(0.9);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeUp 1s ease-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    z-index: 5 !important;
    opacity: 1 !important;
    width: 100%;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4), 0 0 5px rgba(253, 187, 0, 0.2);
    opacity: 1 !important;
    position: relative;
    display: inline-block;
    left: 0;
    transform: none;
    width: 100%;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--white);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

.scroll-text {
    color: var(--white);
    font-size: 0.8rem;
    margin-top: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Additional styles to ensure perfect centering and visibility */
.no-text-parallax .hero-content * {
    opacity: 1 !important;
    z-index: 10;
}

/* Ensure perfect centering of hero content */
.no-text-parallax .hero-content {
    transform: translate(-50%, -50%) !important;
    left: 50% !important;
    top: 50% !important;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: var(--section-gap) 0;
    background-color: var(--white);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 30px;
    color: var(--dark);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    background-color: var(--primary);
    padding: 15px 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 180px;
    color: var(--dark);
    text-align: center;
    box-shadow: 0 5px 15px rgba(253, 187, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: var(--section-gap) 0 150px;
    background-color: var(--light-gray);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.feature-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--dark);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.wave-divider path {
    fill: var(--white);
}

/* Market Research Section */
.market {
    padding: var(--section-gap) 0;
    background-color: var(--white);
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--primary);
    color: var(--dark);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}

.stat-card:hover .stat-value {
    color: var(--dark);
}

.stat-description {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.target-demographics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.demo-item {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.demo-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Mission Section */
.mission {
    padding: var(--section-gap) 0;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../black_yellow_bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
}

.mission .section-header h2 {
    color: var(--white);
}

.mission-content {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.mission-text {
    max-width: 800px;
    text-align: center;
}

blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 30px;
    padding: 20px 40px;
    position: relative;
    line-height: 1.6;
    color: var(--primary);
}

blockquote::before {
    content: '\201C';
    font-size: 6rem;
    position: absolute;
    left: -20px;
    top: -40px;
    opacity: 0.2;
}

blockquote::after {
    content: '\201D';
    font-size: 6rem;
    position: absolute;
    bottom: -80px;
    opacity: 0.2;
}

.vision-statement {
    margin-top: 80px;
}

.keys-success {
    margin-top: 50px;
}

.vision-statement h3 {
    color: var(--white);
    font-size: 2.0rem;
    position: relative;
}

.keys-success h3 {
    text-align: center;
    font-size: 2.0rem;
    margin-bottom: 30px;
    color: var(--white);
}

.vision-statement h3::after,
.keys-success h3::after {
    content: '';
    display: block;
    margin: 10px auto 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.keys-success ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.keys-success li {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.keys-success li:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.keys-success .icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.keys-success .icon i {
    color: var(--dark);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: var(--section-gap) 0;
    background-color: var(--light-gray);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--dark);
}

.contact-form {
    flex: 1.5;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(253, 187, 0, 0.2);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding-top: 70px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.link-group {
    flex: 1;
    min-width: 150px;
}

.link-group h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.link-group a:hover {
    color: var(--primary);
}

.link-group a i {
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: var(--white);
        width: 100%;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        display: block;
        margin: 15px 0;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .about-content, .features-grid {
        flex-direction: column;
    }

    .keys-success li {
        padding: 15px;
    }

    .keys-success .icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .primary-btn, .secondary-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .feature-cards, .market-stats {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    blockquote {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .secondary-btn {
        margin-left: 0;
        margin-top: 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

[data-speed] {
    transition: transform 0.5s ease;
}

/* Hero container styling for proper centering */
.hero-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
