/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #130404d4;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px #000000d4;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f56421f3;
}

.velo{
    width: 40px;
    height: 40px;
    margin-top: 10px;
}

.store {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item a {
    font-weight: 400;
    transition: color 0.3s;
}

.nav-item a:hover {
    color: #ef630b;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #0e0202ea;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 50px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #03080ef7;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #150606f5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    display: flex;
    background: #e95207;
    color: white;
    padding-top: 15px;
}

.btn-secondary {
    display: flex;
    background: transparent;
    color: #e7500b;
    border: 2px solid #e74e07;
    padding-top: 15px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Registration Section */
.register {
    padding: 80px 0;
}

.register-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.register-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #030508;
}

.register-container p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #0f0505f6;
}

.register-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.register-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(6, 1, 1, 0.811);
    text-align: center;
}

.register-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #04080ced;
}

.register-card p {
    margin-bottom: 30px;
    color: #0f0707;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.register-form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

/* Services Page */
.services-hero {
    background: linear-gradient(135deg, #0f0b0a 0%, #0a0807 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 1.2rem;
}

.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #04070b;
}

/* About Page */
.about-hero {
    /* background: linear-gradient(135deg, hwb(25 2% 10%) 0%, hsl(22, 96%, 42%) 100%); */
    background-image: url('../img/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgb(255, 255, 255);
    padding: 150px 0 100px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about {
    padding: 80px 0;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #070e15;
}

.about-text p {
    margin-bottom: 30px;
    color: #0e0303e7;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(9, 2, 2, 0.883);
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.download-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #050b11;
}

.download-container p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #0b0303;
}

/* Footer */
.footer {
    background: #04090e;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.social-media {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ff4800;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
    background-color: #d08960;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(16, 3, 3, 0.917);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .about-hero {
        background-image: url('../img/background.jpeg');
        background-size: cover;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .register-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}