
.header{
    padding: 20px 0px !important;
}


    .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: 10px;
            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;
    z-index: -9999;
}
.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-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;
        }

