* {
    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;
}

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;
}

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%;
}

nav ul li a.active {
    color: #ff5722;
    font-weight: 600;
    padding-bottom: 5px;
}

.download-btn {
    background-color: #ff5722;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.download-btn i {
    margin-right: 8px;
}

.download-btn:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/about\ background.png') no-repeat center center/cover;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
    margin-top: 90px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Why Choose Us Section */
.why-choose {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 30px auto 60px;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;

}

.feature {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 40px 30px;
    border-radius: 100px;
    box-shadow: 0px 2px 5px black;
    transition: transform 0.3s;
    background: white;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: backwards;
}

.feature:nth-child(1) {
    animation-delay: 0.2s;
}

.feature:nth-child(2) {
    animation-delay: 0.4s;
}

.feature:nth-child(3) {
    animation-delay: 0.6s;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #ff5722 0%, #ff5722 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Founders Section */
.founders {
    padding: 80px 20px;
    background-color: var(--light-gray);
    text-align: center;
}

.founders-container {
    max-width: 1200px;
    margin: 0 auto;
}

.founders-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.founder-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 2px 5px black;
    max-width: 350px;
    transition: all 0.3s;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: backwards;
}

.founder-card:nth-child(1) {
    animation-delay: 0.2s;
}

.founder-card:nth-child(2) {
    animation-delay: 0.4s;
}

.founder-card:nth-child(3) {
    animation-delay: 0.6s;
}

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

.founder-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary);

}

.founder-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.founder-title {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Careers Section */
.careers {
    padding: 100px 40px;
    background: linear-gradient(rgba(240, 111, 111, 0.5), rgb(240, 111, 111, 0.5)), url('images/Jobs-@-Rapido.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.careers-content {
    max-width: 800px;
    margin: 0 auto;
}

.careers h2 {
    margin-bottom: 20px;
}

.careers p {
    margin-bottom: 20px;
    color: white;
    text-shadow: 0px 10px 15px black;
}

.careers-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px 0px 25px 0px;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Apps Section */
.apps {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.apps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.app-card {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: white;
    transition: all 0.3s;
}

.app-card 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-card:hover {
    transform: translateY(-5px);
}

.app-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.app-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.app-btn1{
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.app-btn1:hover {
    background-color: #e08519;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 80px 0 40px;
    position: relative;
}

.footer-grid {
    display: flex;
    gap: 100px;
    margin-bottom: 60px;
    justify-content: center;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
    margin-left: 20px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.footer-column ul {
    list-style: none;
    margin-left: 20px;
}

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

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-btn {
    display: flex;
    align-items: center;
    background-color: #333;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: left;
    margin-left: 20px;
}

.app-btn:hover {
    background-color: var(--primary);
    transform: translateX(5px);
}

.app-btn i {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--primary);
}

.app-btn:hover i {
    color: var(--white);
}

.app-text {
    display: flex;
    flex-direction: column;
}

.app-text small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.app-text div {
    font-weight: 600;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #333;
    border-radius: 50%;
    color: var(--light);
    font-size: 1.3rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 1rem;
}