body {
    background-color: #000000;
    background-image: repeating-linear-gradient(180deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 3px);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem, 4vw, 3rem) !important; letter-spacing: 0.01em; }

.section-padding {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

/* Brand Story */
.story-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* 3D Slider Styles */
.teamSwiper {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.swiper-slide {
    width: 280px !important;
    height: 280px !important;
}

.staff-card {
    background: linear-gradient(145deg, #071a3d, #000000);
    background-image:
        linear-gradient(145deg, #071a3d, #000000),
        linear-gradient(var(--bright-orange), var(--bright-orange)), linear-gradient(var(--bright-orange), var(--bright-orange)),
        linear-gradient(var(--bright-orange), var(--bright-orange)), linear-gradient(var(--bright-orange), var(--bright-orange));
    background-repeat: no-repeat;
    background-size: 100% 100%, 18px 2px, 2px 18px, 18px 2px, 2px 18px;
    background-position: 0 0, bottom left, bottom left, bottom right, bottom right;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--bright-orange);
    max-width: 350px;
    margin: 0 auto;
}

.staff-card h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.3rem; }

.staff-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ffa515;
    margin-bottom: 15px;
}

.stars {
    display: block;
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #ffa515;
}

.stars:hover {
    color: #ffcc00;
}

.review {
    text-align: center;
}

/* Join Us Form */
form input {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 0;
    border: none;
}

button {
    background: #ffa515;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

/* Style the navigation arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #ffa515 !important;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 20px;
    border-radius: 0;
    margin-top: -22px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

.join-team-section {
    background: #071a3d;
    border-radius: 0; border-top: 3px solid var(--bright-orange);
    padding: 40px 30px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.join-team-section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #ffa515;
}

.custom-input {
    display: block;
    width: 100%;
    padding: 12px 15px;
    margin-top: 5px;
    margin-bottom: 20px;
    border-radius: 0;
    border: 2px solid transparent;
    background: #f4f4f4;
    font-family: inherit;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.custom-input:focus {
    outline: none;
    border: 2px solid #ffa515;
    background: #ffffff;
}

.custom-submit {
    background: #ffa515;
    color: #071a3d;
    padding: 15px 20px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    transition: background 0.3s ease;
}

.custom-submit:hover {
    background: #ffcc00;
}
