:root {
    --primary-color: #0066cc;
    --secondary-color: #e6f3ff;
    --hover-color: #004d99;
    --text-color: #333;
    --transition-speed: 0.3s;
}

/* Global Styles & Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), #004d99);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%);
    background-size: 60px 60px;
    animation: pulse 8s ease-in-out infinite;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

/* Jobs Section Styles */
.job-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 100%;
    margin: 20px 0;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.job-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.job-icon i {
    font-size: 2rem;
}

.job-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.job-requirements li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.job-requirements li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 10px;
}

/* Benefits Section Styles */
.benefits-section {
    background-color: var(--secondary-color);
    padding: 80px 0;
    position: relative;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    transition: all var(--transition-speed) ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2);
    color: var(--hover-color);
}

/* Contact Section Styles */
.contact-section {
    background: white;
    padding: 100px 0;
}

.contact-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform var(--transition-speed) ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-floating {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #eee;
    padding: 15px;
    transition: all var(--transition-speed) ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.form-floating label {
    padding: 15px;
}

/* Button Styles */
.apply-button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.apply-button:hover {
    background: var(--hover-color);
    transform: scale(1.05);
    color: white;
}

.btn-hover-effect {
    position: relative;
    z-index: 1;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hover-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed) ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-hover-effect:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Section Title Styles */
.section-title {
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

/* Modal Styles */
.custom-modal {
    padding: 0 !important;
}

.custom-dialog {
    max-width: 75% !important;
    width: 75%;
    margin: 8rem auto !important;
    max-height: calc(100vh - 16rem);
    display: flex;
}

.modal-content {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
    border: none;
    max-height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
    background: white;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    color: #333;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Job Info Column Styles */
.job-info-column {
    border-right: 2px solid var(--secondary-color);
}

.job-info-card {
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: 10px;
    height: 100%;
}

.info-item {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    color: var(--primary-color);
    width: 16px;
    font-size: 1rem;
}

.benefits {
    margin-top: 15px;
}

.benefits ul {
    list-style: none;
    padding-left: 0;
}

.benefits li {
    margin: 0.5rem 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.benefits li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Modal Backdrop */
.modal-backdrop.show {
    opacity: 0.7;
    /* background-color: #2c3e50; */
}

/* Scrollbar Styles */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Toast Styles */
.toast {
    border-radius: 10px;
}

/* Validation Styles */
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #198754;
}

/* Grid Spacing */
.row.g-4 {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

/* Animation Classes */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

[data-aos][data-aos][data-aos-duration="1200"] {
    transition-duration: 1200ms;
}

[data-aos^="fade"][data-aos^="fade"] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos^="fade"][data-aos^="fade"].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .custom-dialog {
        max-height: calc(100vh - 12rem);
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2em;
    }

    .contact-image {
        margin-bottom: 30px;
    }

    .job-card {
        margin: 10px 0;
    }

    .custom-dialog {
        max-height: calc(100vh - 8rem);
    }

    .job-icon i {
        font-size: 1.75rem;
    }

    .info-item i {
        font-size: 0.9rem;
    }
}