/* ===== HERO slider ===== */
        .hero {
            position: relative;
            height: calc(100vh - 90px);
            overflow: hidden;
            /* margin-top: 89px; */
        }

        .carousel-item {
            height: calc(100vh - 90px);
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: zoom 4s ease-in-out forwards;
        }

        @keyframes zoom {
            0% {
                transform: scale(1);
            }

            80% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1.1);
            }
        }

        /* ===== CONTENT ===== */
        .slide-content {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            color: #fff;
            max-width: 650px;
        }

        .slide-content p {
            font-size: 20px;
            font-weight: 400;
            line-height: 1.4;
            letter-spacing: 1px;
            opacity: .1;
            display: block;
        }

        .slide-content h2 {
            font-size: 65px;
            font-weight: 700;
            line-height: 1.4;
            margin-top: 15px;
        }

        /* ===== TEXT ANIMATION ===== */
        .from-top {
            opacity: 0;
            transform: translateY(-90px);
            animation: topIn 2.6s cubic-bezier(.22, .61, .36, 1) forwards;
        }

        .from-bottom {
            opacity: 0;
            transform: translateY(90px);
            animation: bottomIn 2.7s cubic-bezier(.22, .61, .36, 1) forwards;
            animation-delay: .3s;
        }

        @keyframes topIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bottomIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== ARROWS ===== */
        .hero-nav {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
        }

        .hero-nav button {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 1px solid #fff;
            background: transparent;
            color: #fff;
            margin: 12px 0;
            transition: .3s;
        }

        .hero-nav button:hover {
            background: #293C89;
            border-color: #293C89;
        }

        /* ===== HERO slider end ===== */


        /* ===== MAIN SECTION WRAP ===== */
        .loan-wrap {
            position: relative;
            overflow: hidden;
            padding-bottom: 60px;
            background: #fff;
        }

        /* ===== TOP FEATURE STRIP ===== */
        .top-feature-strip {
            background: linear-gradient(90deg, rgba(9, 33, 61, 0.95), rgba(10, 48, 88, 0.95));
            position: relative;
            height: auto;
            /* padding-bottom: 20px; */
        }

        .top-feature-strip::after {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 1;
            pointer-events: none;
        }

        .feature-inner {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 22px;
            padding-top: 25px;
            flex-wrap: wrap;
        }

        .feature-item {
            position: relative;
            overflow: hidden;
            padding: 18px 20px;
            border-top: 4px solid #fff;
            border-top-left-radius: 6px;
            border-top-right-radius: 6px;
            display: flex;
            align-items: center;
            gap: 16px;
            height: auto;
            min-height: 130px;
            color: #fff;
            transition: color 0.3s ease;
            /* background: rgba(255,255,255,0.05); */
        }

        /* Pseudo element for hover white background */
        .feature-item::before {
            content: "";
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            z-index: 0;
            transition: top 0.35s ease;
        }

        /* Hover effect */
        .feature-item:hover::before {
            top: 0;
        }

        .feature-item .feature-text,
        .feature-item .feature-icon {
            position: relative;
            z-index: 1;
            /* above pseudo element */
            transition: color 0.35s ease;
        }

        /* Text & Icon colors on hover */
        .feature-item:hover .feature-text {
            color: #000;
            /* black text */
        }

        .feature-item:hover .feature-icon {
            color: var(--blue);
            /* blue icon */
        }

        /* Optional: subtle border-top on hover */
        .feature-item:hover {
            border-top: 4px solid #293C89;
        }

        .feature-icon {
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 32px;
            color: #293C89;
            flex-shrink: 0;
        }

        .feature-text {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
        }

        .feature-item:hover .feature-text {
            color: #000;
        }

        .feature-item:hover .feature-icon {
            color: var(--blue);
        }

        /* ===== CONTENT AREA ===== */
        .content-area {
            padding: 60px 0 0 0;
        }

        .intro-tag {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #6c757d;
            font-size: 14px;
            margin-bottom: 14px;
        }

        .intro-tag .mini-line {
            width: 38px;
            height: 2px;
            background: var(--blue);
            border-radius: 5px;
            margin-top: 2px;
        }

        .big-title {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.15;
            color: #0b1f33;
            margin-bottom: 18px;
        }

        .para {
            color: #6b7280;
            font-size: 15px;
            line-height: 1.8;
            max-width: 540px;
        }

        /* ===== MINI FEATURE CARDS ===== */
        .mini-feature {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 18px 16px;
            border: 1px solid #e9ecef;
            border-top: 3px solid #293C89;
            border-radius: 8px;
            background: transparent;
            transition: 0.3s ease;
        }

        .mini-feature:hover {
            background: #ffffff;
            border-color: #dbe7ff;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.10);
        }

        .mini-feature .circle-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #f1f7ff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #293C89;
            font-size: 28px;
            flex-shrink: 0;
            transition: 0.3s ease;
        }

        .mini-feature h6 {
            font-weight: 800;
            margin: 0 0 6px 0;
            color: #0b1f33;
            transition: 0.3s ease;
        }

        .mini-feature p {
            margin: 0;
            color: #6b7280;
            font-size: 14px;
            line-height: 1.6;
            max-width: 220px;
            transition: 0.3s ease;
        }

        .mini-feature:hover h6,
        .mini-feature:hover p {
            color: #000 !important;
        }

        .mini-feature:hover .circle-icon {
            background: #ffffff;
            border: 1px solid #293C89;
        }

        /* ===== CALCULATOR CARD (PERFECT RESPONSIVE) ===== */
        .calc-card {
            width: 100%;
            max-width: 410px;
            background: #fff;
            border-radius: 6px;
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-left: auto;
            margin-top: -190px;
            /* only desktop overlap */
        }

        /* Header fix: perfect center on all screens */
        .calc-header {
            background: #293C89;
            color: #fff;
            min-height: 130px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            text-align: center;
            position: relative;
            padding: 20px;
            line-height: 1.2;
        }

        .calc-header::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 18px solid transparent;
            border-right: 18px solid transparent;
            border-top: 18px solid #0b57a3;
        }

        .calc-body {
            padding: 30px 26px 26px 26px;
        }

        .calc-body label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
            color: #333;
        }

        .calc-body input,
        .calc-body select {
            width: 100%;
            height: 45px;
            padding: 0 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 16px;
            font-size: 14px;
            outline: none;
            transition: 0.2s;
        }

        .calc-body input:focus,
        .calc-body select:focus {
            border-color: #293C89;
            box-shadow: 0 0 0 2px rgba(7, 144, 216, 0.1);
        }

        .apply-loan-btn {
            display: inline-block;
            text-align: center;
            width: 100%;
            margin-top: 30px;
            background: #293C89;
            border: none;
            padding: 14px 12px;
            font-weight: 700;
            border-radius: 3px;
            color: #fff;
            transition: 0.25s;
        }

        .apply-loan-btn:hover {
            background: #152873;
        }

        .float-up {
            position: fixed;
            right: 22px;
            bottom: 22px;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #293C89;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            z-index: 999;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .feature-inner {
                justify-content: center;
            }
        }

        @media (max-width: 992px) {
            .calc-card {
                margin-top: 30px;
                /* overlap removed */
                max-width: 100%;
            }

            .big-title {
                font-size: 34px;
            }
        }

        @media (max-width: 768px) {
            .feature-inner {
                justify-content: center;
                gap: 16px;
            }
        }

        @media (max-width: 576px) {
            .feature-inner {
                flex-direction: column;
                align-items: stretch;
                gap: 14px;
            }

            .feature-item {
                width: 100%;
                max-width: 100%;
                min-width: auto;
                height: auto;
                padding: 16px 16px;
            }

            .big-title {
                font-size: 26px;
            }

            .calc-card {
                margin-top: 25px;
                border-radius: 8px;
            }

            .calc-body {
                padding: 22px 18px;
            }

            .calc-header {
                font-size: 18px;
                padding: 18px 14px;
            }
        }

        @media (max-width: 991px) {

            .slide-content {
                max-width: 100%;
                padding: 0 12px;
            }

            .slide-content p {
                font-size: 16px;
            }

            .slide-content h2 {
                font-size: 46px;
                line-height: 1.2;
            }

            .hero-nav {
                right: 12px;
            }

            .hero-nav button {
                width: 44px;
                height: 44px;
            }
        }

        @media (max-width: 576px) {

            .slide-content h2 {
                font-size: 34px;
            }

            .slide-content p {
                font-size: 14px;
            }

            .hero {
                height: 80vh;
            }

            .carousel-item {
                height: 80vh;
            }
        }
        
        /* ============ Our Loan SERVICES ================== */

        .service-title {
            font-size: 48px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
        }

        .service-desc {
            max-width: 850px;
            margin: 15px auto;
            font-style: italic;
            color: #444;
        }

        .credit-text {
            font-style: italic;
            margin-top: 20px;
        }

        /* ---------- CARD ---------- */
        .service-card {
            background: #fff;
            box-shadow: var(--shadow);
            padding: 50px 25px;
            height: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .service-card i {
            font-size: 52px;
            color: #293C89;
            margin-bottom: 20px;
        }

        .service-card-title {
            letter-spacing: 4px;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .service-card-desc {
            font-size: 14px;
            text-align: justify;
            margin-bottom: 20px;
        }

        a.apply-btn {
            text-decoration: none;
            border: 1px solid #293C89;
            background: transparent;
            color: #000;
            padding: 8px 26px;
            font-size: 14px;
            text-transform: uppercase;
            transition: 0.3s;
        }

        .apply-btn:hover {
            background: #293C89;
            color: #fff;
            border: 1px solid #000;
        }


        /* ---------- MOBILE (≤576px) ---------- */
        @media (max-width: 576px) {
            .service-title {
                font-size: 28px;
            }

        }

        /* ============ OUR LOAN SERVICES END ============== */

        /* ============= WHY CHOOSE US START =================== */
        .why-subtitle {
            font-size: 20px;
            color: #293C89;
            font-weight: 600;
            letter-spacing: 1px;
            text-decoration: underline;
        }

        .why-title {
            color: #000;
            font-size: 48px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
            letter-spacing: 1px;

        }

        .why-heading {
            font-size: 60px;
            font-weight: 700;
            color: #293C89;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .why-desc {
            font-size: 14px;
        }

        .custom-justify {
            text-align: justify;
        }

        .action-btn:hover {
            color: #293C89 !important;
            transition: 0.3s;
        }

        .vertical-divider {
            width: 2px;
            background: #d3d3d3;
            height: 100%;
        }

        .why-subtitle-head{
            color: #293C89;
        }

        @media (max-width:991px) {
            .vertical-divider {
                display: none;
            }

            .why-subtitle {
                font-size: 18px;
            }

            .why-title {
                font-size: 35px;
            }

            .why-heading {
                font-size: 40px;
            }

            .why-desc {
                font-size: 14px;
            }

        }

        @media (max-width: 576px) {

            .action-btn {
                font-size: 14px;
            }

        }


        /* =========== WHY CHOOSE US END =================== */

        /* ======= LOAN PROCESS START ========== */


        /* ================= LEFT CIRCLE ================= */

        .process-title {
            font-size: 48px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 576px) {
            .process-title {
                font-size: 28px;
            }

        }

        .process-wrapper {
            position: relative;
            width: 450px;
            height: 450px;
            margin: auto;
        }

        /* 🔵 Rotating Dash Circle */
        .dash-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px dashed #293C89;
            animation: rotateRing 18s linear infinite;
        }

        @keyframes rotateRing {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Center Circle */
        .center-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180px;
            height: 180px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-weight: 700;
            font-size: 22px;
            color: #293C89;
            animation: pulse 3s infinite;
            z-index: 2;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.3);
            }

            70% {
                box-shadow: 0 0 0 25px rgba(13, 110, 253, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
            }
        }

        /* Step Circles */
        .step-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 130px;
            height: 130px;
            margin: -65px;
            border-radius: 50%;
            background: #293C89;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 15px;
            font-weight: 600;
            z-index: 2;
        }

        /* Perfect 4 Direction Position */
        .step1 {
            transform: rotate(270deg) translate(200px) rotate(-270deg);
        }

        .step2 {
            transform: rotate(0deg) translate(200px) rotate(0deg);
        }

        .step3 {
            transform: rotate(90deg) translate(200px) rotate(-90deg);
        }

        .step4 {
            transform: rotate(180deg) translate(200px) rotate(-180deg);
        }

        /* ================= RIGHT SIDE ================= */

        .process-heading {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .step-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            background: #fff;
            padding: 25px;
            border-radius: 18px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            transition: all .4s ease;
        }

        .step-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        }

        .step-number {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: #293C89;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 20px;
        }

        .step-title {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .step-desc {
            font-size: 14px;
            color: #6c757d;
        }

        /* ================= TABLET ================= */

        @media (max-width:1200px) {

            .process-wrapper {
                width: 380px;
                height: 380px;
            }

            .center-circle {
                width: 150px;
                height: 150px;
                font-size: 18px;
            }

            .step-circle {
                width: 110px;
                height: 110px;
                margin: -55px;
                font-size: 14px;
            }

            .step1 {
                transform: rotate(270deg) translate(170px) rotate(-270deg);
            }

            .step2 {
                transform: rotate(0deg) translate(170px) rotate(0deg);
            }

            .step3 {
                transform: rotate(90deg) translate(170px) rotate(-90deg);
            }

            .step4 {
                transform: rotate(180deg) translate(170px) rotate(-180deg);
            }

        }


        /* ================= MOBILE RESPONSIVE ================= */

        @media(max-width:991px) {

            .process-heading {
                text-align: center;
                margin-bottom: 40px;
            }

            /* Remove desktop card */
            .step-item {
                background: transparent;
                box-shadow: none;
                padding: 0;
                position: relative;
                margin-bottom: 50px;
            }

            .step-item:hover {
                transform: none;
                box-shadow: none;
            }

            /* Timeline line */
            .step-item::before {
                content: "";
                position: absolute;
                left: 24px;
                top: 0;
                width: 3px;
                height: 100%;
                background: #293C89;
            }

            .step-number {
                margin-right: 20px;
                position: relative;
                z-index: 1;
            }

            /* Mobile card */
            .step-content {
                width: 100%;
                background: #fff;
                padding: 25px;
                border-radius: 18px;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
                transition: .4s;
            }

            .step-content:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            }

        }

        /* ======= LOAN PROCESS END ============ */

        /* ===== FAQ Section start ===== */

        .faq-title {
            color: #000;
            font-size: 48px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
            letter-spacing: 1px;
        }

        .faq-subtitle {
            color: #555;
            font-size: 16px;
            margin-bottom: 30px !important;
        }

        .accordion-item {
            border-radius: 8px;
            border: 1px solid #ddd !important;
            margin-bottom: 12px !important;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-button {
            font-weight: 600;
            font-size: 16px;
            color: #293C89;
            background-color: #fff;
            display: flex;
            align-items: center;
        }

        .accordion-button:not(.collapsed) {
            background-color: #e7f1ff;
            color: #293C89;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }

        .accordion-body {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
            background: #f9f9f9;
        }

        .accordion-button:hover {
            background-color: #f0f7ff;
            cursor: pointer;
        }

        .faq-icon {
            font-weight: 700;
            color: #293C89;
            margin-right: 10px;
            transition: transform 0.3s ease;
        }

        .accordion-button.collapsed .faq-icon {
            transform: rotate(0deg) !important;
        }

        .accordion-button:not(.collapsed) .faq-icon {
            transform: rotate(45deg) !important;
        }

        /* Responsive */
        @media (max-width:991px) {

            .faq-title {
                font-size: 40 px;
            }

            .faq-subtitle {
                font-size: 15px;
            }

            .accordion-button {
                font-size: 15px;
                padding: 15px;
            }

            .accordion-body {
                font-size: 14px;
                padding: 15px;
            }

        }

        @media (max-width:767.98px) {

            .faq-title {
                font-size: 28px;
                letter-spacing: 0.5px;
            }

            .faq-subtitle {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .accordion-button {
                font-size: 14px;
                padding: 14px;
            }

            .accordion-body {
                font-size: 13px;
                padding: 14px;
            }

        }

        @media (max-width:575px) {

            .faq-title {
                font-size: 22px;
            }

            .faq-subtitle {
                font-size: 13px;
            }

            .accordion-button {
                font-size: 13px;
                padding: 12px;
            }

            .accordion-body {
                font-size: 12px;
                line-height: 1.5;
            }

        }

        /* ===== FAQ Section end ===== */


        /* ============ CUTOMERS TESTIMONIAL CSS ====================== */

        .small-title {
            font-size: 14px;
            color: #555;
            text-align: center;
            display: inline-block;
            position: relative;
        }

        .small-title::after {
            content: "";
            width: 50px;
            height: 3px;
            background: #293C89;
            position: absolute;
            top: 8px;
            right: -60px;
        }

        .main-title {
            text-align: center;
            font-size: 44px;
            font-weight: 700;
            margin-top: 20px;
            margin-bottom: 20px;
            color: #102a43;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
        }


        /* slider */

        .testimonial-section {
            overflow: hidden;
            position: relative;
        }

        .slider {
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            gap: 24px;
            transition: transform .6s ease;
        }

        /* slide */

        .testimonial-slide {
            flex: 0 0 calc((100% - 48px)/3);
            padding: 40px 0px;
        }

        /* testimonial card */

        .testimonial-card {
            border: none;
            background: #f5f6f7;
            padding: 30px;
            border-left: 3px solid #1e73be;
            position: relative;
            min-height: 260px;
            border-radius: 0;
        }

        .testimonial-card .card-body {
            padding: 0;
        }

        /* text */

        .testimonial-text {
            font-style: italic;
            color: #6c757d;
            line-height: 1.8;
        }

        /* client */

        .client-name {
            color: #1e73be;
            font-weight: 700;
            margin-top: 20px;
        }

        .client-role {
            font-size: 14px;
            position: relative;
        }

        .client-name::after {
            content: "”";
            position: absolute;
            right: 0;
            /* bottom: -70px; */
            font-size: 120px;
            color: #7a869a;
        }

        /* image */

        .client-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            position: absolute;
            bottom: -35px;
            left: 30px;
            border: 4px solid #fff;
            overflow: hidden;

        }

        .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* dots */

        .slider-dots {
            display: flex;
            gap: 10px;
            justify-content: end;
            margin-top: 40px;
        }

        .slider-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #cfd6dd;
            cursor: pointer;
        }

        .slider-dots span.active {
            background: #293C89;
            width: 12px;
            height: 12px;
        }

        /* responsive */

        @media(max-width:991px) {

            /* section titles */
            .small-title {
                font-size: 14px;
            }

            .small-title::after {
                width: 30px;
                right: -35px;
            }

            .main-title {
                font-size: 25px;
            }

            .testimonial-slide {
                flex: 0 0 calc((100% - 24px)/2);
            }

            .slider-dots {
                justify-content: center;
            }

        }

        @media(max-width:767px) {

            .testimonial-slide {
                flex: 0 0 100%;
            }

        }

        /* ============ CUTOMERS TESTIMONIAL CSS END ====================== */

        /* === Partners Section Css === */
        .partners-wrapper {
            background: #fff;
          }
      
          .partners-container {
            background: #fff;
            /* padding: 30px 0; */
            width: 100%;
            margin: 0;
          }
      
          .partners-content {
            text-align: center;
            background: #fff;
            width: 100%;
            margin: 0;
          }
      
          .partners-heading {
            font-weight: 700;
            font-size: 3rem;
            margin-bottom: 50px;
            padding: 10px 0;
            letter-spacing: 1px;
            color: #222;
            position: relative;
            display: inline-block;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
          }
      
          /* === Slider Styles === */
          .partners-slider {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding: 15px 0;
          }
      
          .partners-track {
            display: flex;
            align-items: center;
            gap: 40px;
            transform: translateX(0);
            will-change: transform;
          }
      
          .partner-item {
            flex: 0 0 calc(25% - 30px);
            text-align: center;
            transition: transform 0.3s ease;
          }
      
          .partner-item:hover {
            transform: translateY(-8px);
          }
      
          .partner-image-box {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
          }
      
          .partner-item:hover .partner-image-box {
            transform: scale(1.1);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
          }
      
          .partner-image-box img {
            width: 70%;
            height: 70%;
            object-fit: contain;
          }
      
          .partner-name p {
            font-weight: 600;
            color: #333;
            font-size: 1rem;
            margin: 0;
            letter-spacing: 0.5px;
          }
      
          /* === Responsive === */
          @media (max-width: 992px) {
            .partner-item {
              flex: 0 0 calc(33.33% - 20px);
            }
          }
      
          @media (max-width: 768px) {
            .partner-item {
              flex: 0 0 calc(50% - 20px);
            }
            .partner-image-box {
              width: 90px;
              height: 90px;
            }
            .partner-image-box img {
              width: 60%;
              height: 60%;
            }
          }
      
          @media (max-width: 480px) {
            .partner-item {
              flex: 0 0 100%;
            }
          }
        /* === Partners Section End === */

        /*================ GET IN TOUCH CSS ===================*/

        .get-touch-section {
            height: 500px;
            background-image:
                linear-gradient(120deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85)),
                url("../assets/image/call-center1.png");
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        /* ===== FORM BOX ===== */
        .get-contact-form {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            max-width: 400px;
            width: 100%;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }

        /* ===== TITLE ===== */
        .get-contact-form h3 {
            font-weight: 700;
            color: #293C89;
            margin-bottom: 5px;
            /* 🔽 reduced */
        }

        .get-contact-form p {
            font-size: 13px;
            color: #666;
            margin-bottom: 18px;
            /* 🔽 reduced */
        }

        /* ===== CUSTOM INPUT ===== */
        .get-contact-form .form-control {
            border: none;
            border-bottom: 2px solid #ccc;
            border-radius: 0;
            padding: 8px 4px;
            /* 🔽 reduced height */
            font-size: 14px;
            box-shadow: none !important;
        }

        .get-contact-form .form-control:focus {
            border-color: #111;
            box-shadow: none;
        }

        .get-contact-form input::placeholder,
        .get-contact-form textarea::placeholder {
            color: #293C89;
            /* opacity:1; */
        }

        .get-contact-form textarea {
            resize: none;
        }

        /* ===== BUTTON ===== */
        .get-contact-form .btn-submit {
            background: #293C89;
            color: #fff;
            border: 1px solid #111;
            border-radius: 6px;
            padding: 8px;
            /* 🔽 reduced */
            font-size: 14px;
            transition: 0.3s;
        }

        .get-contact-form .btn-submit:hover {
            background: #000;
        }

        .btn-send i {
            font-size: 14px;
        }

        @media (min-width:1400px) {
            .get-contact-form {
                max-width: 420px;
            }
        }

        @media (max-width:991px) {
            .row.justify-content-end {
                justify-content: center !important;
            }
        }

        @media (max-width:767px) {
            .get-touch-section {
                height: auto;
                padding: 50px 15px;
            }

            .contact-form {
                max-width: 100%;
                padding: 22px;
            }
        }

        @media (max-width:480px) {
            .contact-form h3 {
                font-size: 19px;
            }

            .contact-form p {
                font-size: 12px;
            }
        }

        /*================ GET IN TOUCH CSS ===================*/

        