    
      .header {
            padding: 20px 0px !important;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
        }

        .header.sticky-bar {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
        }

        .header .main-menu li a:hover,
        .header .main-menu li a.active {
            color: #fdb515;
        }

        .header .main-menu li a {
            color: #fdb515 !important;
        }

/* 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;
}
 .button-container {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 14px 40px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            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(-2px);
            box-shadow: 0 6px 20px rgba(253, 181, 21, 0.4);
            background: #FFC933;
        }

        .btn-hire {
            background: #2D2D2D;
            color: #FFFFFF;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .btn-hire:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            background: #3D3D3D;
        }
  /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #0F172A 0%, #1e3c72 50%, #2a5298 100%);
            color: #ffffff;
            padding: 60px 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-4,
        .footer-col-5 {
            padding: 0 15px;
            margin-bottom: 40px;
        }

        .footer-col-1 {
            flex: 0 0 25%;
            max-width: 25%;
        }

        .footer-col-2,
        .footer-col-4 {
            flex: 0 0 16.666%;
            max-width: 16.666%;
        }

        .footer-col-5 {
            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;
        }

        .icon-socials:hover {
            background: #FDB515;
            border-color: #FDB515;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(253, 181, 21, 0.3);
        }

        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;
        }
