/* Root Variables */
:root {
    --primary-color: #3064ba;
    --secondary-color: #ff885d;
    --accent-color: #efa44d;
    --light-bg: #f8f9fa;
    --dark-text: #3064ba;
    --light-text: #3064ba;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-color);
    animation: slideUp 0.6s ease-out;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4169E1;
}

h3 {
    font-size: 1.8rem;
    color: #ff7a3d;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    animation: bounce 0.6s ease-out;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-service {
    margin-top: 1rem;
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    display: block;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Navigation Bar */
.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

/* Logo Styling */
.nav-brand {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    transition: all 0.3s ease;
    animation: logoFade 0.8s ease-out;
}

.logo:hover {
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

@keyframes logoFade {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: var(--primary-color);
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.fade {
    opacity: 1;
}

.slide.fade.show {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: slideInUp 0.8s ease-out;
}

.slide-content h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Slider Navigation Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    background-color: rgba(0,0,0,0.3);
    border: none;
    border-radius: 3px;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.6);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Dots for slider */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    cursor: pointer;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    border: 2px solid white;
}

.dot.active {
    background-color: white;
    width: 14px;
    height: 14px;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-content {
    padding: 40px 20px;
    text-align: center;
    animation: fadeIn 1s ease-in 0.5s both;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* New Enhanced Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.95);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
}

.scroll-animate.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.scroll-animate.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.scroll-animate.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.scroll-animate.animate-scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

/* Enhance existing sections with animation */
.about, .services, .why-choose, .how-it-works, .contact, .footer {
    animation: fadeIn 0.8s ease-out;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.about .container {
    text-align: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideUp 0.6s ease-out;
    border-left: 4px solid var(--secondary-color);
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(31, 71, 136, 0.15);
}

.stat-box h4 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    animation: heartBeat 0.6s ease-out;
}

.stat-box p {
    color: var(--light-text);
}

/* Counter Animation Styles */
.counter, .counter-currency {
    font-weight: bold;
    color: var(--secondary-color);
}

@keyframes counterPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.stat-box.counted .counter,
.stat-box.counted .counter-currency {
    animation: counterPulse 0.6s ease-out;
}

/* Services Section */
.services {
    padding: 80px 20px;
}

.services .container {
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 4px solid var(--secondary-color);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(31, 71, 136, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    display: block;
    margin: 0;
    padding: 0;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-color);
    padding: 0 2rem;
    margin-top: 1.5rem;
}

.service-card p {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
}

.service-card .btn-service {
    margin: 0 2rem 2rem 2rem;
    width: calc(100% - 4rem);
}

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 80px 20px;
}

.why-choose .container {
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
    text-align: center;
    animation: slideUp 0.6s ease-out;
    transition: all 0.3s ease;
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(31, 71, 136, 0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    animation: zoomIn 0.5s ease-out;
}

.feature:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    background-color: var(--accent-color);
}

.feature h4 {
    color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.how-it-works .container {
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    z-index: 0;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    animation: slideUp 0.6s ease-out;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(31, 71, 136, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: zoomIn 0.5s ease-out;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.15);
    background-color: var(--accent-color);
}

.step h4 {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
}

.contact .container {
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.2);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.contact-info {
    text-align: left;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.info-item p {
    margin: 0;
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    margin-top: 0.5rem;
}

.whatsapp-btn:hover {
    background-color: #20ba5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

/* WhatsApp Floating Button */
#whatsappFloatingBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    z-index: 999;
}

#whatsappFloatingBtn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

#whatsappFloatingBtn:hover {
    background-color: #20ba5f;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

#whatsappFloatingBtn:active {
    transform: scale(0.95);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.callback-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.callback-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-container {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .prev, .next {
        padding: 12px;
        font-size: 18px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        padding: 1rem;
        gap: 0;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .steps::before {
        display: none;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .stats,
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slider-container {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .prev, .next {
        padding: 10px;
        font-size: 16px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Enhanced Hover Effects */
.service-card {
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.stat-box {
    position: relative;
    overflow: hidden;
}

.stat-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.stat-box:hover::after {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

/* Button Animation Enhancement */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* Step Animation */
.step {
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    transition: top 0.4s ease;
    z-index: -1;
}

.step:hover::before {
    top: 0;
}

/* Feature Card Animation */
.feature {
    position: relative;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}
/* ========== Careers Page Styles ========== */

.careers-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.careers-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.careers-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.careers-content {
    padding: 40px 20px;
}

.careers-intro {
    margin-bottom: 60px;
}

.careers-intro h2 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 1.5rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.careers-intro > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid var(--secondary-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.current-openings {
    margin-bottom: 60px;
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
}

.current-openings h2 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 2rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.openings-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.opening-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--secondary-color);
}

.opening-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.opening-card i {
    color: var(--secondary-color);
}

.opening-card p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

.application-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.application-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.application-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.careers-form {
    max-width: 600px;
    margin: 0 auto;
}

.careers-form .form-group {
    margin-bottom: 2rem;
}

.careers-form .form-group label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.careers-form .form-group input,
.careers-form .form-group select {
    border: 2px solid var(--border-color);
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 1rem;
}

.careers-form .form-group input:focus,
.careers-form .form-group select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

.careers-form .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 1.8rem;
    }

    .careers-hero p {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .current-openings {
        padding: 20px;
    }

    .openings-list {
        grid-template-columns: 1fr;
    }

    .application-section {
        padding: 20px;
    }

    .careers-form .btn-primary {
        padding: 12px;
        font-size: 1rem;
    }
}