
    .header.sticky-bar
 {
   background: rgba(15, 23, 42, 0.95);
   backdrop-filter: blur(10px);
}
.header .main-menu li.dashboard a {
    border: 1px dashed #ffc107;
    padding: 5px 8px;
    border-radius: 4px;
}
.button-container {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 16px 60px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.3s ease;
        }

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

        .btn-apply {
            background: #FDB515;
            color: #000000;
            box-shadow: 0 4px 15px rgba(253, 181, 21, 0.3);
        }

        .btn-apply:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(253, 181, 21, 0.5);
            background: #FFC933;
        }

        .btn-hire {
            background: #2D2D2D;
            color: #FFFFFF;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .btn-hire:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
            background: #3D3D3D;
        }

        .arrow {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .btn:hover .arrow {
            transform: translateX(5px);
        }

        .btn:active {
            transform: translateY(-1px);
        }

        .header .main-header .header-right
 {
  min-width: 350px !important;
 }

 .header .main-menu li a:hover, .header .main-menu li a.active
 {
    color: #fdb515;
}
.header .main-menu li a
 {
  color:#fdb515 !important;
 }

  .hero-banner {
            position: relative;
            min-height: 700px;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(253, 181, 21, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(126, 34, 206, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .animated-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .shape1 {
            width: 300px;
            height: 300px;
            background: #FDB515;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape2 {
            width: 200px;
            height: 200px;
            background: #4F46E5;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape3 {
            width: 150px;
            height: 150px;
            background: #FDB515;
            bottom: 20%;
            left: 60%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 40px 20px;
            max-width: 1200px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-title .highlight {
            color: #FDB515;
            background: linear-gradient(135deg, #FDB515, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .search-container {
            background: white;
            border-radius: 60px;
            padding: 10px;
            display: flex;
            align-items: center;
            max-width: 900px;
            margin: 0 auto 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .search-input-group {
            display: flex;
            align-items: center;
            flex: 1;
            padding: 0 20px;
            border-right: 1px solid #e5e7eb;
        }

        .search-input-group:last-of-type {
            border-right: none;
        }

        .search-input-group select,
        .search-input-group input {
            border: none;
            outline: none;
            padding: 15px 10px;
            font-size: 16px;
            width: 100%;
            background: transparent;
            color: #333;
        }

        .search-btn {
            background: #4F46E5;
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .search-btn:hover {
            background: #4338CA;
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(79, 70, 229, 0.4);
        }

        .popular-searches {
            margin-top: 30px;
            color: white;
        }

        .popular-searches span {
            color: rgba(255, 255, 255, 0.8);
            margin-right: 15px;
        }

        .popular-searches a {
            color: #FDB515;
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .popular-searches a:hover {
            color: #FFD700;
            text-decoration: underline;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FDB515;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .search-container {
                flex-direction: column;
                border-radius: 20px;
            }

            .search-input-group {
                border-right: none;
                border-bottom: 1px solid #e5e7eb;
                width: 100%;
            }

            .search-btn {
                width: 100%;
                margin-top: 10px;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .footer {
            background: linear-gradient(135deg, #0F172A 0%, #1e3c72 50%, #2a5298 100%);
            color: #ffffff;
            padding: 80px 0 0 0;
            position: relative;
            margin-top: 50px;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(253, 181, 21, 0.5), transparent);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .footer-col-1,
        .footer-col-2,
        .footer-col-3,
        .footer-col-4,
        .footer-col-5,
        .footer-col-6 {
            padding: 0 15px;
            margin-bottom: 40px;
        }

        .footer-col-1 {
            flex: 0 0 25%;
            max-width: 25%;
        }

        .footer-col-2,
        .footer-col-3,
        .footer-col-4,
        .footer-col-5 {
            flex: 0 0 16.666%;
            max-width: 16.666%;
        }

        .footer-col-6 {
            flex: 0 0 25%;
            max-width: 25%;
        }

        .footer-col-1 img {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .footer-col-1 img:hover {
            transform: scale(1.05);
        }

        .mt-20 {
            margin-top: 20px;
        }

        .mb-20 {
            margin-bottom: 20px;
        }

        .font-xs {
            font-size: 14px;
            line-height: 1.6;
        }

        .color-text-paragraph-2 {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .icon-socials {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .icon-socials::before {
            font-size: 18px;
        }

      /*  .icon-facebook::before {
            content: 'f';
            font-weight: bold;
            color: #FDB515;
        }

        .icon-twitter::before {
            content: '𝕏';
            color: #FDB515;
        }

        .icon-linkedin::before {
            content: 'in';
            font-weight: bold;
            color: #FDB515;
        }*/

        .icon-socials:hover {
            background: #FDB515;
            border-color: #FDB515;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(253, 181, 21, 0.3);
        }

        .icon-socials:hover::before {
            color: #0F172A;
        }

        h6 {
            font-size: 18px;
            font-weight: 700;
            color: #FDB515;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        h6::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: #FDB515;
        }

        .menu-footer {
            list-style: none;
            padding: 0;
        }

        .menu-footer li {
            margin-bottom: 12px;
        }

        .menu-footer li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .menu-footer li a:hover {
            color: #FDB515;
            padding-left: 5px;
        }

        .footer-col-6 p {
            margin-bottom: 15px;
        }

        .mt-15 {
            margin-top: 15px;
            display: flex;
            gap: 10px;
        }

        .mt-15 a img {
            height: 40px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mt-15 a:hover img {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(253, 181, 21, 0.3);
        }

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

        .footer-bottom .row {
            align-items: center;
        }

        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .text-md-end {
            text-align: right;
        }

        .footer-bottom .footer-social {
            justify-content: flex-end;
            margin-top: 0;
        }

        .footer-bottom .footer-social a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-bottom .footer-social a:hover {
            color: #FDB515;
        }

        .mr-5 {
            margin-right: 5px;
        }

        .mr-30 {
            margin-right: 30px;
        }

        .ml-30 {
            margin-left: 30px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-col-1,
            .footer-col-2,
            .footer-col-3,
            .footer-col-4,
            .footer-col-5,
            .footer-col-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }

            .footer-col-1,
            .footer-col-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
                text-align: center !important;
            }

            .text-md-end {
                text-align: center !important;
                margin-top: 20px;
            }

            .footer-bottom .footer-social {
                justify-content: center;
                margin-top: 15px;
            }
        }

        @media (max-width: 576px) {
            .footer-col-2,
            .footer-col-3,
            .footer-col-4,
            .footer-col-5 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        /* Theme-Compatible Color Updates */

/* Section Titles */
.section-title {
    color: #1e3c72 !important;
}

/* Job Cards */
.card-grid-2 {
    border: 1px solid rgba(30, 60, 114, 0.1);
    transition: all 0.3s ease;
}

.card-grid-2:hover {
    border-color: #FDB515;
    box-shadow: 0 10px 30px rgba(253, 181, 21, 0.2);
}

.card-grid-2 h5 a {
    color: #1e3c72;
    transition: color 0.3s ease;
}

.card-grid-2 h5 a:hover {
    color: #FDB515;
}

/* Tags and Buttons */
.btn-tags-sm {
    background: rgba(30, 60, 114, 0.1);
    color: #1e3c72;
    border: 1px solid rgba(30, 60, 114, 0.2);
}

.btn-tags-sm:hover {
    background: #FDB515;
    color: #000000;
    border-color: #FDB515;
}

.card-text-price {
    color: #FDB515 !important;
    font-weight: 700;
}

/* Category Cards */
.card-grid-5 .content-bottom h6 {
    color: #ffffff !important;
}

.card-grid-5:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(253, 181, 21, 0.3);
}

/* Location Cards */
.card-image-top {
    border: 1px solid rgba(30, 60, 114, 0.1);
    transition: all 0.3s ease;
}

.card-image-top:hover {
    border-color: #FDB515;
    box-shadow: 0 10px 30px rgba(253, 181, 21, 0.2);
    transform: translateY(-5px);
}

.card-image-top h5 {
    color: #1e3c72;
}

.card-image-top h5:hover {
    color: #FDB515;
}

.lbl-hot {
    background: linear-gradient(135deg, #FDB515, #FFD700);
    color: #000000;
}

.lbl-hot.bg-green {
    background: linear-gradient(135deg, #4F46E5, #7e22ce);
    color: #ffffff;
}

/* Stats Counter */
.count {
    background: linear-gradient(135deg, #FDB515, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.color-brand-2 {
    color: #1e3c72 !important;
}

/* Company/Brand Items */
.item-5 {
    border: 1px solid rgba(30, 60, 114, 0.1);
    transition: all 0.3s ease;
}

.item-5:hover {
    border-color: #FDB515;
    box-shadow: 0 5px 20px rgba(253, 181, 21, 0.2);
    transform: translateY(-5px);
}

.item-5 h4 {
    color: #1e3c72;
}

/* Service Boxes */
.box-radius-8 {
    border: 1px solid rgba(30, 60, 114, 0.1);
    transition: all 0.3s ease;
}

.box-radius-8:hover {
    box-shadow: 0 10px 30px rgba(253, 181, 21, 0.2);
    transform: translateY(-5px);
}

.box-radius-8 h3 {
    color: #1e3c72;
}

.bg-urgent {
    background: linear-gradient(135deg, rgba(253, 181, 21, 0.1), rgba(255, 215, 0, 0.1));
}

.bg-9 {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.1), rgba(79, 70, 229, 0.1));
}

/* Blog Cards */
.card-grid-3 {
    border: 1px solid rgba(30, 60, 114, 0.1);
    transition: all 0.3s ease;
}

.card-grid-3:hover {
    border-color: #FDB515;
    box-shadow: 0 10px 30px rgba(253, 181, 21, 0.2);
    transform: translateY(-5px);
}

.card-grid-3 h5 a {
    color: #1e3c72;
}

.card-grid-3 h5 a:hover {
    color: #FDB515;
}

.btn-tag {
    background: linear-gradient(135deg, #FDB515, #FFD700);
    color: #000000;
    border: none;
}

.btn-tag:hover {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #ffffff;
}

/* Newsletter Section */
.box-newsletter {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    border-radius: 20px;
    padding: 60px 20px;
}

.text-md-newsletter {
    color: #ffffff !important;
}

.input-newsletter {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.input-newsletter:focus {
    border-color: #FDB515;
    background: #ffffff;
}

.btn-default {
    background: #FDB515 !important;
    color: #000000 !important;
    border: none;
}

.btn-default:hover {
    background: #FFD700 !important;
    transform: translateX(5px);
}

/* Tab Navigation */
.nav-tabs .nav-link {
    color: #1e3c72;
    border: 2px solid transparent;
}

.nav-tabs .nav-link.active {
    color: #FDB515;
    border-color: #FDB515;
    background: rgba(253, 181, 21, 0.1);
}

.nav-tabs .nav-link:hover {
    color: #FDB515;
    border-color: rgba(253, 181, 21, 0.3);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    background: #FDB515;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #1e3c72;
    color: #ffffff;
}

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

/* Links and Text */
.color-text-paragraph-2 {
    color: rgba(30, 60, 114, 0.7);
}

a {
    transition: all 0.3s ease;
}

/* Primary Buttons */
.btn-brand-1 {
    background: linear-gradient(135deg, #FDB515, #FFD700);
    color: #000000;
    border: none;
    font-weight: 700;
}

.btn-brand-1:hover {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.3);
}

/* Secondary Buttons */
.btn-arrow-right {
    color: #FDB515;
    border: 2px solid #FDB515;
    background: transparent;
}

.btn-arrow-right:hover {
    background: #FDB515;
    color: #000000;
}

/* Mobile Menu */
.mobile-header-wrapper-inner {
    background: linear-gradient(135deg, #0F172A 0%, #1e3c72 100%);
}

.mobile-menu li a {
    color: rgba(255, 255, 255, 0.9);
}

.mobile-menu li a:hover {
    color: #FDB515;
}

/* Burger Menu Icon */
.burger-icon span {
    background: #FDB515;
}

/* Modal */
.modal-content {
    border: 2px solid rgba(253, 181, 21, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.1), rgba(79, 70, 229, 0.1));
}

/* Form Controls */
.form-control:focus {
    border-color: #FDB515;
    box-shadow: 0 0 0 0.2rem rgba(253, 181, 21, 0.25);
}

/* Checkbox */
.cb-container input:checked ~ .checkmark {
    background-color: #FDB515;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(253, 181, 21, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(253, 181, 21, 0);
    }
}

.hover-up:hover {
    animation: pulse 1.5s ease-in-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 60, 114, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FDB515, #FFD700);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

/* Preloader */
#preloader-active {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
}

/* Selection Color */
::selection {
    background: #FDB515;
    color: #000000;
}

::-moz-selection {
    background: #FDB515;
    color: #000000;
}

/*about us*/
   .about-section {
            padding: 80px 0;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: #FDB515;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 2.5rem;
            color: #1e3c72;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-description {
            font-size: 1.1rem;
            color: rgba(30, 60, 114, 0.7);
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* First Row - About Us */
        .about-intro-row {
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.05), rgba(79, 70, 229, 0.05));
            border: 2px solid rgba(253, 181, 21, 0.2);
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }

        .about-intro-row::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #FDB515, #FFD700, #FDB515);
        }

        .about-intro-title {
            font-size: 2rem;
            color: #1e3c72;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }

        .about-intro-text {
            font-size: 1.1rem;
            color: rgba(30, 60, 114, 0.8);
            line-height: 1.8;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Second Row - Mission, Vision, Values */
        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .mvv-card {
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.05), rgba(79, 70, 229, 0.05));
            border: 2px solid rgba(253, 181, 21, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .mvv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #FDB515, #FFD700);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .mvv-card:hover::before {
            transform: scaleX(1);
        }

        .mvv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(253, 181, 21, 0.2);
            border-color: #FDB515;
        }

        .mvv-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FDB515, #FFD700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            box-shadow: 0 10px 30px rgba(253, 181, 21, 0.3);
        }

        .mvv-title {
            font-size: 1.5rem;
            color: #1e3c72;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .mvv-description {
            color: rgba(30, 60, 114, 0.7);
            line-height: 1.8;
            font-size: 15px;
            margin-bottom: 20px;
        }

        /* Core Values List */
        .values-list {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .value-item {
            display: flex;
            align-items: start;
            margin-bottom: 15px;
            padding: 12px 15px;
            background: rgba(253, 181, 21, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .value-item:hover {
            background: rgba(253, 181, 21, 0.15);
            transform: translateX(5px);
        }

        .value-icon {
            width: 25px;
            height: 25px;
            background: linear-gradient(135deg, #FDB515, #FFD700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            flex-shrink: 0;
            font-size: 12px;
        }

        .value-text {
            color: rgba(30, 60, 114, 0.8);
            font-size: 14px;
            line-height: 1.6;
        }

        .value-text strong {
            color: #1e3c72;
            font-weight: 700;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            margin-top: 50px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #FDB515, #FFD700);
            color: #000000;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(253, 181, 21, 0.3);
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .mvv-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-intro-row {
                padding: 40px 30px;
            }

            .about-intro-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .about-section {
                padding: 50px 0;
            }

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

            .section-title {
                font-size: 1.8rem;
            }

            .about-intro-row {
                padding: 30px 20px;
            }

            .about-intro-title {
                font-size: 1.5rem;
            }

            .mvv-card {
                padding: 30px 20px;
            }

            .mvv-icon {
                width: 60px;
                height: 60px;
                font-size: 30px;
            }

            .cta-button {
                padding: 15px 40px;
                font-size: 15px;
            }
        }
        #scrollUp{
            background-color:#000;
        }

 .container {
            max-width: 900px;
            margin: 0 auto;
        }

      .form-wrapper {
            background: #ffffff;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            animation: slideUp 0.6s ease-out;
        }

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

        .form-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .form-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(253, 181, 21, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .form-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .form-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            line-height: 1.6;
        }

        .form-body {
            padding: 50px 40px;
        }

        .form-section {
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e3c72;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #FDB515;
            display: inline-block;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-grid.full {
            grid-template-columns: 1fr;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-label {
            font-size: 14px;
            font-weight: 600;
            color: #1e3c72;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .required {
            color: #e74c3c;
        }

        .form-control, .form-select {
            border: 2px solid #e8ecf1;
            border-radius: 12px;
            padding: 14px 18px;
            font-size: 15px;
            transition: all 0.3s ease;
            width: 100%;
            background: #f8f9fa;
        }

        .form-control:hover, .form-select:hover {
            border-color: #cbd5e0;
            background: #ffffff;
        }

        .form-control:focus, .form-select:focus {
            border-color: #FDB515;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(253, 181, 21, 0.1);
            outline: none;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .resume-upload-section {
            border: 3px dashed #cbd5e0;
            border-radius: 16px;
            padding: 50px 30px;
            text-align: center;
            background: linear-gradient(135deg, rgba(253, 181, 21, 0.05) 0%, rgba(126, 34, 206, 0.05) 100%);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .resume-upload-section:hover {
            border-color: #FDB515;
            background: linear-gradient(135deg, rgba(253, 181, 21, 0.1) 0%, rgba(126, 34, 206, 0.1) 100%);
            transform: translateY(-2px);
        }

        .upload-icon {
            font-size: 64px;
            margin-bottom: 20px;
            animation: bounce 2s ease-in-out infinite;
        }

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

        .upload-text {
            color: #64748b;
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .upload-subtext {
            color: #94a3b8;
            font-size: 13px;
            margin-top: 10px;
        }

        .btn-upload {
            background: linear-gradient(135deg, #FDB515, #FFD700);
            color: #000000;
            border: none;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(253, 181, 21, 0.3);
        }

        .btn-upload:hover {
            background: linear-gradient(135deg, #FFD700, #FDB515);
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(253, 181, 21, 0.5);
        }

        .file-item {
            padding: 12px 18px;
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            border: 2px solid #28a745;
            border-radius: 10px;
            margin-top: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            animation: slideIn 0.3s ease-out;
        }

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

        .file-item span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: #155724;
        }

        .remove-file {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 24px;
            color: #721c24;
            transition: all 0.2s ease;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .remove-file:hover {
            background: rgba(114, 28, 36, 0.1);
            transform: rotate(90deg);
        }

        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 10px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .checkbox-item input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #FDB515;
        }

        .checkbox-item label {
            font-size: 14px;
            color: #475569;
            cursor: pointer;
            font-weight: 500;
        }

        .salary-range {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .salary-input {
            flex: 1;
        }

        .salary-separator {
            color: #64748b;
            font-weight: 600;
        }

        .btn-submit {
            background: linear-gradient(135deg, #1e3c72, #2a5298, #7e22ce);
            color: #ffffff;
            border: none;
            padding: 18px 60px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s ease;
            width: 100%;
            margin-top: 30px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
            position: relative;
            overflow: hidden;
        }

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

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

        .btn-submit:hover {
            background: linear-gradient(135deg, #7e22ce, #2a5298, #1e3c72);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(30, 60, 114, 0.6);
        }

        .btn-submit:active {
            transform: translateY(-1px);
        }

        .contact-badge {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
            padding: 16px 28px;
            border-radius: 50px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: #1e3c72;
            border: 3px solid #FDB515;
            z-index: 1000;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(253, 181, 21, 0.4);
            }
            50% {
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(253, 181, 21, 0);
            }
        }

        .phone-icon {
            color: #FDB515;
            font-size: 22px;
        }

        .success-message {
            display: none;
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            border: 2px solid #28a745;
            color: #155724;
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            text-align: center;
            font-weight: 600;
            animation: slideIn 0.5s ease-out;
        }

        .help-text {
            font-size: 12px;
            color: #94a3b8;
            margin-top: 5px;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .form-header {
                padding: 40px 25px;
            }

            .form-title {
                font-size: 2rem;
            }

            .form-subtitle {
                font-size: 1rem;
            }

            .form-body {
                padding: 35px 25px;
            }

            .resume-upload-section {
                padding: 40px 20px;
            }

            .contact-badge {
                bottom: 20px;
                right: 20px;
                padding: 12px 20px;
                font-size: 14px;
            }

            .salary-range {
                flex-direction: column;
                align-items: stretch;
            }

            .salary-separator {
                text-align: center;
            }
        }

        .contact-badge {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
            padding: 16px 28px;
            border-radius: 50px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: #1e3c72;
            border: 3px solid #FDB515;
            z-index: 1000;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(253, 181, 21, 0.4);
            }
            50% {
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(253, 181, 21, 0);
            }
        }

        .phone-icon {
            color: #FDB515;
            font-size: 22px;
        }

        .success-message {
            display: none;
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            border: 2px solid #28a745;
            color: #155724;
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            text-align: center;
            font-weight: 600;
            animation: slideIn 0.5s ease-out;
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .form-header {
                padding: 40px 25px;
            }

            .form-title {
                font-size: 2rem;
            }

            .form-subtitle {
                font-size: 1rem;
            }

            .form-body {
                padding: 35px 25px;
            }

            .upload-section {
                padding: 40px 20px;
            }

            .contact-badge {
                bottom: 20px;
                right: 20px;
                padding: 12px 20px;
                font-size: 14px;
            }
        }
    
/* Page Header Section */
.hire-page-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: -1;
}

/* Animated background overlay */
.hire-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(253, 181, 21, 0.15) 0%, transparent 60%);
    animation: rotateGlow 20s linear infinite;
}

/* Secondary overlay for depth */
.hire-page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(126, 34, 206, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Main Title */
.hire-page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

/* Subtitle */
.hire-page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hire-page-header {
        padding: 100px 0 60px;
    }
    
    .hire-page-title {
        font-size: 2.8rem;
    }
    
    .hire-page-subtitle {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .hire-page-header {
        padding: 80px 0 50px;
    }
    
    .hire-page-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }
    
    .hire-page-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .hire-page-header {
        padding: 60px 0 40px;
    }
    
    .hire-page-title {
        font-size: 1.8rem;
    }
    
    .hire-page-subtitle {
        font-size: 0.95rem;
    }
}

/* Optional: Add floating particles effect */
.hire-page-header .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}
    