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

:root {
    --primary: #ff5722;
    --secondary: #ff9800;
    --dark: #222;
    --light: #f9f9f9;
    --gray: #777;
    --light-gray: #eee;
}

body {
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: #ffffff;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.logo span {
    color: #ff5722;
    font-weight: 800;
    font-size: 28px;
    margin-left: 10px;
}

.logo a {
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    margin-right: 90px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
    margin-right: 20px;
}

nav ul li a:hover {
    color: #ff5722;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff5722;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/image.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 40px;
    color: white;
    margin-top: 80px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: #ff5722;
    display: block;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

/* Location Inputs with Icons */
.book-ride {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.location-inputs {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.input-group {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f9f9f9;
    position: relative;
}

.input-group.pickup {
    border-bottom: 1px solid #ddd;
}

.input-icon {
    color: var(--primary);
    font-size: 20px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.book-ride input {
    padding: 12px 0;
    border: none;
    outline: none;
    font-size: 18px;
    background: transparent;
    width: 100%;
}

.book-ride input::placeholder {
    color: #999;
}

.book-ride button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 40px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.book-ride button:hover {
    background-color: var(--secondary);
}

/* Services Section */
.services {
    padding: 100px 40px;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 18px;
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 40px;
    background-color: black;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon img {
    display: flex;
    border-radius: 50%;
    box-shadow: 0px 2px 5px #333;
}


.service-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 22px;
}

.service-card p {
    color: var(--gray);
    font-size: 16px;
}

/* Features Section */
.features {
    padding: 100px 40px;
    background: rgb(238, 236, 236);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff5722;
    border-radius: 2px;
}

.section-title p {
    color: #777;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ff5722;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    background: rgba(255, 87, 34, 0.1);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #ff5722;
    font-size: 40px;
    transition: 0.4s;
}

.feature-card:hover .feature-icon {
    background: #ff5722;
    color: white;
    transform: rotateY(360deg);
}

.feature-card h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

.feature-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.feature-btn:hover {
    background: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

/* App Section */
.app-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: white;
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.app-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.app-container {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.app-content {
    flex: 1;
}

.app-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.app-content p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.app-image {
    text-align: center;
    position: relative;
}

.app-image a {
    text-decoration: none;
}

.app-image p {
    color: white;

}

.app-image img {
    max-width: 150px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.4s;
}

.app-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.app-stores {
    display: flex;
    gap: 20px;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    background: #000;
    padding: 16px 30px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.app-store-btn i {
    margin-right: 10px;
    font-size: 24px;
}

.app-store-btn:hover {
    background: #333;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Cities Section */
.cities {
    padding: 100px 40px;
    background: #fff;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.city-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    border: 1px solid #f0f0f0;
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #ffd4c5;
}

.city-card i {
    font-size: 40px;
    color: #ff5722;
    margin-bottom: 20px;
    background: rgba(255, 87, 34, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.city-card h3 {
    font-size: 22px;
    color: #333;
}

/* Footer */
footer {
    background: #222;
    color: #eee;
    padding: 80px 40px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ff5722;
}

.footer-about p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #bbb;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background: #ff5722;
    transform: translateY(-5px);
}

.footer-links h3 {
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff5722;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #ff5722;
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid #444;
    color: #777;
    font-size: 15px;
}


/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease forwards;
}