/* Global Styles */
:root {
    --primary-color: #f15b27;
    --secondary-color: #2c3e50;
    --accent-color: #f15b27;
    --gradient-start: #f15b27;
    --gradient-mid: #f15b27;
    --gradient-end: #ff6b4a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --primary-hover: #d83a15;
    --secondary-hover: #34495e;
    --primary-light: rgba(241, 91, 39, 0.1);
    --secondary-light: rgba(44, 62, 80, 0.1);
    --text-color: #2c3e50;
    --border-radius: 8px;
}

body {
    padding-top: 65px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    background: white;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/hero-pattern.png");
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--text-color);
    animation: slideInLeft 1s ease-out;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: #666;
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

.hero-section .btn {
    animation: slideInLeft 1s ease-out 0.4s backwards;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-section .btn-outline-light {
    border-width: 2px;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-section .btn-outline-light:hover {
    background: var(--primary-color);
    color: white;
}

.hero-section .mt-5 {
    animation: slideInLeft 1s ease-out 0.6s backwards;
}

.hero-section .fa-2x {
    color: var(--primary-color) !important;
}

.hero-section .text-white-50 {
    color: #666 !important;
}

.hero-section .hero-image {
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        height: auto;
        padding: 100px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-section .d-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Featured Jobs */
.featured-jobs {
    background-color: #f6f9fc;
    position: relative;
    padding: 80px 0;
    padding-bottom: 4rem !important;
}

.featured-jobs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("../images/pattern-bg.png");
    opacity: 0.05;
    pointer-events: none;
}

.featured-jobs .section-header {
    position: relative;
}

.featured-jobs .section-header h2 {
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.featured-jobs .section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Job Categories Tabs */
.job-categories .nav-pills {
    gap: 0.5rem;
}

.job-categories .nav-link {
    color: var(--text-color);
    background-color: white;
    border: 1px solid #e9ecef;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.job-categories .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.job-categories .nav-link.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

/* Job Cards */
.job-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: white;
    cursor: pointer;
}

.job-card:hover {
    box-shadow: 0 15px 30px rgba(239, 75, 37, 0.15);
}

.job-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.job-card:hover::after {
    transform: scaleX(1);
}

.job-card .card-body {
    padding: 1.5rem;
}

.job-card .card-title {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.job-card:hover .card-title {
    color: var(--secondary-color);
}

.job-card .badge {
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.job-card:hover .badge {
    transform: scale(1.1);
}

.job-card .badge.bg-primary {
    background: var(--secondary-color) !important;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.job-card .badge.bg-danger {
    background: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(239, 75, 37, 0.2);
}

.job-info li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #6c757d;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.job-info li:last-child {
    margin-bottom: 0;
}

.job-card:hover .job-info li {
    color: #495057;
}

.job-info li i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.job-card:hover .job-info li i {
    transform: translateX(5px);
}

/* Card Animation */
@keyframes cardPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.job-card:hover {
    animation: cardPulse 1.5s infinite;
}

/* Tab Content Animation */
.tab-pane {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Styles in Cards */
.job-card .btn-outline-primary {
    border-width: 2px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.job-card .btn-outline-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.job-card .btn-outline-primary:hover {
    color: white;
    border-color: var(--primary-color);
    background: transparent;
}

.job-card .btn-outline-primary:hover::before {
    left: 0;
}

.job-card .btn-outline-primary:hover i {
    animation: slideRight 0.5s ease forwards;
}

/* Animations */
@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .featured-jobs .section-header h2 {
        font-size: 2rem;
    }

    .job-categories .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .job-card {
        margin-bottom: 1rem;
    }
}

/* Why Join Us Section */
.why-join-us {
    padding: 80px 0;
    background: #fff;
}

.why-join-us h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.life-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.life-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.life-card-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.col-md-6 .life-card-image {
    height: 400px;
}

.col-12 .life-card-image {
    height: 250px;
}

.life-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.life-card:hover .life-card-overlay {
    background: linear-gradient(to bottom, rgba(239, 75, 37, 0.2), rgba(239, 75, 37, 0.8));
}

.life-card-content {
    color: white;
}

.life-card .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b4a);
    border: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.life-card:hover .badge {
    transform: translateY(0);
    opacity: 1;
}

.life-card h3 {
    margin: 0;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.life-card:hover h3 {
    transform: translateY(0);
}

/* Custom Navigation */
.life-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.nav-btn:hover i {
    color: white !important;
}

.nav-indicators {
    display: flex;
    gap: 1rem;
}

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

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

/* Responsive Styles */
@media (max-width: 768px) {
    .why-join-us h2 {
        font-size: 2.5rem;
    }

    .life-card-image {
        height: 250px;
    }

    .col-md-6 .life-card-image {
        height: 300px;
    }

    .col-12 .life-card-image {
        height: 200px;
    }

    .life-card-overlay {
        padding: 1rem;
    }

    .life-card .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .life-card h3 {
        font-size: 1.1rem;
    }
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: white !important;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar .nav-link {
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scaleX(0);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #343a40;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .why-join-us .carousel {
        max-height: 300px;
    }

    .why-join-us .carousel-item img {
        height: 300px;
    }

    .why-join-us .card-body {
        padding: 1.5rem;
    }
}

/* Button Styles */
.btn-primary {
    background-color: var(--secondary-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.btn-outline-primary {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border: none;
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
}

/* Card Styles */
.card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}

.card:hover {
    transform: translateY(-4px) scale(1.02);
}

.card-body {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Icon Styles */
.fa-3x {
    font-size: 2.5em;
}

/* Social Media Icons */
footer .fab {
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: white;
}

footer .fab:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-5px) rotate(360deg);
}

/* Job Tabs */
#jobTabs {
    border-bottom: 2px solid #eee;
    margin-bottom: 2rem;
}

#jobTabs .nav-link {
    color: var(--text-color);
    border: none;
    padding: 1rem 1.5rem;
    margin-right: 0.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#jobTabs .nav-link:hover,
#jobTabs .nav-link.active {
    color: var(--secondary-color);
    background-color: var(--secondary-light);
}

/* Job Cards */
.featured-jobs .card {
    border: none;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.featured-jobs .card:hover {
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.featured-jobs .card-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.featured-jobs .badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.featured-jobs .badge:hover {
    transform: scale(1.1);
}

.featured-jobs .badge.bg-primary {
    background-color: var(--secondary-color) !important;
}

.featured-jobs .badge.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.featured-jobs .badge.bg-danger {
    background-color: var(--primary-color) !important;
    animation: glowPulse 2s infinite;
}

.featured-jobs .badge.bg-info {
    background-color: #17a2b8 !important;
}

.featured-jobs .list-unstyled li {
    color: #666;
    font-size: 0.9rem;
}

.featured-jobs .btn-outline-primary {
    border-width: 2px;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.featured-jobs .btn-outline-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Responsive Tabs */
@media (max-width: 768px) {
    #jobTabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    #jobTabs .nav-link {
        white-space: nowrap;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .featured-jobs .card-body {
        padding: 1.25rem;
    }
}

/* Share Section Styles */
.share-section {
    margin-top: 2rem;
}

.share-section .fw-500 {
    font-weight: 500;
    color: #555;
}

.share-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}

.share-buttons .btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    border-color: transparent;
    color: white;
}

.share-buttons .btn-outline-primary:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

.share-buttons .btn-outline-info:hover {
    background-color: #0a66c2;
    border-color: #0a66c2;
}

.share-buttons .btn-outline-dark:hover {
    background-color: #000000;
    border-color: #000000;
}

/* Responsive Share Buttons */
@media (max-width: 576px) {
    .share-section .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .share-section .me-3 {
        margin-bottom: 1rem;
    }

    .share-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        width: 100%;
    }

    .share-buttons .btn {
        margin: 0 !important;
        width: 100%;
    }
}

/* Refer Friend Modal Styles */
#referFriendModal .modal-content {
    border: none;
    border-radius: var(--border-radius);
}

#referFriendModal .modal-header {
    border-bottom: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-light), var(--secondary-light)) 1;
    padding: 1.5rem;
}

#referFriendModal .modal-title {
    font-weight: 600;
    color: #2c3e50;
}

#referFriendModal .modal-body {
    padding: 1.5rem;
}

#referFriendModal .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

#referFriendModal .form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

#referFriendModal .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

#referFriendModal textarea {
    resize: vertical;
    min-height: 100px;
}

#referFriendModal .btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
}

#referFriendModal .fw-bold {
    color: #2c3e50;
}

/* Responsive Modal */
@media (max-width: 576px) {
    #referFriendModal .modal-dialog {
        margin: 1rem;
    }

    #referFriendModal .modal-header,
    #referFriendModal .modal-body {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-primary {
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

/* Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(239, 75, 37, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(239, 75, 37, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(239, 75, 37, 0.2);
    }
}

/* Hero Section Enhancement */
.hero-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/hero-pattern.png");
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-section .btn {
    animation: slideIn 1s ease-out 0.4s backwards;
}

/* Card Enhancements */
.card:hover {
    animation: glowPulse 2s infinite;
    border-top: 3px solid var(--secondary-color);
}

/* Button Animations */
.btn {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    opacity: 0;
    transition: all 0.3s ease-out;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:hover:after {
    opacity: 1;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    transition: 0.5s;
}

.btn-primary:hover:before {
    left: 100%;
}

/* Navigation Enhancement */
.navbar .nav-link {
    transition: all 0.3s ease;
}

.navbar .nav-link::after {
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar .nav-link:hover {
    transform: translateY(-2px);
}

/* Icon Animations */
.why-join-us i {
    transition: all 0.3s ease;
}

.why-join-us .card:hover i {
    animation: pulse 1s infinite;
    color: var(--secondary-color);
}

.why-join-us .fa-check {
    transform: scale(0);
    animation: scaleIn 0.3s ease forwards;
}

/* Badge Animations */
.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
}

.badge.bg-danger {
    animation: glowPulse 2s infinite;
}

/* Share Buttons Enhancement */
.share-buttons .btn {
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.share-buttons .btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Modal Animations */
.modal.fade .modal-dialog {
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

/* Form Element Enhancements */
.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    transform: translateY(-2px);
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Job Tabs Enhancement */
#jobTabs .nav-link {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#jobTabs .nav-link:hover {
    transform: translateY(-2px) scale(1.05);
}

/* Card Content Animation */
.card:hover .card-body {
    transform: translateY(-5px);
}

/* Footer Icon Enhancement */
footer .fab {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

footer .fab:hover {
    transform: translateY(-5px) rotate(360deg);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.loading {
    background: linear-gradient(90deg, var(--primary-light) 25%, var(--secondary-light) 50%, var(--primary-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Interactive Elements */
.interactive {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.interactive:hover {
    transform: scale(1.05);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Card Stack Effect */
.card-stack {
    position: relative;
}

.card-stack::before,
.card-stack::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: inherit;
    z-index: -1;
    transition: all 0.3s ease;
}

.card-stack::before {
    transform: rotate(-3deg);
}

.card-stack::after {
    transform: rotate(3deg);
}

.card-stack:hover::before {
    transform: rotate(-5deg);
}

.card-stack:hover::after {
    transform: rotate(5deg);
}

/* Icon Colors - High Priority */
.fas,
.fab,
.fa {
    color: inherit;
}

/* Exceptions */
.job-categories .nav-link.active i,
footer .fab {
    color: white !important;
}

/* Job Categories Tabs */
.job-categories .nav-link i {
    color: var(--secondary-color) !important;
}

/* Card Icons */
.card-title i,
.text-muted i,
.card-body i,
.job-info li i {
    color: inherit !important;
}

/* Why Join Us Section */
.why-join-us i {
    color: var(--secondary-color) !important;
}

.why-join-us .fa-check {
    color: var(--secondary-color) !important;
}

/* Footer Icons - Exception */
footer .fab {
    color: white !important;
}

footer .fab:hover {
    color: var(--secondary-color) !important;
}

/* Navbar Icons */
.navbar i {
    color: var(--secondary-color) !important;
}

/* Button Icons - Exception */
.btn-primary i,
.btn-secondary i,
.btn-outline-primary:hover i {
    color: white !important;
}

/* Carousel Styles */
.carousel {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 80px;
}

.carousel-image {
    height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.carousel-content {
    position: relative;
    padding: 150px 0;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    animation: slideInUp 1s ease-out;
}

.badge-wrapper {
    transform: translateY(-20px);
    opacity: 0;
    animation: fadeInDown 0.5s ease-out 0.5s forwards;
}

.badge.bg-gradient {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b4a);
    border: none;
    padding: 12px 30px;
    box-shadow: 0 5px 15px rgba(239, 75, 37, 0.3);
}

.carousel-content h2 {
    font-size: 4.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.7s forwards;
}

.carousel-content .lead {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.9s forwards;
}

.btn-group-wrapper {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 1.1s forwards;
}

.carousel-content .btn {
    padding: 15px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-content .btn-light {
    background: rgba(255, 255, 255, 0.95);
    border: none;
}

.carousel-content .btn-outline-light {
    border-width: 2px;
}

.carousel-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Custom Carousel Controls */
.carousel-arrow {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-arrow i {
    color: white !important;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.5s ease-out 1.3s forwards;
}

.carousel-control-next {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.5s ease-out 1.3s forwards;
}

.carousel-control-prev:hover .carousel-arrow,
.carousel-control-next:hover .carousel-arrow {
    background: white;
    transform: scale(1.1);
}

.carousel-control-prev:hover .carousel-arrow i,
.carousel-control-next:hover .carousel-arrow i {
    color: var(--primary-color) !important;
}

/* Custom Indicators */
.carousel-indicators {
    bottom: 50px;
    margin-bottom: 0;
    gap: 15px;
}

.carousel-indicators button {
    width: auto !important;
    height: auto !important;
    padding: 12px 40px !important;
    margin: 0 !important;
    border-radius: 15px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border: none !important;
    opacity: 1 !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out 1.5s forwards;
}

.carousel-indicators button.active {
    background: white !important;
    transform: scale(1.1);
}

.indicator-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indicator-content i {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white !important;
}

.indicator-title {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.carousel-indicators button.active .indicator-title,
.carousel-indicators button.active i {
    color: var(--primary-color) !important;
}

/* Responsive Carousel */
@media (max-width: 991.98px) {
    .carousel-image {
        height: 600px;
    }

    .carousel-content {
        padding: 100px 0;
    }

    .carousel-content h2 {
        font-size: 3.5rem;
    }

    .carousel-content .lead {
        font-size: 1.3rem;
    }

    .carousel-arrow {
        width: 55px;
        height: 55px;
    }

    .carousel-indicators {
        bottom: 40px;
    }

    .carousel-indicators button {
        padding: 10px 30px !important;
    }
}

@media (max-width: 767.98px) {
    .carousel-image {
        height: 500px;
    }

    .carousel-content {
        padding: 80px 0;
    }

    .carousel-content h2 {
        font-size: 2.8rem;
    }

    .carousel-content .lead {
        font-size: 1.2rem;
    }

    .carousel-arrow {
        width: 45px;
        height: 45px;
    }

    .carousel-indicators {
        bottom: 30px;
    }

    .carousel-indicators button {
        padding: 8px 25px !important;
    }

    .indicator-content i {
        font-size: 1rem;
    }

    .indicator-title {
        font-size: 0.9rem;
    }

    .btn-group-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .carousel-content .btn {
        width: 100%;
        margin: 0 !important;
    }
}

/* Hiring Process Section */
.hiring-process {
    position: relative;
    overflow: hidden;
    background: #f6f9fc !important;
    padding-bottom: 4rem !important;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.process-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.process-icon i {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.process-card:hover .process-icon i {
    transform: scale(1.2);
}

.process-content {
    text-align: center;
}

.process-content .step-number {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    background: #f8f9fa;
}

.process-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #212529;
}

.process-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Timeline Progress */
.timeline-progress {
    margin-top: 4rem;
    padding: 0 2rem;
}

.timeline-progress .progress {
    height: 4px;
    background-color: #e9ecef;
}

.timeline-progress .progress-bar {
    background-color: #0d6efd;
}

.timeline-points {
    display: flex;
    justify-content: space-between;
    margin-top: -12px;
}

.timeline-points .point {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 2px solid #0d6efd;
    border-radius: 50%;
    position: relative;
}

.timeline-points .point.active {
    background: #0d6efd;
}

.timeline-points .point .point-label {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Color Classes */
.text-orange-500 {
    color: #ff6b4a;
}
.text-blue-500 {
    color: #0a84ff;
}
.text-yellow-500 {
    color: #ffb400;
}
.text-green-500 {
    color: #30b94d;
}

/* Our Teams Section */
.our-teams {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.team-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.team-image {
    /* width: 100%; */
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .team-image {
        width: 100%;
        height: auto !important;
    }
}

.team-content {
    padding: 1rem;
    background: white;
}

.team-content h3 {
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* Icon Colors with Highest Priority */
.team-card:nth-child(1) .team-content i.fas,
.team-card:nth-child(2) .team-content i.fas,
.team-card:nth-child(3) .team-content i.fas,
.team-card:nth-child(4) .team-content i.fas,
.team-card:nth-child(5) .team-content i.fas,
.team-card:nth-child(6) .team-content i.fas {
    color: inherit;
}

.team-content i.fas {
    font-size: 1.2rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.team-card:hover .team-content i {
    transform: scale(1.2);
}

/* Icon Colors */
.team-content i.fa-gamepad {
    color: #ff6b4a !important;
}

.team-content i.fa-mobile-alt {
    color: #0a84ff !important;
}

.team-content i.fa-chart-line {
    color: #ffb400 !important;
}

.team-content i.fa-code {
    color: #30b94d !important;
}

.team-content i.fa-chess {
    color: #0a84ff !important;
}

.team-content i.fa-building {
    color: #ff2d55 !important;
}

/* Remove old selectors */
.team-card:nth-child(1) .team-content i.fas,
.team-card:nth-child(2) .team-content i.fas,
.team-card:nth-child(3) .team-content i.fas,
.team-card:nth-child(4) .team-content i.fas,
.team-card:nth-child(5) .team-content i.fas,
.team-card:nth-child(6) .team-content i.fas {
    color: inherit;
}

.team-content i.fas {
    font-size: 1.2rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.team-card:hover .team-content i {
    transform: scale(1.2);
}

/* Team Detail Styles */
.team-hero {
    position: relative;
    overflow: hidden;
}

.team-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/pattern-bg.png");
    opacity: 0.05;
    pointer-events: none;
}

.team-hero .display-1 i {
    transition: all 0.3s ease;
}

.team-hero:hover .display-1 i {
    transform: scale(1.1);
}

.team-projects .card {
    background: white;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-projects .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-projects .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-projects .card:hover .card-img-top {
    transform: scale(1.05);
}

.team-jobs .job-card {
    background: white;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-jobs .job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-jobs .badge {
    font-weight: 500;
    padding: 8px 16px;
}

.team-jobs .badge.bg-danger {
    background: var(--primary-color) !important;
}

.team-jobs .badge.bg-primary {
    background: var(--secondary-color) !important;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #fff;
    padding-bottom: 4rem !important;
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
}

.feature-icon i {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2);
}

.text-purple {
    color: #6f42c1;
}

.feature-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-hover-effect {
    opacity: 1;
}

@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 1rem;
    }

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

/* About Hero Section */
.about-hero {
    position: relative;
    background: white;
    padding: 76px 0 80px;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    color: var(--text-color);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-hero .lead {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about-hero .d-flex {
    gap: 10px;
}

.about-hero .fa-2x {
    color: var(--primary-color);
}

.about-hero .h5 {
    color: var(--text-color);
    font-weight: 600;
}

.about-hero .small {
    color: #666;
}

.about-hero img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 991.98px) {
    .about-hero {
        padding: 76px 0 60px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .lead {
        font-size: 1.1rem;
    }

    .about-hero .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Stats Card */
.stats-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    animation: slideInUp 1s ease-out 0.4s backwards;
}

.stats-item {
    text-align: center;
}

.stats-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.stats-icon i {
    color: white;
    font-size: 1.5rem;
}

.stats-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--secondary-color);
}

.stats-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

/* Vision & Mission Cards */
.vision-card,
.mission-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.card-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    color: white;
    font-size: 1.8rem;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.value-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Timeline */
.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--secondary-hover));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 5px rgba(44, 62, 80, 0.1);
}

.timeline-content {
    width: 45%;
    margin-left: auto;
    padding-left: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-date {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.timeline-body {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-body:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.timeline-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.timeline-body p {
    color: #666;
    margin: 0 0 10px;
    line-height: 1.6;
}

.timeline-body p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero {
        padding: 20px 0;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .stats-card {
        position: relative;
        margin-top: 30px;
        left: 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    .timeline-progress {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
        padding-left: 20px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 0;
        text-align: left;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-card {
        flex-direction: column;
        gap: 20px;
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px var(--glass-shadow);
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, var(--gradient-start) 0.1rem, transparent 0), radial-gradient(circle at 75% 75%, var(--gradient-mid) 0.1rem, transparent 0), radial-gradient(circle at 50% 50%, var(--gradient-end) 0.1rem, transparent 0);
    background-size: 4rem 4rem;
    background-position: 0 0, 2rem 2rem, 1rem 1rem;
    animation: particleFloat 20s linear infinite;
    opacity: 0.1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 15px 30px;
}

.btn-gradient:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-gradient:hover:before {
    opacity: 1;
}

/* Floating Animation */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0% {
        background-position: 0 0, 2rem 2rem, 1rem 1rem;
    }
    100% {
        background-position: 4rem 4rem, 6rem 6rem, 5rem 5rem;
    }
}

/* Timeline Section */
.timeline-progress {
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.timeline-marker {
    width: 25px;
    height: 25px;
    border: 3px solid white;
    transition: all 0.3s ease;
}

.timeline-marker:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker:before {
    opacity: 1;
}

.timeline-body {
    padding: 30px;
    margin: 15px 0;
}

/* Footer Gradient */
.footer-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

/* Light Badge for Dark Backgrounds */
.light-badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .glass-card {
        padding: 20px;
    }

    .timeline-body {
        padding: 20px;
    }
}

/* Core Values Tabs */
.nav-pills {
    border: none;
    margin-bottom: 2rem;
}

.nav-pills .nav-link {
    color: var(--text-color);
    border: 1px solid #e9ecef;
    margin: 0 5px;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-pills .nav-link.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(241, 91, 39, 0.3);
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.25s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    transform: scale(1.05);
}

.value-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.25s ease;
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.value-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Timeline Styles */
.milestones {
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-color));
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 30px;
    height: 30px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.25s ease;
}

.timeline-item:hover .timeline-marker {
    background: var(--primary-color);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.timeline-content {
    width: 45%;
    margin-left: auto;
    padding-left: 50px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
    padding-right: 50px;
    text-align: right;
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(241, 91, 39, 0.2);
}

.timeline-body {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.timeline-item:hover .timeline-body {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.timeline-body h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-body p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        padding-left: 20px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        padding-right: 0;
        text-align: left;
    }

    .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
    }

    .nav-pills .nav-link {
        white-space: nowrap;
        padding: 8px 20px;
    }

    .value-card {
        margin-bottom: 20px;
    }
}

/* Tab Content Animation */
.tab-pane {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline Animation */
.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.5s ease-out forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}
.timeline-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

/* Featured Jobs Section */
.featured-jobs .btn-outline-primary {
    border-width: 2px;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.featured-jobs .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hot Position Icon Color */
.featured-jobs .card i.fas.fa-briefcase {
    color: var(--primary-color) !important;
}

.featured-jobs .card:hover i.fas.fa-briefcase {
    color: var(--primary-hover) !important;
}

.hero-section .btn i {
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.hero-section .btn:hover i {
    transform: translateX(5px);
    color: white !important;
}

.hero-section .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

/* Search Section Styles */
.search-section .form-control,
.search-section .form-select {
    border: 1px solid #ced4da;
    transition: none;
}

.search-section .form-control:focus,
.search-section .form-select:focus {
    box-shadow: none;
    border-color: #ced4da;
    outline: none;
    transform: none !important;
}

.search-section .input-group-text {
    border: 1px solid #ced4da;
    transition: none;
}

.search-section .input-group .form-control:focus + .input-group-text {
    border-color: #ced4da;
}

.search-section .input-group:focus-within .input-group-text {
    border-color: #ced4da;
}

.search-section .input-group,
.search-section .form-select,
.search-section .btn {
    height: 48px !important;
}

.search-section .form-control,
.search-section .form-select,
.search-section .btn {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 48px;
}

/* Job Detail Page Cards */
.job-detail-page .card {
    transition: none !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
}

.job-detail-page .card:hover {
    transform: none !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
}

.job-detail-page .job-card:hover {
    animation: none !important;
    transform: none !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
}

.job-detail-page .job-card::after {
    display: none !important;
}

.job-detail-page .job-card .card-body {
    transform: none !important;
}

.job-detail-page .job-info li i {
    transform: none !important;
}

.job-detail-page .job-card:hover .job-info li i {
    transform: none !important;
}

/* Badge HOT styles */
.badge.bg-danger {
    background-color: var(--primary-color) !important;
}

.badge.bg-danger:hover {
    background-color: var(--primary-hover) !important;
}

/* Ensure HOT badges in job cards have consistent styling */
.job-card .badge.bg-danger,
.featured-jobs .badge.bg-danger,
.similar-jobs .badge.bg-danger {
    background-color: var(--primary-color) !important;
}

/* Breadcrumb Styles */
.breadcrumb-item a {
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
}

/* Job Detail Hero Section */
.job-hero {
    padding-top: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.job-hero h1 {
    color: var(--text-color);
    line-height: 1.2;
}

.job-hero .badge {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Job Description Styles */
.job-description h4 {
    color: var(--text-color);
    position: relative;
    margin-bottom: 1.5rem;
}

.job-description h3 {
    color: var(--text-color);
    position: relative;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

/* .job-description h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
} */

.job-description h2 {
    color: var(--text-color);
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.job-description h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}
.job-description ul li {
    margin-bottom: 1rem;
}

.job-description ul li:last-child {
    margin-bottom: 0;
}

.job-description .fa-check-circle {
    font-size: 1.1rem;
}

/* Benefit Items */
.benefit-item {
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(239, 75, 37, 0.1);
}

.benefit-item h6 {
    color: var(--text-color);
    font-weight: 600;
}

/* Share Buttons */
.share-buttons .btn {
    transition: all 0.3s ease;
}

.share-buttons .btn:hover {
    transform: translateY(-2px);
}

/* Application Form */
.sticky-top {
    z-index: 1020;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(239, 75, 37, 0.15);
}

.form-control::placeholder {
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Similar Jobs Section */
.similar-jobs .job-card {
    transition: all 0.3s ease;
}

.similar-jobs .job-card:hover {
    transform: translateY(-5px);
}

.similar-jobs .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.similar-jobs .badge {
    font-size: 0.8rem;
    font-weight: 500;
}
.text-light-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}
.text-orange-500 {
    color: #ef4b25 !important;
}
.hover-orange:hover {
    color: #ef4b25 !important;
    transition: color 0.3s ease;
}
.social-hover:hover {
    color: #ef4b25 !important;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}
.social-hover {
    display: inline-block;
    transition: all 0.3s ease;
}
.footer-links li {
    transition: all 0.3s ease;
}
.footer-links li:hover {
    transform: translateX(5px);
}
.btn-see-jobs {
    width: 140px !important;
    padding: 10px 10px !important;
    border-radius: 50px !important;
    color: white !important;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.shadow-job {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12) !important;
}
.shadow-job:hover {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12) !important;
}