:root {
    --color-orange: rgb(247, 115, 41);
    --color-orange-bg-hover: rgba(247, 115, 41, 0.2);
    --color-orange-bg-light: rgba(247, 115, 41, 0.08);
    --color-dark-orange: #bd5b23;
    --color-light : #D9D9D9C9;

    --bs-primary-rgb : 247, 115, 41;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
    overflow-x : hidden;
}

/* Enhanced scroll indicator animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-indicator {
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: scale(1.1);
}

.scroll-indicator:hover .scroll-arrow i {
    opacity: 1 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-1,
.heading-2,
.heading-3,
.heading-4 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.4;
}

.heading-1 {
    font-size: clamp(28px, 5vw, 55px);
}

.heading-2 {
    font-size: clamp(22px, 5vw, 40px);
}

.heading-3 {
    font-size: clamp(20px, 5vw, 30px);
}

.heading-4 {
    font-size: clamp(16px, 5vw, 24px);
}

.text-1 {
    font-size: clamp(14px, 2vw, 20px);
}

.btn {
    --bs-btn-font-size: clamp(12px, 2vw, 14px);
    --bs-btn-border-radius: 9999px;
    --bs-btn-padding-x: 28px;
    --bs-btn-padding-y: 8px;
    --bs-btn-font-weight: 500;
}

.btn-primary {
    --bs-btn-color: #000;
    --bs-btn-bg: var(--color-orange);
    --bs-btn-border-color: var(--color-orange);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: var(--color-dark-orange);
    --bs-btn-hover-border-color: var(--color-dark-orange);
    --bs-btn-focus-shadow-rgb: 189, 91, 35;
    --bs-btn-active-color: #000000;
    --bs-btn-active-bg: var(--color-dark-orange);
    --bs-btn-active-border-color: var(--color-dark-orange);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000000;
    --bs-btn-disabled-bg: var(--color-orange);
    --bs-btn-disabled-border-color: var(--color-orange);
}

.btn-secondary {
    --bs-btn-color: #000;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: var(--color-orange);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: var(--color-orange);
    --bs-btn-hover-border-color: var(--color-orange);
    --bs-btn-focus-shadow-rgb: 189, 91, 35;
    --bs-btn-active-color: #000000;
    --bs-btn-active-bg: var(--color-orange);
    --bs-btn-active-border-color: var(--color-orange);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000000;
    --bs-btn-disabled-bg: var(--color-orange);
    --bs-btn-disabled-border-color: var(--color-orange);
}

.page-banner{
    min-height: 500px;
    background-size: cover;
    background-color: #000;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 50px;
}

.page-banner::before{
    content: "";
    position: absolute;
    inset:0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(247, 115, 41, 0.3) 100%);
}

.page-banner > .container {
    position: relative;
    z-index: 2;
}

.page-banner.home{
    min-height: 600px;
}

.page-banner .heading-1 {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.page-banner .text-1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.talent-slider .swiper-slide{
    padding: 10px
}

.talent-slider-buttons,
.job-slider-buttons {
    position: relative;
    --swiper-navigation-size : 14px;
    --swiper-theme-color: white;
}

.talent-slider-buttons .swiper-button-next, 
.talent-slider-buttons .swiper-button-prev,
.job-slider-buttons .swiper-button-next,
.job-slider-buttons .swiper-button-prev{
    position: static;
    background: linear-gradient(135deg, #f77329 0%, #e55a1f 100%);
    border-radius: 50%;
    width: 50px;
    aspect-ratio : 1;
    height: auto;
    transition: all 300ms ease;
    border: none;
    box-shadow: 0 8px 20px rgba(247, 115, 41, 0.3);
}

.talent-slider-buttons .swiper-button-next:hover, 
.talent-slider-buttons .swiper-button-prev:hover,
.job-slider-buttons .swiper-button-next:hover,
.job-slider-buttons .swiper-button-prev:hover{
    background: linear-gradient(135deg, #e55a1f 0%, #d14a17 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(247, 115, 41, 0.4);
}

.job-slider .swiper-slide{
    padding: 10px 20px; 
}

.job-card{
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    border: 1px solid rgba(247, 115, 41, 0.1);
    transition: all 300ms ease;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(247, 115, 41, 0.3);
}

.section-padding {
    padding-top: 120px;
}

.section-padding.has-bg-color {
    padding-bottom: 120px;
    margin-top: 120px;
}

.footer {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: 120px;
}

.footer li {
    margin-bottom: 5px;
}

.footer-nav-link{
    font-size: 14px;
    text-decoration: none;
    --bs-link-color-rgb: 255, 255, 255;
}

.footer-nav-link:hover{
    --bs-link-color-rgb: 247, 115, 41;
}

.info-box{
    position: relative;
    min-height: 440px;
    background-position: center;
    background-size: cover;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap : 20px;
    overflow: hidden;
    border-radius: 50px;
}

.info-box::before {
    content:  "";
    position: absolute;
    inset : 0;
    background: black;
    opacity: 0.1
}

.info-box > * {
    position: relative;
}

.address{
    max-width: 400px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.bg-dark {
    --bs-dark-rgb: 0,0,0
}

.header .container-fluid,
.footer .container-fluid{
    max-width: 1600px;
}

.nav-link{
    color: white;
    text-decoration: none;

}

.header-logo{
    max-width: 80px;
}

.header {
    position: absolute;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.2);
    left: 0px;
    right: 0px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.125);
}

.section-header {
    margin-bottom: 50px;
}

.section-header .heading-2 {
    position: relative;
    display: inline-block;
}

.section-header .heading-2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f77329 0%, #e55a1f 100%);
    border-radius: 2px;
}

.section-header.text-center .heading-2::after {
    left: 50%;
    transform: translateX(-50%);
}

.info-card{
    border: none;
    text-align: center;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 300ms ease;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f77329 0%, #e55a1f 100%);
}

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

.card-info-image{
    width: 100px;
    aspect-ratio : 1;
    height: auto;
    background: linear-gradient(135deg, #f77329 0%, #e55a1f 100%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: auto;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(247, 115, 41, 0.3);
    transition: all 300ms ease;
}

.info-card:hover .card-info-image {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(247, 115, 41, 0.4);
}

.info-steps{
    background: linear-gradient(135deg, rgba(247, 115, 41, 0.05) 0%, rgba(247, 115, 41, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.info-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f77329' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.info-steps .heading-2 {
    max-width: 800px;
    margin-inline : auto;
}

.info-card {
    background: transparent;
}

header a:not(.btn):hover,
header a:not(.btn).active{
    color : var(--color-orange) !important;
}

.navbar-toggler-icon {
    filter: invert(100%);
}

.navbar-toggler{
    border-color: white;
}

.talent-card-link{
    text-decoration: none;
}

.form-group{
    margin-bottom: 20px;
}

.content {
    max-width: 900px !important;
    font-size: 18px;
    line-height: 1.6;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.partner-brands{
    padding-top: 50px;
}

.partner-brands img {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    object-fit: contain;
    max-height: 80px;
    transition: all 300ms ease;
}

.partner-brands img:hover {
    transform: scale(1.1);
}

@media screen and (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1400px;
    }

    .talent-card .card-body{
        padding: 28px 24px;
    }

    .talent-card .card-img-top{
        min-height: 300px;
        max-height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .page-banner.home,
    .page-banner{
        min-height: 300px;
    }
    .page-banner-icons-wrapper{
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .address {
        max-width: 100%;
    }

    .section-padding {
        padding-top: 80px;
    }
    
    .footer{
        margin-top: 80px;
    }
    
    .section-padding.has-bg-color {
        padding-bottom: 80px;
        margin-top: 80px;
    }
}

@media screen and (max-width: 575px) {
    .talent-card .card-img-top{
        min-height: 150px;
        max-height: 150px;
    }
    .talent-card .card-body{
        padding: 12px;
    }
}

 @media screen and (max-width : 768px){
    .contact-form > h2,
    .contact-form > span{
        text-align: center;
        display: block;
    }
    
    .contact-form > span{
        margin-bottom: 5px;
    }
    
    .contact-form .btn{
        width: 100%;
    }
}

.advance-filters-btn {
    display: none !important;
}

.close-filters-btn{
    display: none;
}

@media screen and (max-width : 992px) {
 
    .close-filters-btn{
        display: block;
        padding: 5px;
    }
    
    .close-filters-btn i {
        font-size: 20px;
    }
    
    body:has( .show-filters)::before{
        content: "";
        position: fixed;
        inset : 0;
        background: rgba(0,0,0, 0.2);
        z-index: 1;
        backdrop-filter : blur(10px);
        transition: all 200ms ease-in-out;
    }
    
    .advance-filters-btn {
        display: block !important;
    }
    
    .advance-filters{
        visibility: hidden;
        opacity: 0;
        transition: all 200ms ease-in-out;
    }
    
    .advance-filters.show-filters{
        visibility: visible;
        opacity: 1;
    }
    
    .advance-filters{
        position: fixed;
        z-index: 999;
        left: 20px;
        right: 20px;
        top: 10%;
    }
    
    .advance-filters > .d-flex{
        background: white;
        position: relative;
        z-index: 10;
        padding: 30px;
        border-radius: 15px;
    }
    
    .advance-filters .form-group {
        margin-bottom: 10px;
    }
}

.user-info{
    padding: 30px 20px !important;
    background-color: transparent !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.1) !important;
}

.user-info > *{
    position: relative !important;
    z-index: 10 !important;
}

.user-info::before{
    content: "" !important;
    position: absolute !important;
    inset : 0 !important;
    background: var(--color-orange) !important;
    z-index: 0 !important;
    opacity: 0.2 !important;
}

video {
    border-radius: 15px !important;
}

/* Enhanced Contact Inquiry Section */
.contact-inquiry {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-inquiry::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 115, 41, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.inquiry-content {
    position: relative;
    z-index: 2;
}

.inquiry-animation {
    margin-bottom: 30px;
}

.floating-icon {
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-dark-orange) 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(247, 115, 41, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-icon i {
    font-size: 2.5rem;
    color: white;
}

.inquiry-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

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

/* Ripple effect for buttons */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleAnimation 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.contact-features {
    position: relative;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 115, 41, 0.15);
}

.feature-icon {
    display: inline-block;
    padding: 15px;
    background: linear-gradient(135deg, var(--color-orange-bg-light) 0%, rgba(247, 115, 41, 0.1) 100%);
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--color-orange);
}

/* Loading states and performance enhancements */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Enhanced button interactions */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
    z-index: -1;
}

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

/* Enhanced focus states for accessibility */
.enhanced-focus:focus {
    outline: 3px solid var(--color-orange);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(247, 115, 41, 0.1);
}

/* Smooth transitions for all interactive elements */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Page loaded state */
body.loaded .home-featured-card {
    animation: cardSlideIn 0.8s ease-out forwards;
}

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

/* Enhanced hover effects */
.enhanced-hover {
    transition: all 0.3s ease;
}

.enhanced-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Parallax container */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Footer Wave and Enhanced Styles */
.footer-wave-section {
    position: relative;
    height: 100px;
    overflow: hidden;
    background: #f773298a;
    margin-top: -1px; /* Remove any gap */
}

.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    animation: waveFlow 8s ease-in-out infinite;
}

@keyframes waveFlow {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-25px); }
}

.wave-fill-1 {
    fill: rgb(247, 115, 41);
    animation: wave1 6s ease-in-out infinite;
}

.wave-fill-2 {
    fill: rgb(247, 115, 41);
    animation: wave2 8s ease-in-out infinite reverse;
}

.wave-fill-3 {
    fill: #f4f2f2;
    animation: wave3 10s ease-in-out infinite;
}

@keyframes wave1 {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(-10px) translateY(-5px); }
}

@keyframes wave2 {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(15px) translateY(-3px); }
}

@keyframes wave3 {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(-5px) translateY(-2px); }
}

.enhanced-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    border-top: none;
    margin-top: 0;
}

.enhanced-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-orange) 50%, transparent 100%);
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
}

.footer-logo {
    max-height: 80px;
    transition: transform 0.3s ease;
    filter: brightness(1.1);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-description {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.footer-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.footer-icon {
    color: var(--color-orange) !important;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(247, 115, 41, 0.05);
    padding-left: 15px;
    margin-left: -15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(247, 115, 41, 0.15) 0%, rgba(247, 115, 41, 0.05) 100%);
    border: 1px solid rgba(247, 115, 41, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-dark-orange) 100%);
    border-color: var(--color-orange);
    transform: scale(1.1);
}

.contact-item:hover .contact-icon i {
    color: white !important;
}

.contact-details {
    flex: 1;
}

.contact-label {
    color: #ecf0f1;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-text {
    color: #bdc3c7;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contact-link {
    color: var(--color-orange);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-contact-link:hover {
    color: #ffffff;
    text-decoration: underline;
    transform: translateX(3px);
}

.footer-nav-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    padding: 8px 0;
    border-radius: 5px;
}

.footer-nav-link:hover {
    color: var(--color-orange);
    transform: translateX(8px);
    background: rgba(247, 115, 41, 0.05);
    padding-left: 10px;
    margin-left: -10px;
}

.footer-nav-link i {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-nav-link:hover i {
    opacity: 1;
    color: var(--color-orange);
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(247, 115, 41, 0.15) 0%, rgba(247, 115, 41, 0.05) 100%);
    color: var(--color-orange);
    border: 1px solid rgba(247, 115, 41, 0.2);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon-link:hover {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-dark-orange) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 115, 41, 0.3);
    border-color: var(--color-orange);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(247, 115, 41, 0.2);
    background: rgba(0, 0, 0, 0.1);
}

.copyright-text {
    color: #bdc3c7;
    font-size: 0.85rem;
}

.brand-name {
    color: var(--color-orange);
    font-weight: 600;
}

.elite-badge {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-dark-orange) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(247, 115, 41, 0.3);
    transition: all 0.3s ease;
}

.elite-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 115, 41, 0.4);
}

@media (max-width: 768px) {
    .footer-address-section {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .address-icon {
        margin: 0 auto;
    }
    
    .footer-logo-section,
    .footer-links-section,
    .footer-social-section {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .floating-icon {
        padding: 15px;
    }
    
    .floating-icon i {
        font-size: 2rem;
    }
}

/* Movie Content and Stars Styles */
.movie-content {
    position: absolute;
    left: 100%;
    top: 0;
    height: 100%;
    width: 80%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    transform: translateX(20px);
}

.swiper-slide-active .movie-content {
    opacity: 1;
    transform: translateX(0);
}

.movie-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.movie-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc;
}

.movie-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.movie-stars i {
    color: #ffc107;
    font-size: 1rem;
}

.movie-genre {
    display: inline-block;
    background: var(--color-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .movie-content {
        width: 100%;
        left: 0;
        background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
        bottom: 0;
        top: auto;
        height: auto;
        min-height: 120px;
    }
    
    .swiper-slide-active .movie-content {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .movie-content {
        padding: 15px;
        min-height: 100px;
    }
    
    .movie-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .movie-content p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .movie-stars i {
        font-size: 0.9rem;
    }
}

/* Enhanced Info Steps Section */
.enhanced-info-steps {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.enhanced-info-steps::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 115, 41, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.enhanced-info-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    position: relative;
    border: none;
}

.enhanced-info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(247, 115, 41, 0.2);
}

.enhanced-info-card .card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-dark-orange) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(247, 115, 41, 0.3);
}

.enhanced-info-card .enhanced-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: 220px;
}

.enhanced-info-card .enhanced-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.enhanced-info-card:hover .enhanced-image img {
    transform: scale(1.1);
}

.enhanced-info-card .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 115, 41, 0.1) 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.enhanced-info-card:hover .image-overlay {
    opacity: 1;
}

.enhanced-info-card .hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(247, 115, 41, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.enhanced-info-card:hover .hover-icon {
    transform: translate(-50%, -50%) scale(1);
}

.enhanced-info-card .enhanced-body {
    padding: 25px;
    position: relative;
}

.enhanced-info-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.enhanced-info-card .card-content {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.enhanced-info-card .card-footer-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-dark-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.enhanced-info-card:hover .card-footer-accent {
    transform: scaleX(1);
}

/* Enhanced Featured Jobs Section */
.enhanced-featured-job {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.enhanced-featured-job .section-description {
    font-size: 1.1rem;
    margin-top: 8px;
}

.enhanced-featured-job .job-slider-controls {
    align-items: center;
}

.enhanced-featured-job .slider-nav-buttons {
    display: flex;
    gap: 10px;
    position: relative;
    --swiper-navigation-size: 14px;
    --swiper-theme-color: white;
}

.enhanced-featured-job .job-slider-button {
    width: 50px;
    height: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #f77329 0%, #e55a1f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 300ms ease;
    border: none;
    box-shadow: 0 8px 20px rgba(247, 115, 41, 0.3);
    position: static;
}

.enhanced-featured-job .job-slider-button:hover {
    background: linear-gradient(135deg, #e55a1f 0%, #d14a17 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(247, 115, 41, 0.4);
}

.enhanced-view-all-btn {
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.enhanced-view-all-btn:hover {
    background: var(--color-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 115, 41, 0.3);
}

.enhanced-job-card-wrapper {
    position: relative;
    height: 100%;
}

.enhanced-job-card-wrapper .job-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 115, 41, 0.95) 0%, rgba(189, 91, 35, 0.95) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.enhanced-job-card-wrapper:hover .job-card-overlay {
    opacity: 1;
}

.enhanced-job-card-wrapper .overlay-content {
    text-align: center;
    color: white;
}

.enhanced-job-card-wrapper .job-priority-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.enhanced-job-card-wrapper .quick-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.enhanced-job-card-wrapper .quick-action-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.enhanced-job-card-wrapper .quick-action-btn:hover {
    background: white;
    color: var(--color-orange);
    transform: translateY(-2px);
}

/* Enhanced Info Boxes Section */
.enhanced-info-boxes {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.enhanced-info-box {
    border-radius: 25px;
    padding: 50px 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

.enhanced-info-box .info-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    transition: all 0.4s ease;
}

.enhanced-info-box:hover .info-box-overlay {
    background: linear-gradient(135deg, rgba(247, 115, 41, 0.8) 0%, rgba(189, 91, 35, 0.6) 100%);
}

.enhanced-info-box .info-box-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.enhanced-info-box .info-box-icon {
    width: 80px;
    height: 80px;
    background: rgba(247, 115, 41, 0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.enhanced-info-box:hover .info-box-icon {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.enhanced-info-box .info-box-text {
    flex: 1;
}

.enhanced-info-box .info-box-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.enhanced-info-box .info-box-description {
    line-height: 1.6;
}

.enhanced-info-box .info-box-arrow {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.enhanced-info-box:hover .info-box-arrow {
    color: white;
    transform: translateX(10px);
}

.enhanced-info-box .info-box-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.enhanced-info-box .decoration-circle {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    position: relative;
}

.enhanced-info-box .decoration-dots::before,
.enhanced-info-box .decoration-dots::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.enhanced-info-box .decoration-dots::before {
    top: -20px;
    right: 10px;
}

.enhanced-info-box .decoration-dots::after {
    bottom: -20px;
    left: 10px;
}

.enhanced-info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Enhanced Footer Styles */
.enhanced-footer {
    background: #212529 !important;
    position: relative;
}

.enhanced-footer .footer-content {
    position: relative;
    z-index: 2;
}

.enhanced-footer .text-orange {
    color: var(--color-orange) !important;
}

.enhanced-footer .footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.enhanced-footer .footer-contact-link {
    color: var(--color-orange);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.enhanced-footer .footer-contact-link:hover {
    color: #fff;
    text-decoration: underline;
}

.enhanced-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.enhanced-footer .contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(247, 115, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enhanced-footer .contact-details {
    flex: 1;
}

.enhanced-footer .footer-nav-link {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.enhanced-footer .footer-nav-link:hover {
    color: var(--color-orange);
    transform: translateX(5px);
}

.enhanced-footer .footer-nav-link i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.enhanced-footer .social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(247, 115, 41, 0.1);
    color: var(--color-orange);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.enhanced-footer .social-icon-link:hover {
    background: var(--color-orange);
    color: white;
    transform: translateY(-3px);
}

.enhanced-footer .footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #495057;
}

.enhanced-footer .footer-badge .badge {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-dark-orange) 100%) !important;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-wave-section {
        height: 100px;
    }
    
    .footer-content {
        padding: 40px 0 30px;
    }
    
    .enhanced-info-card .enhanced-image {
        height: 180px;
    }
    
    .enhanced-info-card .enhanced-body {
        padding: 20px;
    }
    
    .enhanced-info-box {
        min-height: 300px;
        padding: 30px 25px;
    }
    
    .enhanced-info-box .info-box-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .enhanced-info-box .info-box-title {
        font-size: 1.5rem;
    }
    
    .enhanced-featured-job .job-slider-controls {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .enhanced-view-all-btn {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px 0;
    }
    
    .contact-item:hover {
        padding-left: 0;
        margin-left: 0;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .footer-nav {
        text-align: center;
    }
    
    .footer-nav-link:hover {
        transform: translateX(0);
        padding-left: 0;
        margin-left: 0;
    }
    
    .footer-social-icons {
        text-align: center;
        justify-content: center;
        display: flex;
        gap: 15px;
    }
    
    .footer-logo-section,
    .footer-contact-section,
    .footer-links-section {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .row > div {
        margin-bottom: 15px;
    }
    
    .enhanced-footer .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .enhanced-footer .footer-nav {
        text-align: center;
    }
    
    .enhanced-footer .footer-social-icons {
        text-align: center;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 16px 20px;
    z-index: 9999;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 4px solid var(--color-orange);
    max-width: 350px;
    min-width: 250px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c3e50;
    font-weight: 500;
}

.notification-content i {
    color: var(--color-orange);
    font-size: 1.2rem;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-info {
    border-left-color: #17a2b8;
}

.notification-info .notification-content i {
    color: #17a2b8;
}

/* Ripple Effect */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Enhanced Job Slider Pagination */
.job-slider-pagination {
    text-align: center;
    margin-top: 30px;
}

.job-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(247, 115, 41, 0.3);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.job-slider-pagination .swiper-pagination-bullet-active {
    background: var(--color-orange);
    transform: scale(1.3);
}

/* Quick Action Buttons Enhancements */
.quick-action-btn.saved {
    background: white !important;
    color: var(--color-orange) !important;
}

.quick-action-btn.saved i {
    color: var(--color-orange) !important;
}

/* Enhanced Loading States */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for better accessibility */
.enhanced-info-card:focus-within,
.enhanced-info-box:focus-within,
.job-slider-button:focus {
    outline: 3px solid var(--color-orange);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .enhanced-info-card,
    .enhanced-info-box {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .job-slider-button,
    .notification {
        display: none;
    }
}