﻿.contact-breadcrumb {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: linear-gradient( 135deg, #071a35 0%, #102f57 45%, #163f73 100%);
}

/* Glow */

.cb-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cb-glow-1 {
    width: 300px;
    height: 300px;
    background: #ff3056;
    opacity: .15;
    top: -100px;
    left: -100px;
}

.cb-glow-2 {
    width: 350px;
    height: 350px;
    background: #4f8cff;
    opacity: .15;
    right: -120px;
    bottom: -120px;
}

/* Layout */

.cb-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cb-content {
    flex: 1;
    max-width: 650px;
}

.cb-tag {
    color: #ff3056;
    font-weight: 700;
    letter-spacing: 3px;
}

.cb-content h1 {
    color: #fff;
    font-size: 54px;
    line-height: 1.1;
    margin: 18px 0;
}

    .cb-content h1 span {
        color: #ff3056;
    }

.cb-content p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
}

/* Breadcrumb */

.cb-nav {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 25px;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
}

    .cb-nav a {
        color: #fff;
        text-decoration: none;
    }

    .cb-nav span {
        color: #ff3056;
    }

/* Image */

.cb-image {
    position: relative;
    flex: 0 0 450px;
}

.cb-image-box {
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

    .cb-image-box img {
        width: 100%;
        display: block;
    }

.cb-float-card {
    position: absolute;
    background: #fff;
    padding: 12px 18px;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.card-1 {
    top: 20px;
    left: -20px;
}

.card-2 {
    bottom: 20px;
    right: -20px;
}

/* Responsive */

@media(max-width:991px) {

    .contact-breadcrumb {
        padding: 70px 0;
        min-height: auto;
    }

    .cb-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cb-content {
        max-width: 100%;
    }

        .cb-content h1 {
            font-size: 40px;
        }

    .cb-image {
        flex: none;
        width: 100%;
        max-width: 450px;
    }

    .cb-float-card {
        display: none;
    }
}

@media(max-width:576px) {

    .cb-content h1 {
        font-size: 30px;
    }

    .cb-image-box {
        border-radius: 25px;
    }

    .cb-nav {
        font-size: 14px;
    }
}


/*====================================
CONTACT CONNECT SECTION
====================================*/

.contact-connect-sec {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient( 180deg, #ffffff 0%, #f8fbff 50%, #ffffff 100%);
}

/* Background Network */

.cc-network {
    position: absolute;
    inset: 0;
    background-image: radial-gradient( rgba(22,63,115,.05) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .45;
}

/* Glow */

.cc-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.cc-glow-1 {
    width: 350px;
    height: 350px;
    background: #ff3056;
    opacity: .08;
    top: -120px;
    left: -120px;
}

.cc-glow-2 {
    width: 400px;
    height: 400px;
    background: #4f8cff;
    opacity: .08;
    right: -120px;
    bottom: -120px;
}

/* Layout */

.cc-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 70px;
    align-items: center;
}

/* Left */

.cc-tag {
    color: #ff3056;
    font-weight: 700;
    letter-spacing: 3px;
}

.cc-content h2 {
    font-size: 54px;
    color: #163f73;
    line-height: 1.15;
    margin: 15px 0;
}

    .cc-content h2 span {
        color: #ff3056;
    }

.cc-content p {
    color: #666;
    line-height: 1.9;
}

/* Info Cards */

.cc-info-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cc-info-card {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(22,63,115,.06);
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
    transition: .4s;
}

    .cc-info-card:hover {
        transform: translateX(10px);
    }

.cc-icon {
    width: 70px;
    height: 70px;
    flex: none;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: linear-gradient( 135deg, #ff3056, #4f8cff);
}

.cc-info-text h4 {
    color: #163f73;
    margin-bottom: 6px;
}

.cc-info-text p {
    margin: 0;
}

/* Form */

.cc-form-box {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(22,63,115,.06);
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    overflow: hidden;
}

    .cc-form-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, #ff3056, #4f8cff);
    }

    .cc-form-box h3 {
        color: #163f73;
        font-size: 30px;
        margin-bottom: 25px;
    }

/* Inputs */

.cc-form-group {
    margin-bottom: 18px;
}

    .cc-form-group input,
    .cc-form-group textarea {
        width: 100%;
        padding: 15px 18px;
        border-radius: 14px;
        border: 1px solid rgba(22,63,115,.08);
        background: #f8fbff;
        outline: none;
        transition: .3s;
    }

        .cc-form-group input:focus,
        .cc-form-group textarea:focus {
            border-color: #ff3056;
            box-shadow: 0 0 0 4px rgba(255,48,86,.08);
        }

    .cc-form-group textarea {
        resize: none;
        height: 130px;
    }

/* Button */

.cc-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 16px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient( 135deg, #ff3056, #ff5d7d);
    transition: .3s;
}

    .cc-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(255,48,86,.25);
    }

/* Tablet */

@media(max-width:991px) {

    .cc-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cc-content {
        text-align: center;
    }

        .cc-content h2 {
            font-size: 40px;
        }

    .cc-form-box {
        max-width: 650px;
        margin: auto;
    }

    .cc-info-card {
        text-align: left;
    }
}

/* Mobile */

@media(max-width:576px) {

    .contact-connect-sec {
        padding: 80px 0;
    }

    .cc-content h2 {
        font-size: 30px;
    }

    .cc-form-box {
        padding: 25px;
    }

        .cc-form-box h3 {
            font-size: 24px;
        }

    .cc-info-card {
        flex-direction: column;
        text-align: center;
    }

    .cc-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .cc-info-text {
        text-align: center;
    }
}

/*=========================
NARAINSONS TEXT LOGO
=========================*/

.main-menu-three__logo {
    position: relative;
    z-index: 10;
}

    .main-menu-three__logo a {
        display: inline-block;
        position: relative;
        font-size: 34px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-decoration: none;
        color: #163f73;
        line-height: 1;
        transition: all .4s ease;
    }

        /* N Letter Highlight */

        .main-menu-three__logo a::first-letter {
            color: #ff3056;
        }

        /* Premium Underline */

        .main-menu-three__logo a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 55px;
            height: 4px;
            border-radius: 50px;
            background: linear-gradient( 90deg, #ff3056, #4f8cff);
            transition: .4s;
        }

        /* Glow Dot */

        .main-menu-three__logo a::before {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            right: -18px;
            top: 2px;
            background: #ff3056;
            box-shadow: 0 0 15px rgba(255,48,86,.45);
            animation: logoPulse 2.5s infinite;
        }

        .main-menu-three__logo a:hover {
            transform: translateY(-2px);
            text-shadow: 0 10px 25px rgba(22,63,115,.15);
        }

            .main-menu-three__logo a:hover::after {
                width: 100%;
            }

@keyframes logoPulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: .6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px) {

    .main-menu-three__logo a {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

        .main-menu-three__logo a::before {
            right: -14px;
            width: 8px;
            height: 8px;
        }
}

@media(max-width:576px) {

    .main-menu-three__logo a {
        font-size: 24px;
        letter-spacing: 1px;
    }

        .main-menu-three__logo a::after {
            width: 40px;
            height: 3px;
        }

        .main-menu-three__logo a::before {
            display: none;
        }
}



/*==================================
PREMIUM FOOTER
==================================*/

.premium-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #071b4d 0%, #0a2c73 100% );
    padding: 120px 0 30px;
}

/*==================================
GLOWS
==================================*/

.footer-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.footer-glow-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -150px;
    background: radial-gradient( circle, rgba(255,48,86,.18), transparent 70% );
}

.footer-glow-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -150px;
    background: radial-gradient( circle, rgba(93,109,255,.18), transparent 70% );
}

/*==================================
CTA
==================================*/

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 90px;
    padding: 45px;
    border-radius: 30px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
}

    .footer-cta h2 {
        color: #fff;
        font-size: 42px;
        margin-bottom: 10px;
    }

    .footer-cta p {
        color: #cbd5e1;
    }

.footer-cta-btns {
    display: flex;
    gap: 15px;
}

.cta-btn {
    padding: 16px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: .4s;
}

.loan-btn {
    background: #ff3056;
    color: #fff;
}

.partner-btn {
    background: #fff;
    color: #163f73;
}

.cta-btn:hover {
    transform: translateY(-5px);
}

/*==================================
GRID
==================================*/

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 50px;
}

/*==================================
BRAND
==================================*/

.footer-brand h3 {
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-brand span {
    color: #ff3056;
    font-size: 13px;
    letter-spacing: 2px;
}

.footer-about p {
    color: #dbeafe;
    line-height: 1.9;
    margin: 25px 0;
}

/*==================================
SOCIAL
==================================*/

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.08);
        color: #fff;
        transition: .4s;
    }

        .footer-social a:hover {
            transform: translateY(-6px) rotate(8deg);
            background: linear-gradient( 135deg, #ff3056, #5d6dff );
        }

/*==================================
HEADINGS
==================================*/

.footer-col h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
}

/*==================================
LINKS
==================================*/

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 16px;
    }

        .footer-col ul li a {
            color: #dbeafe;
            text-decoration: none;
            transition: .3s;
        }

            .footer-col ul li a:hover {
                color: #ff3056;
                padding-left: 6px;
            }

/*==================================
CONTACT
==================================*/

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #ff3056, #5d6dff );
    color: #fff;
}

.footer-contact span {
    display: block;
    color: white;
    font-size: 22px;
    margin-bottom: 4px;
}

.footer-contact strong {
    color: #fff;
    font-weight: 500;
}
.footer-contact p{
    color: #fff;
    font-size:15px;
}

/*==================================
BOTTOM
==================================*/

.footer-bottom {
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

    .footer-bottom p {
        color: #cbd5e1;
    }

/*==================================
HOVER
==================================*/

.footer-col {
    transition: .4s;
}

    .footer-col:hover {
        transform: translateY(-6px);
    }

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px) {

    .footer-cta {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-brand h3 {
        font-size: 42px;
    }
}

@media(max-width:768px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta h2 {
        font-size: 32px;
    }

    .footer-cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media(max-width:576px) {

    .premium-footer {
        padding: 80px 0 20px;
    }

    .footer-brand h3 {
        font-size: 34px;
    }

    .footer-cta {
        padding: 30px;
    }

        .footer-cta h2 {
            font-size: 26px;
        }
}