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

:root {
    --primary: #ff5722;
    --primary-dark: #e55e00;
    --primary-light: #ff8a50;
    --secondary: #ff9800;
    --dark: #222;
    --light: #f9f9f9;
    --gray: #777;
    --light-gray: #eee;
    --card-bg: #fffaf5;
    --rapido-gradient: linear-gradient(135deg, #FF6B00 0%, #FF8E53 100%);
    --rounded-xl: 12px;
    --rounded-full: 20px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;

}

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-section {
    background: var(--rapido-gradient);
    margin: 80px auto;
    padding: 50px 0;
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s infinite linear;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    margin-left: 130px;
}

.hero-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-left: 150px;
}

.view-jobs-btn {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-left: 140px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 75%;
    border-radius: 20px;
    margin-left: 100px;
}

.yellow-accent {
    position: absolute;
    background: var(--primary);
    width: 60px;
    height: 200px;
    border-radius: 30px;
    margin-left: 60px;
    bottom: 50px;
}

/* why-work-section */

.why-work-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.why-work-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    text-align: left;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* gallery section */

.gallery-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    display: flex;
    scroll-behavior: smooth;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    overflow: hidden;
}

.gallery-item {
    min-width: 33.33%;
    /* Show 3 images at a time */
    flex-shrink: 0;
    padding: 0 5px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #333;
    transform: scale(1.2);
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #333;
    color: white;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* employee  Section */
.testimonial-section {
    background: #f7f7fc;
    border-radius: 3rem 0 3rem 0;
    max-width: 1000px;
    padding: 4rem 3rem 6rem;
    margin: 3rem auto 4rem;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.section-title {
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.underline-yellow {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 3px;
    margin: 0.5rem auto 2rem;
}

.card {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 6px 23px rgba(31, 31, 31, 0.05);
    width: 100%;
    max-width: 660px;
    padding: 2.5rem 2rem 3rem 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(31, 31, 31, 0.1);
}

.card figure {
    margin: 0;
    position: relative;
    flex-shrink: 0;
}

.card figure::before {
    content: "";
    height: 68px;
    width: 8px;
    position: absolute;
    background-color: var(--primary);
    border-radius: 2rem 0 0 2rem;
    top: 0;
    left: -6px;
    z-index: -1;
}

.card img {
    border-radius: 1rem;
    height: 68px;
    width: 68px;
    object-fit: cover;
    object-position: center;
    display: block;
    border: 2px solid #f8f8f8;
}

.card-content {
    flex-grow: 1;
}

.card-text {
    color: #3a3a3a;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    max-height: 108px;
    overflow: hidden;
    position: relative;
    padding-right: 0.5rem;
}

.card-text::after {
    content: "...";
    position: absolute;
    bottom: 0;
    right: 0.5rem;
    background: white;
    padding-left: 0.25rem;
}

.author {
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: black;
}

.author-title {
    font-weight: 400;
    font-size: 0.75rem;
    color: #4a4a4a;
    margin-top: 0.25rem;
}

/* Carousel controls */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 3rem;
}

.cards-wrapper {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-btn {
    cursor: pointer;
    background: white;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #3a3a3a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.carousel-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.carousel-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background-color: white;
    color: #3a3a3a;
    transform: translateY(-50%);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.dots-wrapper {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #d1d1d1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.dot:hover,
.dot:focus {
    background-color: var(--primary);
    transform: scale(1.2);
    outline: none;
}

.dot.active {
    background-color: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* Openings */
.openings {
    background: white;
    padding: 4rem 0;
}

.openings .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;

}

.section-title1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0.5rem auto;

}

.section-description {
    color: var(--dark);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.openings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.opening-card {
    background: white;
    border-radius: var(--rounded-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.opening-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary);
    background: rgba(255, 107, 0, 0.05);
}

.opening-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.opening-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.opening-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-size: 0.875rem;
    background: rgba(0, 0, 0, 0.03);
    padding: 0.25rem 0.75rem;
    border-radius: var(--rounded-full);
}

.opening-card-department {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--rounded-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.opening-card-description {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.opening-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.opening-card-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary-dark);
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.button-primary {
    background-color: var(--primary);
    color: white;
    border-radius: 30px;
}

.button-primary:hover {
    background-color: #e65100;
    transform: translateY(-2px);
}

.button-secondary {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.button-secondary:hover {
    background-color: rgba(255, 107, 0, 0.1);
}

.openings-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Newsletter */
.newsletter {
    background: var(--rapido-gradient);
    color: white;
    padding: 4rem 0;
}

.newsletter-container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.newsletter p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 32rem;
    margin: 0 auto;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--rounded-full);
    border: none;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

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