@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Inter", sans-serif;
}
a {
    text-decoration: none;
}
button {
    font-family: inherit;
}


.skf-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.skf-topbar {
    height: 40px;
    background: #182d4d;
    color: #fff;
}

.skf-topbar-inner {
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.skf-top-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.skf-top-info span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .2px;
}

.skf-top-info i {
    margin-right: 6px;
    color: #c49a4a;
    font-size: 12px;
}
.skf-top-right {
    display: flex;
    align-items: center;
}

.skf-top-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.skf-top-social a {
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.skf-top-social a:hover {
    color: #c49a4a;
    transform: translateY(-2px);
}
.skf-main-nav {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 3px 15px rgba(0,0,0,.04);
}

.skf-main-nav .navbar {
    height: 110px;
    padding: 0;
}
.skf-logo img {
    display: block;
    width: 210px;
    height: auto;
    max-height: 114px;
    object-fit: contain;
}

.skf-menu {
    height: 100%;
    align-items: center;
    gap: 2px;
}

.skf-menu .nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.skf-menu .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 14px !important;
    color: #272727;
    font-size: 15px;
    font-weight: 500;
    transition: color .25s ease;
}


.skf-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 2px;
    background: #b8862c;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.skf-menu .nav-link:hover,
.skf-menu .nav-link.active {
    color: #b8862c;
}
.skf-menu .dropdown-menu {
    margin-top: 0;
    padding: 8px 0;
    border: none;
    border-radius: 0;
    background: #fff;
    min-width: 210px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.skf-menu .dropdown-item {
    padding: 10px 18px;
    color: #333;
    font-size: 12px;
    transition: all .2s ease;
}

.skf-menu .dropdown-item:hover {
    background: #b8862c;
    color: #fff;
}

.skf-dropdown {
    position: relative !important;
}

.skf-dropdown > .nav-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.skf-dropdown-icon {
    font-size: 12px;
    font-weight: 700;
    color: #272727;
    margin-top: 2px;
    transition: all .25s ease;
}

.skf-dropdown-menu {
    position: absolute;
    top: 50px;
    left: 0;
    width: 235px;
    min-width: 235px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(24,45,77,.08);
    border-top: 3px solid #b8862c;
    box-shadow: 0 15px 35px rgba(24,45,77,.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
    z-index: 99999;
}

.skf-dropdown-menu li {
    width: 100%;
}

.skf-dropdown-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    color: #263238;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .1px;
    transition:
        color .25s ease,
        background .25s ease,
        padding-left .25s ease;
}


.skf-dropdown-menu li a::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 0;
    height: 2px;
    background: #b8862c;
    transform: translateY(-50%);
    transition: width .25s ease;
}

.skf-dropdown-menu li a:hover {
    padding-left: 28px;
    color: #b8862c;
    background: #faf8f3;
}

.skf-dropdown-menu li a:hover::before {
    width: 8px;
}

.skf-nav-apply {
    height: 43px;
    margin-left: 18px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #b8862c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
}

.skf-nav-apply i {
    font-size: 14px;
}

.skf-nav-apply:hover {
    background: #202b25;
    color: #fff;
}

.skf-main-nav .navbar-toggler {
    border: none;
    padding: 8px;
    outline: none;
    box-shadow: none;
}

.skf-main-nav .navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: #202b25;
}


.skf-slider {
    position: relative;
    width: 100%;
    height: 690px;
    margin-top: 116px;
    overflow: hidden;
}

.skf-slider-main {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.skf-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}
.skf-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.skf-slide-1 {
    background-image:
        linear-gradient(90deg,
            rgba(20,29,24,.82) 0%,
            rgba(20,29,24,.65) 35%,
            rgba(20,29,24,.28) 65%,
            rgba(20,29,24,.05) 100%
        ),
        url("../Images/assets/slide-1.jpg");
}


.skf-slide-2 {
    background-image:
        linear-gradient(
            90deg,
            rgba(20,29,24,.82) 0%,
            rgba(20,29,24,.65) 35%,
            rgba(20,29,24,.28) 65%,
            rgba(20,29,24,.05) 100%
        ),
        url("../Images/assets/slide-2.jpg");
}


.skf-slide-3 {
    background-image:
        linear-gradient(
            90deg,
            rgba(20,29,24,.82) 0%,
            rgba(20,29,24,.65) 35%,
            rgba(20,29,24,.28) 65%,
            rgba(20,29,24,.05) 100%
        ),
        url("../Images/assets/slide-3.jpg");
}


.skf-slide-content {
    max-width: 700px;
    padding-top: 25px;
}


.skf-slide-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #d0a858;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}


.skf-slide-label span {
    display: block;
    width: 35px;
    height: 1px;
    background: #d0a858;
}

.skf-slide-content h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -.8px;
}


.skf-slide-content h1 strong {
    display: block;
    color: #d0a858;
    font-weight: 700;
}


.skf-slide-content p {
    max-width: 530px;
    margin: 0 0 32px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.8;
}

.skf-slide-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.skf-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 21px;
    background: #b8862c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
}


.skf-slide-btn:hover {
    background: #fff;
    color: #202b25;
}

.skf-slide-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #c49a4a;
    padding-bottom: 5px;
    transition: all .25s ease;
}


.skf-slide-link i {
    margin-left: 8px;
    color: #d0a858;
}


.skf-slide-link:hover {
    color: #d0a858;
}

.skf-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c99a3a;
    background: rgba(0,0,0,.15);
    color: #fff;
    z-index: 30;
    cursor: pointer;
    transition: all .3s ease;
}


.skf-prev {
    left: 25px;
}

.skf-next {
    right: 25px;
}


.skf-arrow:hover {
    background: #b8862c;
    border-color: #b8862c;
}

.skf-slider-bottom {
    position: absolute;
    left: 0;
    bottom: 28px;
    width: 100%;
    z-index: 20;
}


.skf-slider-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skf-scroll-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.7);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
}


.skf-scroll-text span {
    display: block;
    width: 30px;
    height: 1px;
    background: #c49a4a;
}

.skf-slider-number {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}


.skf-slider-number strong {
    color: #d0a858;
    font-size: 18px;
    font-weight: 600;
}


.skf-slider-number span {
    display: block;
    width: 45px;
    height: 1px;
    background: rgba(255,255,255,.45);
}


.skf-slider-number small {
    font-size: 11px;
    color: rgba(255,255,255,.7);
}

@media (max-width: 991px) {
    .skf-dropdown {
        position: relative !important;
        width: 100%;
    }
    .skf-dropdown > .skf-dropdown-menu {
        position: absolute !important;
        top: 48px !important;
        left: 0 !important;
        width: 235px !important;
        min-width: 235px !important;
        margin: 0 !important;
        padding: 8px 0 !important;
        background: #fff !important;
        border: 1px solid rgba(24, 45, 77, 0.08) !important;
        border-top: 3px solid #b8862c !important;
        box-shadow: 0 15px 35px rgba(24, 45, 77, 0.13) !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        z-index: 99999 !important;
    }

    .skf-dropdown.mobile-open > .skf-dropdown-menu {
        display: block !important;
    }
    .skf-dropdown.mobile-open {
        margin-bottom: 105px !important;
    }
    .skf-dropdown.mobile-open:has(li:nth-child(4)) {
        margin-bottom: 190px !important;
    }
    .skf-dropdown-menu li {
        width: 100%;
    }
    .skf-dropdown-menu li a {
        display: flex !important;
        align-items: center;
        width: 100%;
        padding: 13px 20px !important;
        color: #263238 !important;
        background: #fff !important;
        font-size: 13px !important;
        font-weight: 600;
        text-decoration: none;
    }
    .skf-dropdown-menu li a:hover {
        color: #b8862c !important;
        background: #faf8f3 !important;
    }
    .skf-dropdown.mobile-open > .nav-link .skf-dropdown-icon {
        color: #b8862c;
        transform: rotate(180deg);
    }
}
@media (min-width: 992px) {

    .skf-dropdown:hover .skf-dropdown-icon {
        color: #b8862c;
        transform: rotate(180deg);
    }

}

@media (min-width: 992px) {

    .skf-dropdown:hover .skf-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}


@media (max-width: 1200px) {

    .skf-menu .nav-link {
        padding: 0 9px !important;
    }

    .skf-menu .nav-link::after {
        left: 9px;
        right: 9px;
    }

    .skf-nav-apply {
        margin-left: 10px;
        padding: 0 13px;
    }

    .skf-slide-content h1 {
        font-size: 52px;
    }

}


@media (max-width: 991px) {

    .skf-topbar {
        display: block !important;
        width: 100%;
        height: 38px !important;
        min-height: 38px !important;
        position: relative;
        z-index: 1001;
    }

    .skf-topbar-inner {
        height: 38px !important;
        min-height: 38px !important;
        padding: 0 15px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .skf-top-info {
        width: 100%;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .skf-top-info span {
        font-size: 10px;
        line-height: 1;
        white-space: nowrap;
    }

    .skf-top-info i {
        margin-right: 4px;
        font-size: 10px;
    }

    .skf-top-right {
        display: flex;
        align-items: center;
        height: 38px;
    }

    /* Main navigation comes AFTER topbar */
    .skf-main-nav {
        height: 76px;
        position: relative;
        z-index: 1000;
    }

    .skf-main-nav .navbar {
        height: 76px;
    }

    .skf-logo img {
        width: 145px;
        height: auto;
    }

    /* Mobile menu */
    .skf-main-nav .navbar-collapse {
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px 20px 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,.10);
        z-index: 999;
    }

    .skf-menu {
        height: auto;
        align-items: flex-start;
        gap: 0;
    }

    .skf-menu .nav-item {
        width: 100%;
        height: auto;
    }

    .skf-menu .nav-link {
        width: 100%;
        height: auto;
        padding: 13px 5px !important;
    }

    .skf-menu .nav-link::after {
        display: none;
    }

    .skf-menu .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border-left: 2px solid #b8862c;
        padding-left: 5px;
    }

    .skf-nav-apply {
        margin: 12px 0 0;
        width: 135px;
        height: 42px;
    }

    /* Slider starts after topbar + navbar */
    .skf-slider {
        margin-top: 0 !important;
        height: 600px;
    }

    .skf-slide {
        height: 600px;
    }

    .skf-slide-content {
        padding: 20px 50px;
    }

    .skf-slide-content h1 {
        font-size: 45px;
    }

    .skf-arrow {
        width: 38px;
        height: 38px;
    }
    .skf-top-social{
        gap: 7px;
    }
}


@media (max-width: 575px) {

    .skf-topbar {
        height: 30px !important;
        min-height: 30px !important;
    }

    .skf-topbar-inner {
        height: 30px !important;
        min-height: 30px !important;
        padding: 0 10px !important;
    }

    .skf-top-info {
        height: 30px;
        gap: 10px;
    }

    .skf-top-info span {
        font-size: 8px;
    }

    .skf-top-info i {
        font-size: 8px;
        margin-right: 2px;
    }

    /* Hide less important information on very small screens */
    .skf-top-info span:nth-child(n+3) {
        display: none;
    }

    .skf-top-right {
        height: 30px;
    }


    /* NAVBAR */
    .skf-main-nav {
        height: 84px;
    }

    .skf-main-nav .navbar {
        height: 84px;
    }

    .skf-logo img {
        width: 180px;
        max-width: 75vw;
    }

    .skf-main-nav .navbar-collapse {
        top: 84px;
    }


    /* SLIDER */
    .skf-slider {
        margin-top: 0 !important;
        height: 570px;
    }

    .skf-slide {
        height: 570px;
        background-position: center center;
    }

    .skf-slide-content {
        padding: 20px 35px;
    }

    .skf-slide-label {
        font-size: 8px;
        letter-spacing: 2px;
        margin-bottom: 18px;
    }

    .skf-slide-label span {
        width: 25px;
    }

    .skf-slide-content h1 {
        font-size: 35px;
        line-height: 1.12;
        margin-bottom: 20px;
    }

    .skf-slide-content p {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .skf-slide-actions {
        gap: 18px;
        flex-wrap: wrap;
    }

    .skf-slide-btn {
        padding: 11px 15px;
    }

    .skf-arrow {
        width: 34px;
        height: 34px;
        top: auto;
        bottom: 55px;
        transform: none;
    }

    .skf-prev {
        left: 20px;
    }

    .skf-next {
        right: 20px;
    }

    .skf-slider-bottom {
        bottom: 20px;
    }

    .skf-scroll-text {
        display: none;
    }

    .skf-slider-bottom-inner {
        justify-content: center;
    }
}

/* CTA::Start */
.cta-wrap{
    margin-top: -60px;
    z-index: 3;
    position: relative;
    background-color: #b8862c;
}
.cta-wrap-bottom{
    z-index: 5;
    position: relative;
    background-color: #b8862c;
}
.cta-content{
    padding: 40px 40px;
}
.cta-left{
    margin-left: 30px;
}
.cta-left h3{
    color: #fff;
    margin-bottom: 0;
}
.cta-left p{
    color: #fff;
    font-size: 16px;
}
.cta-align{
    display: flex;
   align-items: center;
}

@media (max-width: 986px){
    .cta-content{
        padding: 40px 0px !important;
    }
}
.left-graphic{
    position: absolute;
    left: 0;
    top: -150px;
    z-index: 1;
}
.left-graphic img{
    width: 100%;
}
.ct-wrap{
    position: relative;
}
.cta-btn{
    border: 2px solid #ffff;
    background-color: #b8862c;
    padding: 8px 16px;
    color: #fff;
}
.cta-right{
    text-align: end;
}
/* CTA::End */


/*What We Offer:Start*/
.sk-offers-section {
    padding: 100px 0;
}

.sk-offers-head {
    margin: 0 auto 60px;
    text-align: center;
}

.sk-offers-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.sk-offers-label span {
    width: 38px;
    height: 1px;
    background: #b8862c;
}

.sk-offers-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.sk-offers-head h2 {
    margin: 0 0 18px;
    color: #182d4d;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
}

.sk-offers-head h2 em {
    color: #b8862c;
    font-style: normal;
}

.sk-offers-intro {
    max-width: 650px;
    margin: 0 auto;
    color: #77736b;
    font-size: 14px;
    line-height: 1.8;
}

.sk-offer-card {
    position: relative;
    height: 100%;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e8e3d9;
    transition:transform 0.35s ease,box-shadow 0.35s ease,border-color 0.35s ease;
}

.sk-offer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #b8862c;
    transform: scaleX(0.18);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sk-offer-card:hover::before {
    transform: scaleX(1);
}

.sk-offer-card:hover {
    transform: translateY(-7px);
    border-color: #d8cfbd;
    box-shadow:0 20px 45px rgba(24, 45, 77, 0.10);
}

.sk-offer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.sk-offer-number {
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}


.sk-offer-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f3e9;
    color: #b8862c;
    font-size: 20px;
    border-radius: 50%;
    transition: background 0.35s ease,color 0.35s ease,transform 0.35s ease;
}

.sk-offer-card:hover .sk-offer-icon {
    background: #182d4d;
    color: #ffffff;
    transform: translateY(-2px);
}

.sk-offer-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #b8862c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sk-offer-body {
    flex: 1;
}

.sk-offer-body h3 {
    margin: 0 0 18px;
    color: #182d4d;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

.sk-offer-body p {
    margin: 0 0 13px;
    color: #77736b;
    font-size: 13.5px;
    line-height: 1.75;
}


.sk-offer-button {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid #ebe7df;
}

.sk-offer-button a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #182d4d;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.sk-offer-button a i {
    color: #b8862c;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.sk-offer-button a:hover {
    color: #b8862c;
}

.sk-offer-button a:hover i {
    transform: translate(4px, -3px);
}


@media (max-width: 991px) {

    .sk-offers-section {
        padding: 80px 0;
    }

    .sk-offers-head {
        margin-bottom: 45px;
    }

    .sk-offers-head h2 {
        font-size: 36px;
    }

    .sk-offer-card {
        min-height: 430px;
        padding: 28px;
    }

    .sk-offer-body h3 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {

    .sk-offers-section {
        padding: 60px 0;
    }

    .sk-offers-head {
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .sk-offers-label {
        gap: 10px;
        margin-bottom: 15px;
    }

    .sk-offers-label span {
        width: 25px;
    }

    .sk-offers-label p {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .sk-offers-head h2 {
        font-size: 29px;
        line-height: 1.25;
    }

    .sk-offers-intro {
        font-size: 13px;
        line-height: 1.7;
    }

    .sk-offer-card {
        min-height: auto;
        padding: 25px;
    }

    .sk-offer-top {
        margin-bottom: 25px;
    }

    .sk-offer-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .sk-offer-body h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .sk-offer-body p {
        font-size: 13px;
        line-height: 1.7;
    }

    .sk-offer-button {
        padding-top: 20px;
        margin-top: 10px;
    }
}

/*What We Offer:End*/


/* Vision Mission Aim::Start */
.skf-vma-section{
    padding: 100px 0;
    background: #10243d;
}
.skf-vma-heading{
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.skf-vma-label{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.skf-vma-label span{
    width: 32px;
    height: 1px;
    background: #b8862c;
}

.skf-vma-label p{
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.skf-vma-heading h2{
    margin: 0 0 20px;
    color: #fff !important;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.skf-vma-heading h2 em{
    color: #b8862c !important;
    font-weight: 600;
    font-style: normal;
}

.skf-vma-heading > p{
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255,255,255,0.75) !important;
    font-size: 15px;
    line-height: 1.8;
}
.skf-vma-card{
    position: relative;
    height: 100%;
    min-height: 390px;
    padding: 25px 27px 30px;
    background: #10243d;
    border: 1px solid rgba(184,134,44,0.55);
    overflow: hidden;
    transition: all .35s ease;
}
.skf-vma-card-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.skf-vma-icon{
    width: 70px;
    height: 70px;
    border: 2px solid #b8862c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8862c;
    font-size: 25px;
    transition: all .35s ease;
}
.skf-vma-number{
    color: rgba(255,255,255,.45);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all .35s ease;
}
.skf-vma-card-content{
    margin-top: 42px;
}

.skf-vma-card h3{
    margin: 0 0 15px;
    color: #fff !important;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 500;
    transition: all .35s ease;
}
.skf-vma-card p{
    margin: 0;
    color: rgba(255,255,255,.78) !important;
    font-size: 14px;
    line-height: 1.8;
    transition: all .35s ease;
}
.skf-vma-arrow{
    position: absolute;
    right: 27px;
    bottom: 27px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(184,134,44,.7);
    color: #b8862c;

    transition: all .35s ease;
}
.skf-vma-card:hover{
    background: #b8862c;
    border-color: #b8862c;
    transform: translateY(-7px);
}

.skf-vma-card:hover .skf-vma-icon{
    background: #10243d;
    border-color: #10243d;
    color: #fff;
}

.skf-vma-card:hover .skf-vma-number{
    color: rgba(255,255,255,.8);
}

.skf-vma-card:hover h3{
    color: #fff !important;
}

.skf-vma-card:hover p{
    color: rgba(255,255,255,.95) !important;
}

.skf-vma-card:hover .skf-vma-arrow{
    background: #10243d;
    border-color: #10243d;
    color: #fff;
}
@media (max-width: 991px){

    .skf-vma-section{
        padding: 80px 0;
    }

    .skf-vma-heading h2{
        font-size: 38px;
    }

    .skf-vma-card{
        min-height: 360px;
    }

}
@media (max-width: 767px){

    .skf-vma-section{
        padding: 65px 0;
    }

    .skf-vma-heading{
        margin-bottom: 40px;
    }

    .skf-vma-heading h2{
        font-size: 32px;
    }

    .skf-vma-heading > p{
        font-size: 14px;
    }

    .skf-vma-card{
        min-height: 350px;
        padding: 24px;
    }

    .skf-vma-icon{
        width: 62px;
        height: 62px;
        font-size: 22px;
    }

    .skf-vma-card-content{
        margin-top: 35px;
    }

    .skf-vma-card h3{
        font-size: 23px;
    }

}

/* Vision Mission Aim::End */


/* Why Choose Us::Start */
.skf-why-section{
    padding: 100px 0;
    background: #fff;
}
.skf-why-image{
    position: relative;
    padding-right: 35px;
}
.skf-why-image img{
    width: 100%;
    object-fit: cover;
    display: block;
}
.skf-why-image::after{
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: -12px;
    bottom: -12px;
    border-left: 3px solid #b8862c;
    border-bottom: 3px solid #b8862c;
    z-index: 1;
}
.skf-why-badge{
    position: absolute;
    right: 0;
    bottom: 35px;
    width: 120px;
    height: 120px;
    background: #10243d;
    border: 5px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.skf-why-badge span{
    color: rgba(255,255,255,.65);
    font-size: 9px;
    letter-spacing: 2px;
}

.skf-why-badge strong{
    color: #b8862c;
    font-size: 18px;
    letter-spacing: 1px;
    margin: 5px 0;
}
.skf-why-content{
    padding-left: 45px;
}

.skf-section-label{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.skf-section-label span{
    width: 35px;
    height: 1px;
    background: #b8862c;
}

.skf-section-label p{
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}
.skf-why-content h2{
    color: #10243d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 20px;
}
.skf-why-content h2 em{
    color: #b8862c;
    font-weight: 400;
    font-style: normal;
}
.skf-why-intro{
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 35px;
}
.skf-why-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 35px;
    border-top: 1px solid #e5e1d8;
}
.skf-why-item{
    display: flex;
    gap: 17px;
    padding: 25px 0;
    border-bottom: 1px solid #e5e1d8;
}
.skf-why-icon{
    flex: 0 0 48px;
    width: 48px;
    height: 48px;

    border: 1px solid #b8862c;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b8862c;
    font-size: 19px;

    transition: all .3s ease;
}
.skf-why-item:hover .skf-why-icon{
    background: #b8862c;
    color: #fff;
}
.skf-why-item h3{
    color: #10243d;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 7px;
}


.skf-why-item p{
    color: #777;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 991px){

    .skf-why-section{
        padding: 80px 0;
    }

    .skf-why-image{
        padding-right: 25px;
        margin-bottom: 60px;
    }

    .skf-why-image img{
        height: 500px;
    }

    .skf-why-content{
        padding-left: 0;
    }

}
@media (max-width: 767px){

    .skf-why-section{
        padding: 60px 0;
    }

    .skf-why-image{
        padding-right: 15px;
        margin-bottom: 55px;
    }

    .skf-why-image img{
        height: 420px;
    }

    .skf-why-badge{
        width: 120px;
        height: 120px;
        bottom: 25px;
    }

    .skf-why-badge strong{
        font-size: 15px;
    }

    .skf-why-content h2{
        font-size: 32px;
    }

    .skf-why-list{
        grid-template-columns: 1fr;
    }

    .skf-why-item{
        padding: 20px 0;
    }

}
/* Why Choose Us::End */


/* Product::Start */
.skf-home-products {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background-image:  linear-gradient(115deg, #1b478b87, #182d4dcc, #1419208c), url(../Images/assets/product-page/Product-main.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.skf-home-products::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -280px;
    right: -180px;
    border: 1px solid rgba(184, 134, 44, 0.25);
    border-radius: 50%;
}

.skf-home-products::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -190px;
    left: -150px;
    border: 1px solid rgba(184, 134, 44, 0.18);
    border-radius: 50%;
}

.skf-products-head {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.skf-products-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.skf-products-label span {
    width: 32px;
    height: 2px;
    background: #c99a3a;
}

.skf-products-label p {
    margin: 0;
    color: #d1a84e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.skf-products-head h2 {
    margin: 0;
    color: #fff;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 600;
}

.skf-products-head h2 em {
    color: #d0a246;
    font-style: normal;
}

.skf-products-head > p {
    max-width: 650px;
    margin: 18px auto 0;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.8;
}

.skf-product-preview {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255,255,255,0.16);
    border-left: 1px solid rgba(255,255,255,0.16);
}


.skf-preview-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 155px;
    padding: 25px 30px;
    border-right: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
    text-decoration: none;
    background: rgba(255,255,255,0.035);
    transition: all .35s ease;
}

.skf-preview-item:hover {
    background: rgba(184,134,44,0.14);
}

.skf-preview-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 22px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(201,154,58,0.35);
    border-radius: 50%;
    transition: all .35s ease;
}

.skf-preview-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    transition: transform .35s ease;
}

.skf-preview-item:hover .skf-preview-icon {
    background: #c99a3a;
    border-color: #c99a3a;
    transform: translateY(-3px);
}

.skf-preview-item:hover .skf-preview-icon img {
    transform: scale(1.08);
}

.skf-preview-item div:nth-child(2) span {
    display: block;
    margin-bottom: 4px;
    color: #c99a3a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.skf-preview-item h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    transition: color .3s ease;
}

.skf-preview-item:hover h3 {
    color: #d5aa50;
}

.skf-preview-item p {
    margin: 0;
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    line-height: 1.65;
}


.skf-preview-item > i {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c99a3a;
    border: 1px solid rgba(201,154,58,0.35);
    border-radius: 50%;
    font-size: 15px;
    font-style: normal;
    transition: all .3s ease;
}

.skf-preview-item:hover > i {
    background: #c99a3a;
    color: #fff;
    transform: translate(3px,-3px);
}

.skf-products-footer {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 38px;
}

.skf-products-footer a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #c99a3a;
    padding-bottom: 6px;
    transition: all .3s ease;
}

.skf-products-footer a span {
    color: #c99a3a;
    font-size: 18px;
    transition: transform .3s ease;
}

.skf-products-footer a:hover {
    color: #d1a84e;
}

.skf-products-footer a:hover span {
    transform: translateX(5px);
}

@media (max-width: 767px) {

    .skf-home-products {
        padding: 65px 0;
    }

    .skf-products-head h2 {
        font-size: 32px;
    }

    .skf-products-head > p {
        font-size: 13px;
    }

    .skf-product-preview {
        grid-template-columns: 1fr;
    }

    .skf-preview-item {
        min-height: 125px;
        padding: 20px;
    }

    .skf-preview-icon {
        width: 58px;
        height: 58px;

        margin-right: 16px;
    }

    .skf-preview-icon img {
        width: 32px;
        height: 32px;
    }

}

@media (max-width: 480px) {

    .skf-products-head h2 {
        font-size: 28px;
    }

    .skf-preview-item h3 {
        font-size: 17px;
    }

    .skf-preview-item p {
        font-size: 11px;
    }

}

/* Product::End */

/* Know Us::Start */
.know-wrap {
    padding: 100px 0;
    background: #faf9f6;
    overflow: hidden;
}
.know-row {
    align-items: center;
}
.know-image-wrap {
    position: relative;
    padding-right: 45px;
}
.know-image {
    position: relative;
    overflow: hidden;
    height: 560px;
}
.know-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.know-image:hover img {
    transform: scale(1.04);
}
.know-image::after {
    content: "";
    position: absolute;
    top: 25px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid #b8862c;
    z-index: 0;
}
.know-image img {
    position: relative;
    z-index: 1;
}
.know-year {
    position: absolute;
    left: -35px;
    bottom: 35px;
    z-index: 3;
    width: 125px;
    height: 125px;
    background: #b8862c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
.know-year span {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.know-year strong {
    font-size: 30px;
    line-height: 1.1;
    margin-top: 5px;
}
.know-content-wrap {
    padding-left: 35px;
}
.know-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.know-label span {
    width: 40px;
    height: 2px;
    background: #b8862c;
}
.know-content-wrap .know-label > p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.know-content-wrap h2 {
    font-size: 44px;
    line-height: 1.15;
    color: #182d4d;
    font-weight: 600;
    margin-bottom: 18px;
}
.know-content-wrap h2 em {
    color: #b8862c;
    font-style: normal;
}
.know-content-wrap p{
    max-width: 570px;
    margin: 0 0 16px;
    color: #707070;
    font-size: 14px;
    line-height: 1.85;
}
.know-subtitle {
    font-size: 21px;
    color: #39362f;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
}

.know-stats {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 30px;
    padding: 22px 0;
    border-top: 1px solid #ddd8cc;
    border-bottom: 1px solid #ddd8cc;
}
.know-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}
.know-stat strong {
    font-size: 30px;
    color: #b8862c;
    line-height: 1;
}
.know-stat span {
    font-size: 13px;
    line-height: 1.4;
    color: #6f6a5f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.know-divider {
    width: 1px;
    height: 40px;
    background: #d8d2c6;
}
.know-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 13px 22px;
    border: 1px solid #b8862c;
    color: #b8862c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.know-btn i {
    transition: transform 0.3s ease;
}
.know-btn:hover {
    background: #b8862c;
    color: #fff;
}
.know-btn:hover i {
    transform: translateX(5px);
}
@media (max-width: 991px) {

    .know-wrap {
        padding: 80px 0;
    }

    .know-image-wrap {
        padding-right: 25px;
        margin-bottom: 60px;
    }

    .know-content-wrap {
        padding-left: 0;
    }

    .know-content-wrap h2 {
        font-size: 42px;
    }

    .know-image {
        height: 500px;
    }

    .know-year {
        left: -15px;
    }
}

@media (max-width: 575px) {
    .know-wrap {
        padding: 60px 0;
    }

    .know-image-wrap {
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 50px;
    }
    .know-image {
        height: 380px;
    }

    .know-image::after {
        top: 15px;
        right: -12px;
    }

    .know-year {
        left: 0;
        bottom: 20px;
        width: 105px;
        height: 105px;
    }

    .know-year strong {
        font-size: 25px;
    }

    .know-content-wrap {
        padding: 0 10px;
    }

    .know-content-wrap h2 {
        font-size: 36px;
    }

    .know-subtitle {
        font-size: 18px;
    }

    .know-stats {
        gap: 15px;
    }

    .know-stat strong {
        font-size: 25px;
    }

    .know-divider {
        height: 35px;
    }
}

/* Know Us::End */

/* Services::Start */
.home-services {
    padding: 100px 0;
    background: #ffffff;
}
.home-services-head {
    text-align: center;
    margin-bottom: 55px;
}

.home-services-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.home-services-label span {
    width: 38px;
    height: 2px;
    background: #b8862c;
}

.home-services-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.home-services-head h2 {
    margin: 0;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.home-services-head h2 em {
    color: #b8862c;
    font-style: normal;
}

.home-services-intro {
    max-width: 650px;
    margin: 20px auto 0;
    color: #6f6a5f;
    font-size: 15px;
    line-height: 1.8;
}
.sk-service-card {
    position: relative;
    height: 100%;
    min-height: 310px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e4dfd5;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}
.sk-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: #b8862c;
    transition: width 0.35s ease;
}

.sk-service-card:hover::before {
    width: 100%;
}
.sk-service-card:hover {
    border-color: #d2c5a9;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 35, 31, 0.07);
}
.sk-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sk-card-number {
    color: #b8862c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.sk-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f0e1;
    color: #b8862c;
    font-size: 19px;
    transition: all 0.3s ease;
}

.sk-service-card:hover .sk-card-icon {
    background: #b8862c;
    color: #ffffff;
}
.sk-card-content {
    margin-top: 38px;
}
.sk-card-content h3 {
    margin: 0 0 12px;
    color: #182d4d;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.sk-card-content p {
    max-width: 330px;
    margin: 0;
    color: #77736b;
    font-size: 14px;
    line-height: 1.75;
}
.sk-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 25px;
    width: fit-content;
    color: #b8862c;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sk-card-link i {
    transition: transform 0.3s ease;
}

.sk-card-link:hover {
    color: #25231f;
}

.sk-card-link:hover i {
    transform: translateX(5px);
}
.sk-education-card {
    min-height: 390px;
}
.sk-course-links {
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
}
.sk-course-links .sk-card-link {
    width: 100%;
    min-height: 43px;
    margin: 0;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee9df;
    font-size: 12px;
    line-height: 1.4;
}

.sk-course-links .sk-card-link:first-child {
    border-top: 1px solid #e4dfd5;
}
.sk-course-links .sk-card-link span {
    display: flex;
    flex-direction: column;
    padding-right: 10px;
}
.sk-course-links .sk-card-link small {
    margin-top: 2px;
    color: #8a857c;
    font-size: 10px;
    font-weight: 500;
}
.sk-course-links .sk-card-link i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8862c;
    font-size: 10px;
    transition: all 0.3s ease;
}

.sk-course-links .sk-card-link:hover {
    color: #25231f;
}

.sk-services-bottom {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #ddd8cc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sk-services-bottom span {
    color: #6f6a5f;
    font-size: 14px;
}

.sk-services-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 3px;
    color: #182d4d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #b8862c;
}

.sk-services-bottom a i {
    color: #b8862c;
    transition: transform 0.3s ease;
}

.sk-services-bottom a:hover {
    color: #b8862c;
}

.sk-services-bottom a:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {

    .home-services {
        padding: 80px 0;
    }

    .home-services-head h2 {
        font-size: 40px;
    }

    .sk-service-card {
        min-height: 290px;
    }

    .sk-education-card {
        min-height: 390px;
    }
    .sk-services-bottom span{
        font-size: 11px;
    }
    .sk-services-bottom a{
        font-size: 11px;
    }

}

@media (max-width: 575px) {

    .home-services {
        padding: 60px 0;
    }

    .home-services-head {
        margin-bottom: 40px;
    }

    .home-services-head h2 {
        font-size: 34px;
    }

    .home-services-intro {
        padding: 0 10px;
        font-size: 14px;
    }

    .sk-service-card {
        min-height: 270px;
        padding: 25px;
    }

    .sk-card-content {
        margin-top: 30px;
    }

    .sk-card-content h3 {
        font-size: 19px;
    }

    .sk-card-content p {
        font-size: 13.5px;
    }
    .sk-education-card {
        min-height: 0;
    }

    .sk-course-links {
        margin-top: 25px;
        padding-top: 0;
    }

    .sk-course-links .sk-card-link {
        min-height: 46px;
        font-size: 12px;
    }

}
/* Main-services::End */


/*Product Section::Start*/

.home-products {
    position: relative;
    padding: 105px 0;
    background: #182d4d;
    overflow: hidden;
}

.home-products-intro {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.home-products-intro-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.home-products-intro-label span {
    width: 38px;
    height: 2px;
    background: #c49a4a;
}

.home-products-intro-label p {
    margin: 0;
    color: #c49a4a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.home-products-intro h2 {
    margin: 0;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.home-products-intro h2 em {
    color: #c49a4a;
    font-style: normal;
}
.home-products-intro > p {
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.8;
}

.product-card {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 425px;
    padding: 32px;
    background: #203b61;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: #c49a4a;
    transition: width 0.35s ease;
}

.product-card:hover::before {
    width: 100%;
}

.product-card:hover {
    background: #ffffff;
    border-color: #d7c49c;
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.20);
}

.product-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.product-number {
    color: #c49a4a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.product-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: #c49a4a;
    font-size: 20px;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.product-card:hover .product-icon {
    background: #f7f0e1;
    color: #b8862c;
    transform: translateY(-2px);
}

.product-category {
    margin-bottom: 9px;
    color: #c49a4a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.product-card h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
    transition: color 0.35s ease;
}

.product-card:hover h3 {
    color: #182d4d;
}

.product-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.75;
    transition: color 0.35s ease;
}

.product-card:hover p {
    color: #77736b;
}

.product-btn {
    width: 100%;
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    transition:
        color 0.35s ease,
        border-color 0.35s ease;
}


.product-card:hover .product-btn {
    color: #182d4d;
    border-top-color: #eee9df;
}

.product-btn i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.10);

    color: #c49a4a;

    font-size: 11px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


/* Icon hover */

.product-card:hover .product-btn i {
    background: #f7f0e1;
    color: #b8862c;
}

.product-btn:hover i {
    transform: translate(3px, -3px);
}
@media (max-width: 991px) {

    .home-products {
        padding: 85px 0;
    }

    .home-products-intro h2 {
        font-size: 40px;
    }

    .product-card {
        min-height: 420px;
    }

}

@media (max-width: 575px) {

    .home-products {
        padding: 65px 0;
    }

    .home-products-intro {
        margin-bottom: 45px;
    }

    .home-products-intro h2 {
        font-size: 33px;
    }

    .home-products-intro h2 em {
        display: block;
    }

    .home-products-intro > p {
        padding: 0 8px;
        font-size: 14px;
    }

    .product-card {
        min-height: 0;
        padding: 26px;
    }

    .product-card-top {
        margin-bottom: 25px;
    }

    .product-icon {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .product-card h3 {
        font-size: 22px;
    }

    .product-card p {
        font-size: 13.5px;
    }

    .product-btn {
        margin-top: 28px;
    }

}

.view-all-products {
    margin-top: 25px;
    text-align: end;
}

.view-all-products a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 1px solid #b8862c;
}

.view-all-products a i {
    color: #c49a4a;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.view-all-products a:hover {
    color: #c49a4a;
}

.view-all-products a:hover i {
    transform: translateX(5px);
}
@media (max-width: 575px) {

    .view-all-products {
        text-align: center;
        margin-top: 20px;
    }

}
/*Product Section::End*/

/*Product Intro Section::Start*/
.product-intro-section {
    padding: 100px 0;
    background: #f8f6f1;
}

.product-intro-content {
    max-width: 570px;
    padding-right: 30px;
}

.product-intro-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-intro-label span {
    display: block;
    width: 38px;
    height: 2px;
    background: #b8862c;
}

.product-intro-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.product-intro-content h1 {
    margin: 0 0 23px;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.product-intro-content h1 em {
    color: #b8862c;
    font-style: normal;
    font-weight: 700;
}

.product-intro-content > p {
    max-width: 570px;
    margin: 0 0 16px;
    color: #707070;
    font-size: 14px;
    line-height: 1.85;
}

.product-intro-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: visible;
    background: transparent;
}

.product-intro-image::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 100%;
    height: 100%;
    border: 1px solid #c49a4a;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

.product-intro-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
    transition: transform 0.5s ease;
}

.product-intro-image:hover img {
    transform: scale(1.02);
}

.product-intro-image::after {
    content: none !important;
    display: none !important;
}

.product-intro-badge {
    position: absolute;
   right: -15px;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 24px;
    background: #182d4d;
}

.product-intro-badge span {
    color: #c49a4a;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.product-intro-badge p {
    margin: 0;
    color: #ffffff;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.5px;
}

.product-intro-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 12px;
    padding-bottom: 7px;
    color: #182d4d;
    border-bottom: 1px solid #b8862c;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.product-intro-link i {
    color: #b8862c;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.product-intro-link:hover {
    color: #b8862c;
}

.product-intro-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {

    .product-intro-section {
        padding: 80px 0;
    }

    .product-intro-content {
        max-width: 100%;
        padding-right: 0;
    }

    .product-intro-content h1 {
        font-size: 42px;
    }

    .product-intro-image {
        height: 450px;
        margin-top: 10px;
    }

}
@media (max-width: 575px) {

    .product-intro-section {
        padding: 60px 0;
    }

    .product-intro-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .product-intro-content > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .product-intro-label {
        margin-bottom: 17px;
    }

    .product-intro-label span {
        width: 30px;
    }

    .product-intro-label p {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .product-intro-image {
        height: 320px;
        margin-top: 10px;
    }

    .product-intro-image::before {
        top: 10px;
        right: 10px;
    }

    .product-intro-badge {
        left: 0;
        bottom: 0;
        padding: 14px 18px;
        gap: 10px;
    }

    .product-intro-badge span {
        font-size: 25px;
    }

    .product-intro-badge p {
        font-size: 10px;
    }

}
@media (max-width: 375px) {

    .product-intro-section {
        padding: 50px 0;
    }

    .product-intro-content h1 {
        font-size: 30px;
    }

    .product-intro-image {
        height: 280px;
    }

    .product-intro-badge {
        padding: 12px 15px;
    }

    .product-intro-badge span {
        font-size: 22px;
    }

}
/*Product Intro Section::End*/



/*Mutual Fund:Start*/
.skf-mf-intro {
    padding: 100px 0;
    background:#f8f6f1;
}
.skf-mf-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.skf-mf-section-label span {
    display: block;
    width: 38px;
    height: 2px;
    background: #b8862c;
}

.skf-mf-intro-content .skf-mf-section-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.skf-mf-intro-content {
    padding-right: 35px;
}

.skf-mf-intro-content h2 {
    margin: 0 0 23px;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.skf-mf-intro-content h2 em {
    color: #b8862c;
    font-style: normal;
    font-weight: 700;
}

.skf-mf-intro-content p {
    max-width: 570px;
    margin: 0 0 16px;
    color: #707070;
    font-size: 14px;
    line-height: 1.85;
}
.skf-mf-intro-image {
    position: relative;
    height: 450px;
    margin-left: 15px;
    z-index: 1;
}

.skf-mf-intro-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.skf-mf-image-frame {
    position: absolute;
    top: 18px;
    right: -18px;
    width: 100%;
    height: 100%;
    border: 1px solid #b8862c;
    z-index: 0;
}

.skf-mf-intro-image::after {
    content: "";
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(24, 45, 77, 0.45),transparent);
    pointer-events: none;
}

@media (max-width: 991px) {

    .skf-mf-intro {
        padding: 80px 0;
    }

    .skf-mf-intro-content {
        padding-right: 0;
    }

    .skf-mf-intro-content h2 {
        font-size: 40px;
    }

    .skf-mf-intro-image {
        height: 450px;
        margin-left: 0;
        margin-top: 15px;
    }

    .skf-mf-image-frame {
        top: 15px;
        right: -15px;
    }

}
@media (max-width: 767px) {

    .skf-mf-intro {
        padding: 65px 0;
    }

    .skf-mf-section-label {
        margin-bottom: 16px;
    }

    .skf-mf-intro-content h2 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .skf-mf-intro-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .skf-mf-intro-image {
        height: 380px;
        margin: 15px 10px 0 0;
    }

    .skf-mf-image-frame {
        top: 12px;
        right: -12px;
    }

}
@media (max-width: 575px) {
    .skf-mf-intro {
        padding: 55px 0;
    }

    .skf-mf-section-label {
        gap: 10px;
    }

    .skf-mf-section-label span {
        width: 32px;
        height: 2px;
    }

    .skf-mf-section-label p {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .skf-mf-intro-content h2 {
        font-size: 30px;
    }

    .skf-mf-intro-content p {
        font-size: 13.5px;
    }

    .skf-mf-intro-btn {
        padding: 12px 18px;
        font-size: 12px;
    }

    .skf-mf-intro-image {
        height: 300px;
        margin-right: 8px;
    }

    .skf-mf-image-frame {
        top: 8px;
        right: -8px;
    }

}
/*Mutual Fund:End*/

/*Mutual Fund Option:Start*/

.skf-mf-help {
    padding: 90px 0;
    background: #182d4d;
}

.skf-mf-help-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.skf-mf-help-heading .skf-mf-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.skf-mf-help-heading .skf-mf-section-label span {
    width: 38px;
    height: 2px;
    background: #b8862c;
}

.skf-mf-help-heading .skf-mf-section-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.skf-mf-help-heading h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
}

.skf-mf-help-heading h2 em {
    color: #b8862c;
    font-style: normal;
}

.skf-mf-help-heading > p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.85;
}
.skf-mf-help-card {
    height: 100%;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.13);
    transition: all 0.3s ease;
}

.skf-mf-help-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(184, 134, 44, 0.65);
    transform: translateY(-5px);
}
.skf-mf-help-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.skf-mf-help-top > span {
    color: #b8862c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.skf-mf-help-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(184, 134, 44, 0.12);
    color: #b8862c;
    font-size: 17px;
    transition: all 0.3s ease;
}

.skf-mf-help-card:hover .skf-mf-help-top i {
    background: #b8862c;
    color: #ffffff;
}

.skf-mf-help-card small {
    display: block;
    margin-bottom: 8px;
    color: #b8862c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.skf-mf-help-card h3 {
    min-height: 48px;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.skf-mf-help-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.75;
}

@media (max-width: 991px) {

    .skf-mf-help {
        padding: 75px 0;
    }

    .skf-mf-help-heading {
        margin-bottom: 45px;
    }

    .skf-mf-help-heading h2 {
        font-size: 38px;
    }

    .skf-mf-help-card {
        padding: 28px 23px;
    }

}

@media (max-width: 767px) {

    .skf-mf-help {
        padding: 60px 0;
    }

    .skf-mf-help-heading {
        margin-bottom: 35px;
    }

    .skf-mf-help-heading h2 {
        font-size: 32px;
    }

    .skf-mf-help-heading > p {
        font-size: 13.5px;
    }

    .skf-mf-help-card {
        padding: 25px 22px;
    }

    .skf-mf-help-card h3 {
        min-height: auto;
        font-size: 17px;
    }

}

@media (max-width: 575px) {

    .skf-mf-help {
        padding: 50px 0;
    }

    .skf-mf-help-heading h2 {
        font-size: 29px;
    }

    .skf-mf-help-heading .skf-mf-section-label {
        gap: 9px;
    }

    .skf-mf-help-heading .skf-mf-section-label span {
        width: 30px;
    }

    .skf-mf-help-heading .skf-mf-section-label p {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .skf-mf-help-card {
        padding: 23px 20px;
    }

    .skf-mf-help-card p {
        font-size: 12px;
    }

}

.skf-mf-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
}

.skf-mf-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 13px;
    color: #b8862c;
    border: 1px solid rgba(184, 134, 44, 0.55);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
}

.skf-mf-buttons a i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.skf-mf-buttons a:hover {
    background: #b8862c;
    border-color: #b8862c;
    color: #ffffff;
}

.skf-mf-buttons a:hover i {
    transform: translate(2px, -2px);
}


.skf-mf-help-card {
    height: 100%;
    min-height: 410px;
}

@media (max-width: 575px) {

    .skf-mf-buttons {
        margin-top: 22px;
    }

    .skf-mf-buttons a {
        padding: 8px 12px;
        font-size: 10px;
    }

}
/*Mutual Fund Option:End*/

/*Goal Based Solution:Start*/

.skf-goal-section {
    padding: 60px 0;
}

.skf-goal-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.skf-goal-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.skf-goal-section-label span {
    width: 38px;
    height: 2px;
    background: #b8862c;
}

.skf-goal-section-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.skf-goal-heading h2 {
    margin: 0 0 18px;
    color: #182d4d;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
}

.skf-goal-heading h2 em {
    color: #b8862c;
    font-style: normal;
}

.skf-goal-heading > p {
    max-width: 650px;
    margin: 0 auto;
    color: #77736b;
    font-size: 14px;
    line-height: 1.85;
}

.skf-goal-card {
    position: relative;
    height: 100%;
    min-height: 570px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e4dfd5;
    transition: all 0.35s ease;
}

.skf-goal-card:hover {
    transform: translateY(-7px);
    border-color: #b8862c;
    box-shadow: 0 15px 35px rgba(24, 45, 77, 0.10);
}

.skf-goal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.skf-goal-top > span {
    color: #b8862c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}


.skf-goal-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f0e1;
    color: #b8862c;
    font-size: 19px;
    transition: all 0.3s ease;
}

.skf-goal-card:hover .skf-goal-icon {
    background: #b8862c;
    color: #ffffff;
}


.skf-goal-card small {
    display: block;
    margin-bottom: 9px;
    color: #b8862c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1.5;
}

.skf-goal-card h3 {
    min-height: 48px;
    margin: 0 0 17px;
    color: #182d4d;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 600;
}


.skf-goal-card p {
    margin: 0 0 13px;
    color: #6f6a5f;
    font-size: 12.5px;
    line-height: 1.75;
}


.skf-goal-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 20px;
    padding: 13px 14px;
    background: #faf9f6;
    border-left: 3px solid #b8862c;
}

.skf-goal-highlight span {
    color: #77736b;
    font-size: 10px;
    line-height: 1.4;
}

.skf-goal-highlight strong {
    color: #b8862c;
    font-size: 13px;
    font-weight: 700;
}


.skf-goal-buttons {
    display: flex;
    gap: 10px;
}

.skf-goal-buttons a {
    flex: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 9px 12px;

    color: #182d4d;
    background: transparent;

    border: 1px solid #182d4d;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;

    transition: all 0.3s ease;
}

.skf-goal-buttons a:hover {
    color: #ffffff;
    background: #182d4d;
    border-color: #182d4d;
}

.skf-goal-button a{
    border: 1px solid #182d4d;
    padding: 9px 12px;
    text-decoration: none;
    color: #10243d;
    font-size: 11px;
    font-weight: 700;
    background: transparent;
    letter-spacing: 0.8px;
}
.skf-goal-button a:hover {
    color:#ffffff;
    background:#182d4d;
    border-color:#182d4d;
}
@media (max-width: 991px) {

    .skf-goal-solutions {
        padding: 75px 0;
    }

    .skf-goal-heading {
        margin-bottom: 45px;
    }

    .skf-goal-heading h2 {
        font-size: 38px;
    }

    .skf-goal-card {
        min-height: 540px;
        padding: 27px 23px;
    }

}


@media (max-width: 767px) {

    .skf-goal-solutions {
        padding: 60px 0;
    }

    .skf-goal-heading {
        margin-bottom: 35px;
    }

    .skf-goal-heading h2 {
        font-size: 32px;
    }

    .skf-goal-heading > p {
        font-size: 13.5px;
    }

    .skf-goal-card {
        min-height: auto;
        padding: 25px 22px;
    }

    .skf-goal-card h3 {
        min-height: auto;
        font-size: 18px;
    }

}

@media (max-width: 575px) {

    .skf-goal-solutions {
        padding: 50px 0;
    }

    .skf-goal-heading h2 {
        font-size: 29px;
    }

    .skf-goal-section-label {
        gap: 9px;
    }

    .skf-goal-section-label span {
        width: 30px;
    }

    .skf-goal-section-label p {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .skf-goal-card {
        padding: 23px 20px;
    }

    .skf-goal-card p {
        font-size: 12px;
    }

    .skf-goal-buttons {
        gap: 8px;
    }

    .skf-goal-buttons a {
        font-size: 10px;
    }

}
/*Goal Based Solution:End*/

/*Uti Mutual Fund Slider:Start*/
.skf-uti-section {
    width: 100%;
    padding: 60px 0;
    background: #f8f6f1;
    overflow: hidden;
}

.skf-uti-head {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 45px;
    padding: 0 20px;
    text-align: center;
}

.skf-uti-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.skf-uti-label span {
    width: 38px;
    height: 2px;
    background: #b8862c;
}

.skf-uti-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.skf-uti-head h2 {
    margin: 0;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.skf-uti-head h2 em {
    color: #b8862c;
    font-style: normal;
}

.skf-uti-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.skf-uti-track {
    display: flex;
    width: 100%;
    transform: translateX(0);
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.skf-uti-slide {
    flex: 0 0 100%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.skf-uti-image {
    width: 500px;
    max-width: calc(100% - 100px);
    padding: 10px;
    background: #ffffff;
    border: 1px solid #b8862c;
    border-radius: 4px;
    box-shadow:0 8px 25px rgba(24, 45, 77, 0.16);
    box-sizing: border-box;
}

.skf-uti-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.skf-uti-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid #b8862c;
    border-radius: 50%;
    background: #b8862c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease,color 0.3s ease,border-color 0.3s ease,transform 0.3s ease;
}


.skf-uti-prev {
    left: 18px;
}

.skf-uti-next {
    right: 18px;
}


@media (max-width: 991px) {

    .skf-uti-section {
        padding: 75px 0 80px;
    }

    .skf-uti-head {
        margin-bottom: 35px;
    }

    .skf-uti-head h2 {
        font-size: 30px;
    }

    .skf-uti-image {
        width: 600px;
        max-width: calc(100% - 90px);
    }

    .skf-uti-arrow {
        width: 42px;
        height: 42px;
    }

    .skf-uti-prev {
        left: 12px;
    }

    .skf-uti-next {
        right: 12px;
    }
}


@media (max-width: 767px) {

    .skf-uti-section {
        padding: 65px 0 70px;
    }

    .skf-uti-head {
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .skf-uti-label {
        gap: 8px;
    }

    .skf-uti-label span {
        width: 25px;
    }

    .skf-uti-label p {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .skf-uti-head h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .skf-uti-image {
        width: 520px;
        max-width: calc(100% - 70px);
        padding: 8px;
    }

    .skf-uti-arrow {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .skf-uti-prev {
        left: 8px;
    }

    .skf-uti-next {
        right: 8px;
    }
}


@media (max-width: 575px) {

    .skf-uti-section {
        padding: 55px 0 65px;
    }

    .skf-uti-head h2 {
        font-size: 23px;
    }

    .skf-uti-image {
        width: 430px;
        max-width: calc(100% - 55px);
        padding: 7px;
    }

    .skf-uti-arrow {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .skf-uti-prev {
        left: 6px;
    }

    .skf-uti-next {
        right: 6px;
    }

}

/*Uti Mutual Fund Slider:End*/


/* Whychoose Us::Start */
.whychoose-wrap{
    padding: 80px 0;
    background-color: #faf7ef;
    background-size: cover;
    background-position: center,center;
}
.whychoose-head h2{
    font-size: 40px;
    color: #b8862c;
    font-weight: 700;
}
.why-choose-image img{
    width: 100%;
}
.whychoose-content h6{
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.6px;
    font-weight: 500;
    text-transform: capitalize;
}
.whychoose-content p{
    font-size: 16px;
    color: #6f6a5f;
    line-height: 22px;
    letter-spacing: 1px;
}
.why-bottom p{
    letter-spacing: 1px;
    font-size: 16px;
    color: #6f6a5f;
}
.why-bottom{
    margin-bottom: 50px;
}
.why-li li h5{
    font-size: 18px;
}
.why-li{
    padding-left: 0;
}
.why-li li{
    list-style: none;
    display: flex;
}
.why-li li p{
    font-size: 14px;
    color: #6f6a5f;
}
.why-li li i{
    color: #b8862c;
}
/* Whychoose Us::End */

/*Home Loan::Start*/
.skf-loan-intro {
    padding: 95px 0;
    background: #fff;
}

.skf-loan-intro-image {
    position: relative;
    padding-right: 35px;
}

.skf-loan-intro-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.skf-loan-image-tag {
    position: absolute;
    right: 0;
    bottom: 25px;
    padding: 18px 22px;
    background: #182d4d;
    color: #fff;
    border: 5px solid #fff;
}

.skf-loan-image-tag span {
    display: block;
    margin-bottom: 5px;
    color: #d0a858;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.skf-loan-image-tag strong {
    font-size: 15px;
    font-weight: 500;
}

.skf-loan-intro-content {
    padding-left: 45px;
}

.skf-section-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
}

.skf-section-label span {
    width: 28px;
    height: 2px;
    background: #b8862c;
}

.skf-section-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.skf-loan-intro-content h2 {
    margin: 0 0 23px;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.skf-loan-intro-content h2 em {
    color: #b8862c;
    font-style: normal;
    font-weight: 700;
}
.skf-loan-intro-content > p {
    max-width: 570px;
    margin: 0 0 16px;
    color: #707070;
    font-size: 14px;
    line-height: 1.85;
}

.skf-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 13px 22px;
    border: 1px solid #b8862c;
    color: #b8862c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.skf-text-btn i {
    transition: transform 0.3s ease;
}
.skf-text-btn:hover {
    background: #b8862c;
    color: #fff;
}
.skf-text-btn:hover i {
    transform: translateX(5px);
}
@media (max-width: 991px) {
.skf-loan-intro-content{
    padding-top:60px;
    padding-left:0
}
.skf-loan-intro{
    padding:45px 0;
}
}

/*Home Loan::End*/


/* Calculator::Start */
.calculator-wrap {
    padding: 75px 0;
    background-color: #f8f6f1;
}
.calc-left {
    padding: 20px 45px 20px 0;
}
.calc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd7cc;
}

.calc-top h2 {
    margin: 0;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 600;
}

.blue-line {
    width: 70px;
    height: 3px;
    background-color: #b8862c;
}

.calc-left p {
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

.calc-left .calc-intro {
    margin-top: 30px;
    margin-bottom: 12px;
    color: #444;
    font-size: 19px;
    line-height: 1.5;
    font-weight: 600;
}


.right-cal-wrap {
    position: relative;
    margin: 0;
    background-color: #fff;
    border: 1px solid #e1ddd5;
    box-shadow:
        0 8px 25px rgba(42, 31, 10, 0.08);
}

.calc-right {
    position: relative;
    padding: 32px 35px 35px;
}
.calc-heading {
    text-align: left;
}
.calc-heading h4 {
    margin: 0 0 5px;
    color: #182d4d;
    font-size: 23px;
    font-weight: 700;
}

.calc-heading p {
    margin: 0;
    color: #999;
    font-size: 12px;
}

.calc-line {
    width: 45px;
    height: 3px;
    margin: 17px 0 18px;
    background-color: #b8862c;
}

.calc-input {
    padding: 7px 0;
}

.calc-input p {
    margin: 0 0 7px;
    color: #555;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.calc-input input {
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    color: #444;
    background-color: #faf9f6;
    border: 1px solid #ddd8cf;
    border-radius: 3px;
    outline: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.calc-input input:focus {
    border-color: #b8862c;
    background-color: #fff;
}

.l-type {
    width: 100%;
}

.select-loan {
    width: 100%;
    height: 42px;
    padding: 7px 12px;
    color: #555;
    background-color: #faf9f6;
    border: 1px solid #ddd8cf;
    border-radius: 3px;
    outline: none;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.select-loan:focus {
    border-color: #b8862c;
    background-color: #fff;
}

.irs--round .irs-line {
    top: 36px;
    height: 4px;
    background-color: #ddd7ca !important;
    border-radius: 4px;
}

.irs--round .irs-bar {
    top: 36px;
    height: 4px;
    background-color: #b8862c !important;
}

.irs--round .irs-handle {
    top: 30px;
    width: 15px;
    height: 15px;
    border: 2px solid #b8862c;
    background-color: #fff;
    box-shadow: none;
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
    padding: 15px;
    background-color: #f7f3ea;
    border-top: 2px solid #b8862c;
}

.calc-result-box {
    padding-right: 12px;
}

.calc-result-box:first-child {
    border-right: 1px solid #ddd3c2;
}

.calc-result-box p {
    margin: 0 0 6px;
    color: #777;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
}

.calc-result-box input {
    width: 100%;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    color: #9a7024;
    font-size: 17px;
    font-weight: 700;
}

.apply-btn {
    margin-top: 20px;
    text-align: right;
}

.app-btn {
    padding: 9px 20px;
    border: none;
    border-radius: 3px;
    background-color: #b8862c;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.app-btn:hover {
    background-color: #292929;
    color: #fff;
}

.apply-btn a {
    text-decoration: none;
}
@media (max-width: 991px) {

    .calculator-wrap {
        padding: 60px 0;
    }

    .calc-left {
        padding: 0 0 35px;
    }

    .right-cal-wrap {
        margin-top: 10px;
    }

}
@media (max-width: 767px) {

    .calculator-wrap {
        padding: 50px 0;
    }

    .calc-left {
        padding: 0 0 30px;
    }

    .calc-top h2 {
        font-size: 32px;
    }

    .calc-left .calc-intro {
        margin-top: 25px;
        font-size: 17px;
    }

    .calc-left p {
        font-size: 13px;
    }

    .calc-right {
        padding: 25px 20px 30px;
    }

    .calc-heading h4 {
        font-size: 21px;
    }

    .calc-results {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .calc-result-box {
        padding: 0;
    }

    .calc-result-box:first-child {
        padding-bottom: 12px;
        border-right: none;
        border-bottom: 1px solid #ddd3c2;
    }

    .apply-btn {
        text-align: center;
    }

}
@media (max-width: 480px) {

    .calculator-wrap {
        padding: 40px 0;
    }

    .calc-top h2 {
        font-size: 28px;
    }

    .blue-line {
        width: 50px;
    }

    .calc-right {
        padding: 22px 16px 25px;
    }

}
/* Calculator::End */



/*SIP Calculator::Start*/
.sip-calculator-section {
    width: 100%;
    padding: 90px 0 70px;
    background-color: #f8f6f1;
}
.sip-calculator-box {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e1ddd5;
    box-shadow: 0 10px 30px rgba(42, 31, 10, 0.08);
}

.sip-calc-left {
    height: 100%;
    padding: 45px;
    border-right: 1px solid #e1ddd5;
}
.sip-calc-header {
    padding-bottom: 22px;
    border-bottom: 1px solid #e1ddd5;
}
.sip-calc-header h2 {
    margin: 0;
    color: #182d4d;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
}
.sip-calc-header p {
    margin: 10px 0 0;
    color: #777777;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 400;
}
.sip-field {
    padding: 28px 0 5px;
}
.sip-field-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.sip-field-top span {
    color: #555555;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

.sip-field-top strong {
    flex-shrink: 0;
    color: #9a7024;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    white-space: nowrap;
}
.sip-range-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 9px;
    margin-top: 15px;
}

.range-min,
.range-max {
    flex-shrink: 0;
    min-width: 35px;
    color: #777777;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.range-min {
    text-align: left;
}

.range-max {
    text-align: right;
}
.sip-range {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 4px;
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    background: #ddd7ca;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}
.sip-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: #ddd7ca;
    border-radius: 5px;
}
.sip-range::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    margin-top: -5.5px;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #b8862c;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}
.sip-range::-moz-range-track {
    width: 100%;
    height: 4px;
    background: #ddd7ca;
    border-radius: 5px;
}

.sip-range::-moz-range-progress {
    height: 4px;
    background: #b8862c;
    border-radius: 5px;
}

.sip-range::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border: 2px solid #b8862c;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}
.sip-calc-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 45px;
}

.sip-result-title {
    width: 100%;
    text-align: center;
}

.sip-result-title p {
    max-width: 420px;
    margin: 0 auto 10px;
    color: #555555;
    font-size: 12px;
    line-height: 1.7;
    font-weight: 400;
}

.sip-result-title p strong {
    color: #182d4d;
    font-weight: 700;
}

.sip-result-title h3 {
    margin: 0;
    color: #182d4d;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.sip-chart-area {
    width: 100%;
    margin: 35px 0;
}

.sip-chart-area > .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.sip-canvas-wrap {
    width:180px;
    height:180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.sip-donut{
    --invested: 30%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background:conic-gradient(from -90deg,
            #182d4d 0 var(--invested),
            #b8862c var(--invested) 100%
        );

    display: flex;
    align-items: center;
    justify-content: center;

}
.sip-donut-center {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: #ffffff;
}
#sipChart {
    display: block;
    width: 180px;
    height: 180px;
}
.sip-chart-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sip-detail {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.sip-detail small {
    display: block;
    margin-bottom: 4px;
    color: #888888;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 400;
}

.sip-detail strong {
    display: block;
    color: #182d4d;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}
.sip-dot {
    display: block;
    width: 8px;
    height: 8px;
    margin-top: 4px;
    flex: 0 0 8px;
    border-radius: 50%;
}

.sip-dot.invested {
    background-color: #182d4d;
}

.sip-dot.returns {
    background-color: #b8862c;
}
.sip-start-btn-wrap {
    width: 100%;
    text-align: center;
}

.sip-start-btn {
    display: inline-block;
    min-width: 120px;
    padding: 10px 22px;
    border-radius: 3px;
    background-color: #182d4d;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    transition: all 0.25s ease;
}

.sip-start-btn:hover {
    background-color: #b8862c;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/*-----Responsive-----*/

@media (min-width: 1200px) {

    .sip-calc-left {
        padding: 50px;
    }

    .sip-calc-right {
        padding: 50px;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    .sip-calc-left {
        padding: 35px;
    }

    .sip-calc-right {
        padding: 35px;
    }

    .sip-calc-header h2 {
        font-size: 28px;
    }

    .sip-chart-area {
        margin: 30px 0;
    }
    #sipChart {
        width: 155px;
        height: 155px;
    }

    .sip-detail strong {
        font-size: 13px;
    }

}

@media (max-width: 991px) {

    .sip-calculator-section {
        padding: 70px 0 55px;
    }

    .sip-calculator-box {
        width: 100%;
    }
    .sip-calc-left {
        padding: 40px;
        border-right: none;
        border-bottom: 1px solid #e1ddd5;
    }
    .sip-calc-right {
        padding: 40px;
    }
    .sip-calc-header h2 {
        font-size: 30px;
    }
    .sip-chart-area {
        max-width: 600px;
        margin: 35px auto;
    }

}

@media (max-width: 767px) {

    .sip-calculator-section {
        padding: 50px 0 40px;
    }
    .sip-calc-left {
        padding: 30px 22px;
    }
    .sip-calc-right {
        padding: 35px 22px;
    }
    .sip-calc-header {
        padding-bottom: 18px;
    }

    .sip-calc-header h2 {
        font-size: 27px;
    }

    .sip-calc-header p {
        font-size: 11px;
    }
    .sip-field {
        padding: 23px 0 4px;
    }

    .sip-field-top span {
        font-size: 12px;
    }

    .sip-field-top strong {
        font-size: 12px;
    }
    .sip-range-wrap {
        gap: 7px;
        margin-top: 14px;
    }

    .range-min,
    .range-max {
        min-width: 30px;
        font-size: 10px;
    }
    .sip-result-title p {
        max-width: 360px;
        font-size: 11px;
        line-height: 1.7;
    }

    .sip-result-title h3 {
        font-size: 30px;
    }
    .sip-chart-area {
        margin: 30px 0;
    }
    #sipChart {
        width: 160px;
        height: 160px;
    }
    .sip-chart-details {
        gap: 18px;
    }

    .sip-detail small {
        font-size: 10px;
    }

    .sip-detail strong {
        font-size: 13px;
    }
    .sip-start-btn {
        min-width: 130px;
    }

}

@media (max-width: 575px) {

    .sip-calculator-section {
        padding: 40px 0 30px;
    }
    .sip-calc-left {
        padding: 27px 18px;
    }
    .sip-calc-right {
        padding: 30px 18px;
    }
    .sip-calc-header h2 {
        font-size: 25px;
    }
    .sip-calc-header p {
        font-size: 10px;
    }
    .sip-field-top {
        align-items: flex-start;
    }
    .sip-field-top span {
        max-width: 68%;
        font-size: 11px;
        line-height: 1.5;
    }
    .sip-field-top strong {
        font-size: 11px;
    }
    .sip-range-wrap {
        gap: 6px;
    }
    .range-min,
    .range-max {
        min-width: 27px;
        font-size: 9px;
    }
    .sip-range {
        min-width: 0;
    }
    .sip-result-title p {
        max-width: 300px;
        font-size: 10px;
    }
    .sip-result-title h3 {
        font-size: 27px;
    }
    .sip-chart-area {
        margin: 27px 0;
    }
    
    #sipChart {
        width: 145px;
        height: 145px;
    }
    .sip-chart-details {
        width: 100%;
        align-items: center;
        gap: 14px;
    }
    .sip-detail {
        width: 190px;
    }
    .sip-detail small {
        font-size: 9px;
    }
    .sip-detail strong {
        font-size: 12px;
    }
    .sip-start-btn {
        width: 100%;
        max-width: 180px;
    }

}

@media (max-width: 400px) {

    .sip-calc-left {
        padding: 24px 15px;
    }
    .sip-calc-right {
        padding: 28px 15px;
    }
    .sip-calc-header h2 {
        font-size: 23px;
    }
    .sip-field-top span {
        max-width: 65%;
        font-size: 10px;
    }
    .sip-field-top strong {
        font-size: 10px;
    }
    .range-min,
    .range-max {
        min-width: 25px;
        font-size: 8px;
    }
    .sip-result-title p {
        max-width: 270px;
        font-size: 10px;
    }

    .sip-result-title h3 {
        font-size: 25px;
    }
    #sipChart {
        width: 135px;
        height: 135px;
    }

}

/*----Canvas Responsive----*/
@media (max-width: 767px) {

    .sip-canvas-wrap {
        width: 160px;
        height: 160px;
    }

    .sip-donut {
        width: 145px;
        height: 145px;
    }

    .sip-donut-center {
        width: 98px;
        height: 98px;
    }

}


@media (max-width: 575px) {

    .sip-canvas-wrap {
        width: 145px;
        height: 145px;
    }

    .sip-donut {
        width: 130px;
        height: 130px;
    }

    .sip-donut-center {
        width: 88px;
        height: 88px;
    }

}


@media (max-width: 400px) {

    .sip-canvas-wrap {
        width: 135px;
        height: 135px;
    }

    .sip-donut {
        width: 120px;
        height: 120px;
    }

    .sip-donut-center {
        width: 80px;
        height: 80px;
    }

}

/*SIP Calculator::End*/

/*SIP Calculator Content::Start*/
.sip-content-section{
    padding:80px 0;
    background: #ffffff;
}
.sip-content{
    width:100%;
}
.sip-disclaimer{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 28px;
    margin-bottom: 55px;
    background: #f8f6f1;
    border-left: 4px solid #b8862c;
}
.sip-disclaimer-icon{
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #182d4d;
    color: #ffffff;
    font-size: 19px;
    border-radius: 5px;
}
.sip-disclaimer p{
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.8;
}
.sip-disclaimer strong{
    color: #182d4d;
    font-weight: 700;
}
.sip-info h3{
    margin-bottom: 24px;
    color: #182d4d;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
}
.sip-info h3::after{
    content:"";
    display: block;
    width:45px;
    height:3px;
    margin-top:16px;
    background: #b8862c;
}
.sip-info p{
    margin-bottom: 18px;
    color:#626262;
    font-size: 14px;
    line-height: 1.85;
}
.sip-info p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .sip-content-section {
        padding: 70px 0;
    }

    .sip-disclaimer {
        margin-bottom: 45px;
    }

    .sip-info h3 {
        font-size: 31px;
    }

}

@media (max-width: 767px) {

    .sip-content-section {
        padding: 55px 0;
    }

    .sip-disclaimer {
        gap: 14px;
        padding: 20px;
        margin-bottom: 40px;
    }

    .sip-disclaimer-icon {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .sip-disclaimer p {
        font-size: 13px;
        line-height: 1.7;
    }

    .sip-section-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .sip-info h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .sip-info p {
        font-size: 15px;
        line-height: 1.75;
    }

}

@media (max-width: 575px) {

    .sip-content-section {
        padding: 45px 0;
    }

    .sip-disclaimer {
        padding: 18px;
        margin-bottom: 35px;
    }

    .sip-info h3 {
        font-size: 25px;
    }

    .sip-info p {
        font-size: 14px;
    }

}
/*SIP Calculator Content::End*/

/*Lumpsum Calculator:Start*/
.lumpsum-calculator-section {
    width: 100%;
    padding: 90px 0 70px;
    background-color: #f8f6f1;
}

.lumpsum-calculator-box {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e1ddd5;
    box-shadow: 0 10px 30px rgba(42, 31, 10, 0.08);
}

.lumpsum-calc-left {
    height: 100%;
    padding: 50px;
    border-right: 1px solid #e1ddd5;
}

.lumpsum-calc-header {
    padding-bottom: 22px;
    border-bottom: 1px solid #e1ddd5;
}

.lumpsum-calc-header h2 {
    margin: 0;
    color: #182d4d;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
}

.lumpsum-calc-header p {
    margin: 10px 0 0;
    color: #777777;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 400;
}

.lumpsum-field {
    padding: 28px 0 5px;
}

.lumpsum-field-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.lumpsum-field-top span {
    color: #555555;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

.lumpsum-field-top strong {
    flex-shrink: 0;
    color: #9a7024;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    white-space: nowrap;
}

.lumpsum-range-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 9px;
    margin-top: 15px;
}

.lumpsum-range-wrap > span {
    flex-shrink: 0;
    min-width: 35px;
    color: #777777;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.lumpsum-range-wrap .range-min {
    min-width: 30px;
}

.lumpsum-range-wrap .range-max {
    min-width: 35px;
    text-align: right;
}

.lumpsum-range {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 4px;
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    background: #ddd7ca;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.lumpsum-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: #ddd7ca;
    border-radius: 5px;
}

.lumpsum-range::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    margin-top: -5.5px;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #b8862c;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.lumpsum-range::-moz-range-track {
    width: 100%;
    height: 4px;
    background: #ddd7ca;
    border-radius: 5px;
}

.lumpsum-range::-moz-range-progress {
    height: 4px;
    background: #b8862c;
    border-radius: 5px;
}

.lumpsum-range::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border: 2px solid #b8862c;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.lumpsum-calc-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 45px;
}

.lumpsum-result-title {
    width: 100%;
    text-align: center;
}

.lumpsum-result-title p {
    max-width: 420px;
    margin: 0 auto 10px;
    color: #555555;
    font-size: 12px;
    line-height: 1.7;
    font-weight: 400;
}

.lumpsum-result-title strong {
    color: #182d4d;
    font-weight: 700;
}

.lumpsum-result-title h3 {
    margin: 0;
    color: #182d4d;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.lumpsum-chart-area {
    width: 100%;
    margin: 35px 0;
}

.lumpsum-chart-area > .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.lumpsum-canvas-wrap {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.lumpsum-donut {
    --invested: 60%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background:conic-gradient(from -90deg,
            #182d4d 0 var(--invested),
            #b8862c var(--invested) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lumpsum-donut-center {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: #ffffff;
}

.lumpsum-chart-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lumpsum-detail {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.lumpsum-dot {
    display: block;
    width: 8px;
    height: 8px;
    margin-top: 4px;
    flex: 0 0 8px;
    border-radius: 50%;
}

.lumpsum-dot.invested {
    background-color: #182d4d;
}

.lumpsum-dot.returns {
    background-color: #b8862c;
}

.lumpsum-detail small {
    display: block;
    margin-bottom: 4px;
    color: #888888;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 400;
}

.lumpsum-detail strong {
    display: block;
    color: #182d4d;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.lumpsum-btn-wrap {
    width: 100%;
    text-align: center;
}

.lumpsum-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 3px;
    background-color: #182d4d;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    transition: all 0.25s ease;
}

.lumpsum-btn:hover {
    background: #b8862c;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.lumpsum-content-section{
    padding:60px 0;
}
.lumpsum-info h3{
    margin-bottom: 24px;
    color:#182d4d;
    font-size:34px;
    font-weight:700;
    line-height: 1.25;
}
.lumpsum-info h3::after{
    content:"";
    display: block;
    width:45px;
    height:3px;
    margin-top:16px;
    background: #b8862c;
}
.lumpsum-info p{
   margin-bottom: 18px;
   color:#626262;
   font-size:14px;
   line-height:1.85;
}

/*-------Responsive------*/
@media (max-width: 991px) {

    .lumpsum-calculator-section {
        padding: 70px 0 55px;
    }

    .lumpsum-calc-left {
        padding: 40px;
        border-right: none;
        border-bottom: 1px solid #e1ddd5;
    }

    .lumpsum-calc-right {
        padding: 45px 40px;
    }

    .lumpsum-calc-header h2 {
        font-size: 29px;
    }

    .lumpsum-chart-area {
        margin: 30px 0;
    }

}

@media (max-width: 767px) {

    .lumpsum-calculator-section {
        padding: 55px 0 45px;
    }

    .lumpsum-calculator-box {
        box-shadow: 0 6px 20px rgba(42, 31, 10, 0.06);
    }

    .lumpsum-calc-left {
        padding: 32px 25px;
    }

    .lumpsum-calc-right {
        padding: 35px 25px;
    }

    .lumpsum-calc-header h2 {
        font-size: 25px;
    }

    .lumpsum-calc-header p {
        font-size: 11px;
    }

    .lumpsum-field {
        padding: 25px 0 5px;
    }

    .lumpsum-field-top span {
        font-size: 12px;
    }

    .lumpsum-field-top strong {
        font-size: 12px;
    }

    .lumpsum-result-title p {
        font-size: 11px;
    }

    .lumpsum-result-title h3 {
        font-size: 30px;
    }

    .lumpsum-chart-area {
        margin: 30px 0;
    }

    .lumpsum-chart-details {
        gap: 16px;
    }

}


@media (max-width: 575px) {

    .lumpsum-calculator-section {
        padding: 40px 0 35px;
    }

    .lumpsum-calc-left {
        padding: 28px 18px;
    }

    .lumpsum-calc-right {
        padding: 30px 18px;
    }

    .lumpsum-calc-header {
        padding-bottom: 18px;
    }

    .lumpsum-calc-header h2 {
        font-size: 22px;
    }

    .lumpsum-calc-header p {
        font-size: 10px;
        line-height: 1.6;
    }

    .lumpsum-field-top {
        gap: 10px;
    }

    .lumpsum-field-top span {
        max-width: 60%;
        font-size: 11px;
    }

    .lumpsum-field-top strong {
        font-size: 11px;
    }

    .lumpsum-range-wrap {
        gap: 6px;
    }

    .lumpsum-range-wrap > span {
        font-size: 8px;
    }

    .lumpsum-range-wrap .range-min {
        min-width: 25px;
    }

    .lumpsum-range-wrap .range-max {
        min-width: 30px;
    }

    .lumpsum-result-title p {
        font-size: 10px;
        line-height: 1.6;
    }

    .lumpsum-result-title h3 {
        font-size: 27px;
    }

    .lumpsum-canvas-wrap {
        width: 150px;
        height: 150px;
    }

    .lumpsum-donut {
        width: 135px;
        height: 135px;
    }

    .lumpsum-donut-center {
        width: 90px;
        height: 90px;
    }

    .lumpsum-chart-details {
        margin-top: 5px;
    }

    .lumpsum-detail small {
        font-size: 9px;
    }

    .lumpsum-detail strong {
        font-size: 13px;
    }

    .lumpsum-btn {
        padding: 9px 20px;
        font-size: 11px;
    }

}

@media (max-width: 400px) {

    .lumpsum-calc-left {
        padding: 25px 15px;
    }

    .lumpsum-calc-right {
        padding: 28px 15px;
    }

    .lumpsum-calc-header h2 {
        font-size: 20px;
    }

    .lumpsum-field-top span {
        font-size: 10px;
    }

    .lumpsum-field-top strong {
        font-size: 10px;
    }

    .lumpsum-result-title h3 {
        font-size: 25px;
    }

}
/*lumpsum calculator::End*/

/*SWP Calculator::Start*/
.swp-calculator-section {
    width: 100%;
    padding: 70px 0;
    background: #f8f6f1;
}

.swp-calculator-box {
    width: 100%;
    padding: 42px;
    background: #ffffff;
    border: 1px solid #e2ddd4;
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(24, 45, 77, 0.06);
}

.swp-calculator-header {
    width: 100%;
    padding-bottom: 22px;
    border-bottom: 1px solid #e1ddd5;
}

.swp-calculator-header h2 {
    margin: 0;
    color: #182d4d;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
}

.swp-input-area {
    width: 100%;
    margin-top: 30px;
}

.swp-field {
    width: 100%;
}

.swp-field-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-bottom: 14px;
}

.swp-field-top span {
    color: #555555;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

.swp-field-top strong {
    flex-shrink: 0;
    color: #9a7024;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    white-space: nowrap;
}

.swp-range-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 9px;
}

.swp-range-row > span {
    flex-shrink: 0;
    min-width: 35px;
    color: #777777;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.swp-range-row > span:last-child {
    text-align: right;
}

.swp-range {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 4px;
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    background: #ddd7ca;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}
.swp-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: #ddd7ca;
    border-radius: 5px;
}
.swp-range::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    margin-top: -5.5px;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #b8862c;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}
.swp-range::-moz-range-track {
    width: 100%;
    height: 4px;
    background: #ddd7ca;
    border-radius: 5px;
}

.swp-range::-moz-range-progress {
    height: 4px;
    background: #b8862c;
    border-radius: 5px;
}

.swp-range::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border: 2px solid #b8862c;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.swp-result-panel {
    position: relative;
    width: 100%;
    margin-top: 42px;
    padding: 25px 27px;
    overflow: hidden;
    border-radius: 5px;
    background: #182d4d;
}

.swp-result-panel::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -190px;
    top: -270px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.swp-result-header {
    position: relative;
    z-index: 1;
}

.swp-result-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
}

.swp-result-divider {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 15px 0 20px;
    border-top: 2px dashed rgba(255, 255, 255, 0.25);
}

.swp-result-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.swp-result-left {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.swp-result-item {
    min-width: 150px;
}

.swp-result-item span,
.swp-final-value span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 10px;
    line-height: 1.4;
    font-weight: 400;
}

.swp-result-item strong,
.swp-final-value strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
}

.swp-final-value {
    min-width: 180px;
    padding-left: 35px;
    border-left: 2px solid #b8862c;
}

.swp-final-value strong {
    color: #d0a858;
    font-size: 19px;
}

.swp-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    width: 100%;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid #e2ddd4;
}

.swp-start-btn {
    flex-shrink: 0;
    display: inline-block;
    min-width: 120px;
    padding: 10px 22px;
    border-radius: 3px;
    background: #182d4d;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;

    transition: all 0.25s ease;
}

.swp-start-btn:hover {
    background: #b8862c;
    color: #ffffff !important;
    transform: translateY(-2px);
}
.swp-content-section{
    padding: 80px 0;
    background: #ffffff;
}
.swp-info p{
    margin-bottom: 18px;
    color: #626262;
    font-size: 14px;
    line-height: 1.85;
}
.swp-info h3{
    margin-bottom: 24px;
    color: #182d4d;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
}
.swp-info h3::after{
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    margin-top: 16px;
    background: #b8862c;
}

/*------Responsive-----*/
@media (max-width: 991px) {

    .swp-calculator-section {
        padding: 60px 0;
    }

    .swp-calculator-box {
        padding: 35px;
    }

    .swp-input-area {
        margin-top: 25px;
    }

    .swp-result-panel {
        margin-top: 35px;
    }

    .swp-result-left {
        gap: 45px;
    }

}

@media (max-width: 767px) {

    .swp-calculator-section {
        padding: 50px 0 40px;
    }

    .swp-calculator-box {
        padding: 30px 22px;
    }

    .swp-calculator-header h2 {
        font-size: 27px;
    }

    .swp-input-area {
        margin-top: 25px;
    }

    .swp-field-top span {
        font-size: 12px;
    }

    .swp-field-top strong {
        font-size: 12px;
    }

    .swp-result-panel {
        margin-top: 30px;
        padding: 22px 20px;
    }

    .swp-result-header h3 {
        font-size: 16px;
    }

    .swp-result-content {
        display: block;
    }

    .swp-result-left {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .swp-result-item {
        min-width: 0;
    }

    .swp-final-value {
        margin-top: 20px;
        padding-top: 18px;
        padding-left: 0;
        border-left: none;
        border-top: 1px dashed rgba(255, 255, 255, 0.25);
    }

}

@media (max-width: 575px) {

    .swp-calculator-section {
        padding: 40px 0 30px;
    }

    .swp-calculator-box {
        padding: 25px 18px;
    }

    .swp-calculator-header {
        padding-bottom: 18px;
    }

    .swp-calculator-header h2 {
        font-size: 23px;
    }

    .swp-field-top {
        align-items: flex-start;
        gap: 10px;
    }

    .swp-field-top span {
        max-width: 65%;
        font-size: 11px;
    }

    .swp-field-top strong {
        font-size: 11px;
    }

    .swp-range-row {
        gap: 6px;
    }

    .swp-range-row > span {
        min-width: 25px;
        font-size: 8px;
    }

    .swp-result-panel {
        margin-top: 28px;
        padding: 20px 17px;
    }

    .swp-result-header h3 {
        font-size: 15px;
    }

    .swp-result-left {
        gap: 12px;
    }

    .swp-result-item span,
    .swp-final-value span {
        font-size: 9px;
    }

    .swp-result-item strong {
        font-size: 15px;
    }

    .swp-final-value strong {
        font-size: 17px;
    }

    .swp-bottom {
        margin-top: 20px;
        padding-top: 18px;
    }

    .swp-start-btn {
        min-width: 105px;
        padding: 9px 17px;
        font-size: 10px;
    }

}

@media (max-width: 400px) {

    .swp-calculator-box {
        padding: 22px 15px;
    }

    .swp-calculator-header h2 {
        font-size: 21px;
    }

    .swp-result-left {
        flex-direction: column;
        gap: 18px;
    }

    .swp-result-item strong {
        font-size: 15px;
    }

}
/*SWP Calculator::End*/

/*Compound Calculator::Start*/
.compound-calculator-section {
    width: 100%;
    padding: 70px 0;
    background: #f8f6f1;
}

.compound-calculator-box {
    width: 100%;
    padding: 35px 40px 40px;
    background: #ffffff;
    border: 1px solid #e2ddd4;
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(24, 45, 77, 0.06);
}

.compound-calculator-header {
    width: 100%;
    padding-bottom: 22px;
    border-bottom: 1px solid #e1ddd5;
}

.compound-calculator-header h2 {
    margin: 0;
    color: #182d4d;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
}

.compound-calculator-form {
    width: 100%;
    padding-top: 28px;
}

.compound-field {
    width: 100%;
}

.compound-field label {
    display: block;
    margin-bottom: 9px;
    color: #555555;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}
.compound-input-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 43px;
    border-bottom: 1px solid #777777;
    transition: border-color 0.25s ease;
}

.compound-input-wrap span {
    flex-shrink: 0;
    color: #777777;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

.compound-input-wrap input {
    width: 100%;
    height: 42px;
    padding: 0 5px;
    border: 0;
    outline: none;
    background: transparent;
    color: #182d4d;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
}

.compound-input-wrap input:focus {
    outline: none;
}

.compound-input-wrap:focus-within {
    border-bottom-color: #182d4d;
}

.compound-input-wrap input::-webkit-outer-spin-button,
.compound-input-wrap input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.compound-input-wrap input[type="number"] {
    -moz-appearance: textfield;
}

.compound-input-wrap input::placeholder {
    color: #aaaaaa;
    font-size: 11px;
}
.compound-button-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding-top: 24px;
}

.compound-calculate-btn {
    min-width: 120px;
    padding: 10px 25px;
    border: 0;
    border-radius: 3px;
    background: #182d4d;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.compound-calculate-btn:hover {
    background: #b8862c;
    color: #ffffff;
    transform: translateY(-2px);
}
.compound-result-panel {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 25px 27px;
    overflow: hidden;
    border-radius: 5px;
    background: #182d4d;
    display: none;
}

.compound-result-panel.show {
    display: block;
}
.compound-result-panel::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -180px;
    top: -250px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}
.compound-result-header {
    position: relative;
    z-index: 1;
}

.compound-result-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
}
.compound-result-divider {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 15px 0 20px;
    border-top: 2px dashed rgba(255, 255, 255, 0.25);
}
.compound-result-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}
.compound-result-item {
    flex: 1;
    min-width: 0;
}
.compound-result-item span,
.compound-final-value span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 10px;
    line-height: 1.4;
    font-weight: 400;
}

.compound-result-item strong,
.compound-final-value strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
}
.compound-final-value {
    min-width: 190px;
    padding-left: 35px;
    border-left: 2px solid #b8862c;
}

.compound-final-value strong {
    color: #d0a858;
    font-size: 20px;
}
.compound-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid #e2ddd4;
}
.compound-start-btn {
    display: inline-block;
    min-width: 170px;
    padding: 10px 22px;
    border-radius: 3px;
    background: #182d4d;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
    transition: all 0.25s ease;
}

.compound-start-btn:hover {
    background: #b8862c;
    color: #ffffff !important;
    transform: translateY(-2px);
}
@media (max-width: 991px) {

    .compound-calculator-section {
        padding: 60px 0;
    }

    .compound-calculator-box {
        padding: 32px 30px 35px;
    }

    .compound-calculator-form {
        padding-top: 25px;
    }

    .compound-button-wrap {
        justify-content: flex-start;
        padding-top: 10px;
    }

    .compound-result-panel {
        margin-top: 35px;
    }

}
@media (max-width: 767px) {

    .compound-calculator-section {
        padding: 50px 0 40px;
    }

    .compound-calculator-box {
        padding: 28px 22px 30px;
    }

    .compound-calculator-header {
        padding-bottom: 17px;
    }

    .compound-calculator-header h2 {
        font-size: 24px;
    }

    .compound-calculator-form {
        padding-top: 22px;
    }

    .compound-field label {
        font-size: 11px;
    }

    .compound-input-wrap {
        min-height: 41px;
    }

    .compound-input-wrap input {
        height: 40px;
        font-size: 12px;
    }

    .compound-button-wrap {
        padding-top: 5px;
    }

    .compound-calculate-btn {
        width: 100%;
        min-width: 0;
        padding: 11px 20px;
    }
    .compound-result-panel {
        margin-top: 30px;
        padding: 22px 20px;
    }

    .compound-result-header h3 {
        font-size: 16px;
    }

    .compound-result-content {
        display: block;
    }

    .compound-result-item {
        margin-bottom: 20px;
    }

    .compound-final-value {
        min-width: 0;

        margin-top: 5px;

        padding-top: 18px;
        padding-left: 0;

        border-left: none;
        border-top: 1px dashed rgba(255, 255, 255, 0.25);
    }

    .compound-bottom {
        justify-content: flex-start;
    }

    .compound-start-btn {
        width: 100%;
        max-width: 190px;
    }

}
@media (max-width: 575px) {

    .compound-calculator-section {
        padding: 40px 0 30px;
    }

    .compound-calculator-box {
        padding: 25px 18px 28px;
    }

    .compound-calculator-header h2 {
        font-size: 21px;
    }

    .compound-calculator-form {
        padding-top: 20px;
    }

    .compound-field label {
        font-size: 10px;
    }

    .compound-input-wrap {
        min-height: 39px;
    }

    .compound-input-wrap input {
        height: 38px;
        font-size: 11px;
    }

    .compound-input-wrap span {
        font-size: 11px;
    }

    .compound-input-wrap input::placeholder {
        font-size: 10px;
    }

    .compound-calculate-btn {
        font-size: 11px;
        padding: 10px 18px;
    }
    .compound-result-panel {
        margin-top: 28px;
        padding: 20px 17px;
    }

    .compound-result-header h3 {
        font-size: 15px;
    }

    .compound-result-item span,
    .compound-final-value span {
        font-size: 9px;
    }

    .compound-result-item strong {
        font-size: 15px;
    }

    .compound-final-value strong {
        font-size: 17px;
    }

    .compound-bottom {
        margin-top: 20px;
        padding-top: 18px;
    }

    .compound-start-btn {
        min-width: 150px;
        padding: 9px 17px;
        font-size: 10px;
    }

}
@media (max-width: 400px) {

    .compound-calculator-box {
        padding: 22px 15px 25px;
    }

    .compound-calculator-header h2 {
        font-size: 19px;
    }

}

.compound-content-section{
    padding:60px 0;
}
.compound-info h3{
    margin-bottom: 24px;
    color:#182d4d;
    font-size:24px;
    font-weight:700;
    line-height: 1.25;
}
.compound-info p{
    margin-bottom: 18px;
    color: #626262;
    font-size: 14px;
    line-height: 1.85;
}
.compound-info h3::after{
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    margin-top: 16px;
    background: #b8862c;
}

/*Compound Interest Calculator::End*/


/*Blog Main Page::Start*/
.skf-blog-intro {
    padding: 90px 0;
    background: #f8f6f1;
}
.skf-blog-intro-image {
    position: relative;
    height: 420px;
    padding: 0 25px 25px 0;
}
/*.skf-blog-intro-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 85%;
    height: 85%;
    border: 1px solid #b8862c;
    z-index: 0;
}*/
.skf-blog-intro-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}
.skf-blog-intro-tag {
    position: absolute;
    right:-20px;
    bottom:40px;
    z-index: 2;
    padding: 16px 20px;
    background: #182d4d;
    border: 5px solid #fff;
}
.skf-blog-intro-tag span {
    display: block;
    margin-bottom: 5px;
    color: #b8862c;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.skf-blog-intro-tag strong {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}
.skf-blog-intro-content {
    padding-left: 55px;
    max-width: 620px;
}
.skf-blog-intro-content .skf-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.skf-blog-intro-content .skf-section-label span {
    width: 32px;
    height: 2px;
    background: #b8862c;
}

.skf-blog-intro-content .skf-section-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.skf-blog-intro-content h1 {
    margin: 0 0 22px;
    color: #182d4d;
    font-size: 43px;
    line-height: 1.18;
    font-weight: 700;
}

.skf-blog-intro-content h1 em {
    color: #b8862c;
    font-style: normal;
}

.skf-blog-intro-content > p {
    margin: 0 0 14px;
    color: #707070;
    font-size: 13px;
    line-height: 1.85;
}

.skf-blog-intro-content .skf-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: #182d4d;
    font-size: 11px;
    font-weight: 600;
    border-bottom: 1px solid #b8862c;
    padding-bottom: 7px;
    transition: all .25s ease;
}

.skf-blog-intro-content .skf-text-btn i {
    color: #b8862c;
    transition: transform .25s ease;
}

.skf-blog-intro-content .skf-text-btn:hover {
    color: #b8862c;
}

.skf-blog-intro-content .skf-text-btn:hover i {
    transform: translateY(3px);
}

@media (max-width: 991px) {

    .skf-blog-intro {
        padding: 70px 0;
    }

    .skf-blog-intro-content {
        padding-left: 30px;
    }

    .skf-blog-intro-content h1 {
        font-size: 36px;
    }

    .skf-blog-intro-image {
        height: 380px;
    }

}

@media (max-width: 767px) {

    .skf-blog-intro {
        padding: 60px 0 0;
    }

    .skf-blog-intro-image {
        height: 300px;
        padding: 0 15px 15px 0;
        margin-bottom: 45px;
    }

    .skf-blog-intro-tag {
        right: 2px;
        bottom: 31px;
    }

    .skf-blog-intro-content {
        padding-left: 0;
    }

    .skf-blog-intro-content h1 {
        font-size: 30px;
    }

    .skf-blog-intro-content > p {
        font-size: 12px;
        line-height: 1.75;
    }

}
@media (max-width: 480px) {

    .skf-blog-intro-image {
        height: 260px;
    }

    .skf-blog-intro-content h1 {
        font-size: 27px;
    }

    .skf-blog-intro-tag {
        padding: 13px 15px;
    }

    .skf-blog-intro-tag strong {
        font-size: 11px;
    }

}
/*Blog Main Page::End*/
.skf-blog-section{
    padding: 95px 0;
}

.skf-blog-heading{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 45px;
}

.skf-blog-label{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.skf-blog-label span{
    width: 32px;
    height: 1px;
    background: #b8862c;
}

.skf-blog-label p{
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.skf-blog-heading h2{
    margin: 0;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.skf-blog-heading h2 em{
    color: #b8862c;
    font-style: normal;
    font-weight: 600;
}

.skf-blog-view{
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 3px;
    color: #182d4d;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #b8862c;
    transition: all .3s ease;
}

.skf-blog-view i{
    color: #b8862c;
    transition: transform .3s ease;
}

.skf-blog-view:hover{
    color: #b8862c;
}

.skf-blog-view:hover i{
    transform: translate(3px,-3px);
}

.skf-blog-card{
    display: block;
    height: 100%;
    background: #fff;
    text-decoration: none;
    border: 1px solid #e7e1d6;
    transition: all .35s ease;
}

.skf-blog-card:hover{
    transform: translateY(-7px);
    border-color: #b8862c;
}

.skf-blog-image{
    height: 245px;
    position: relative;
    overflow: hidden;
}

.skf-blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.skf-blog-card:hover .skf-blog-image img{
    transform: scale(1.05);
}

.skf-blog-category{
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 11px 11px;
    background: #182d4d;
    color: #b8862c;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.skf-blog-content{
    padding: 24px 25px 27px;
}

.skf-blog-meta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 17px;
    border-bottom: 1px solid #e6e1d8;
}

.skf-blog-meta span{
    color: #b8862c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.skf-blog-meta i{
    color: #b8862c;
    font-size: 15px;
    transition: transform .3s ease;
}

.skf-blog-card:hover .skf-blog-meta i{
    transform: translate(3px,-3px);
}

.skf-blog-content h3{
    margin: 0 0 12px;
    color: #10243d;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    transition: color .3s ease;
}

.skf-blog-card:hover .skf-blog-content h3{
    color: #b8862c;
}

.skf-blog-content p{
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.75;
}

@media (max-width: 991px){

    .skf-blog-section{
        padding: 75px 0;
    }

    .skf-blog-heading h2{
        font-size: 36px;
    }

    .skf-blog-image{
        height: 230px;
    }

}

@media (max-width: 767px){

    .skf-blog-section{
        padding: 60px 0;
    }

    .skf-blog-heading{
        margin-bottom: 35px;
    }

    .skf-blog-heading h2{
        font-size: 13px;
    }

    .skf-blog-view{
        font-size: 11px;
    }

    .skf-blog-image{
        height: 220px;
    }

    .skf-blog-content{
        padding: 22px;
    }

    .skf-blog-content h3{
        font-size: 19px;
    }
}

/*Blog Main Section:End*/

/*Service Intro Start*/
.skf-service-intro{
    padding: 95px 0;
    background: #f8f6f1;
}
.skf-service-intro-image{
    position: relative;
    padding-right: 20px;
}
.skf-service-intro-image img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.skf-service-image-line{
    position: absolute;
    right: 0;
    top: 45px;
    width: 3px;
    height: 410px;
    background: #b8862c;
}
.skf-service-intro-content{
    padding-left: 55px;
}
.skf-service-intro-content .skf-section-label{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.skf-service-intro-content .skf-section-label span{
    width: 35px;
    height: 1px;
    background: #b8862c;
}

.skf-service-intro-content .skf-section-label p{
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.skf-service-intro-content h2{
    margin: 0 0 23px;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}
.skf-service-intro-content h2 em{
    color: #b8862c;
    font-style: normal;
    font-weight: 700;
}
.skf-service-intro-content > p{
    max-width: 570px;
    margin: 0 0 16px;
    color: #707070;
    font-size: 14px;
    line-height: 1.85;
}
.skf-service-points{
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
    margin-top: 27px;
    padding-top: 20px;
    border-top: 1px solid #e2ddd4;
}
.skf-service-points div{
    display: flex;
    align-items: center;
    gap: 7px;
}
.skf-service-points i{
    color: #b8862c;
    font-size: 15px;
}
.skf-service-points span{
    color: #10243d;
    font-size: 13px;
    font-weight: 600;
}
@media (max-width: 991px){

    .skf-service-intro{
        padding: 75px 0;
    }

    .skf-service-intro-image{
        margin-bottom: 55px;
    }

    .skf-service-intro-content{
        padding-left: 0;
    }

    .skf-service-intro-content h2{
        font-size: 38px;
    }

}
@media (max-width: 767px){

    .skf-service-intro{
        padding: 60px 0;
    }

    .skf-service-intro-image{
        padding-right: 10px;
        margin-bottom: 45px;
    }

    .skf-service-intro-image img{
        height: 380px;
    }

    .skf-service-image-line{
        top: 30px;
        height: 320px;
    }

    .skf-service-intro-content h2{
        font-size: 31px;
    }

    .skf-service-intro-content > p{
        font-size: 13px;
    }

    .skf-service-points{
        flex-direction: column;
        gap: 12px;
    }

}
/*Service Intro End*/


.skf-home-cta {
    padding:80px 0;
    background:#f8f6f1;
}
.skf-cta-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 390px;
    overflow: hidden;
    background: #182d4d;
    border-radius: 4px;
}

.skf-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 60px;
}

.skf-cta-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
}

.skf-cta-label span {
    width: 28px;
    height: 2px;
    background: #b8862c;
}

.skf-cta-label p {
    margin: 0;
    color: #c49a4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.skf-cta-content h2 {
    margin: 0;
    max-width: 560px;
    color: #fff;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
}

.skf-cta-content h2 em {
    color: #c49a4b;
    font-style: normal;
}

.skf-cta-text {
    max-width: 520px;
    margin: 20px 0 0;
    color: #c7c4bd;
    font-size: 12px;
    line-height: 1.8;
}

.skf-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: 27px;
    padding: 11px 19px;
    background: #b8862c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

.skf-cta-btn i {
    font-size: 13px;
    transition: transform .25s ease;
}

.skf-cta-btn:hover {
    background: #fff;
    color: #292722;
}

.skf-cta-btn:hover i {
    transform: translateX(4px);
}

.skf-cta-image {
    position: relative;
    height: 100%;
    min-height: 390px;
    overflow: hidden;
    border-radius: 120px 0 0 120px;
}

.skf-cta-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.skf-cta-wrap:hover .skf-cta-image img {
    transform: scale(1.03);
}

.skf-cta-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(41,39,34,.25),rgba(41,39,34,.02));
}

.skf-cta-image::before {
    content: "";
    position: absolute;
    z-index: 3;
    left: -1px;
    top: 35px;
    bottom: 35px;
    width: 3px;
    background: #b8862c;
    border-radius: 50%;
}

@media (max-width: 991px) {

    .skf-home-cta {
        padding: 65px 0;
    }

    .skf-cta-wrap {
        grid-template-columns: 1fr;
    }

    .skf-cta-content {
        padding: 45px;
    }

    .skf-cta-image {
        min-height: 280px;
        height: 280px;

        border-radius: 0 0 80px 80px;
    }

    .skf-cta-image::before {
        display: none;
    }

}

@media (max-width: 767px) {

    .skf-home-cta {
        padding: 50px 0;
    }

    .skf-cta-content {
        padding: 35px 25px;
    }

    .skf-cta-content h2 {
        font-size: 28px;
    }

    .skf-cta-text {
        font-size: 11px;
    }

    .skf-cta-image {
        min-height: 220px;
        height: 220px;

        border-radius: 0 0 60px 60px;
    }

}

@media (max-width: 480px) {

    .skf-cta-content {
        padding: 30px 20px;
    }

    .skf-cta-content h2 {
        font-size: 25px;
    }

    .skf-cta-image {
        min-height: 200px;
        height: 200px;

        border-radius: 0 0 45px 45px;
    }

}
/*Contact CTA:End*/

/* Testimonial::Start */
.testimonial-wrap{
    background-color: #111d2e;
    padding: 50px 0;
}
.testimonial-wrap p{
    font-size: 14px;
    color: #aaa79f;
}
.testimonial-wrap h4{
    color: #fff;
}
.testimonial-image{
    width: 80px;
    height: 80px;
    margin: auto;
    background-color: #ffffff;
    border-radius: 100%;
    margin-bottom: 12px;
}
.testimonial-image img {
    margin-top: 20px;
}
.testimonial-image img{
    width: 100%;
    border-radius: 100%;
}
.testimonial-wrap .slick-next:before{
    font-size: 32px;
}
.testimonial-wrap .slick-prev:before{
    font-size: 32px;
}
.testimonial-wrap .slick-next{
    top: 50% !important;
}
.testimonial-wrap .slick-prev{
    top: 50% !important;
}
@media (max-width:722px){
    .testimonial-wrap .slick-next{
        display: none !important;
    }
    .testimonial-wrap .slick-prev{
        display: none !important;
    }
}
.testimonial-left{
    background-color: white;
    padding: 12px;
    position: absolute;
    top: 100px;
    cursor: pointer;
    z-index: 5;
}
.testimonial-right{
    background-color: white;
    padding: 12px;
    position: absolute;
    top: 100px;
    right: 0;
    cursor: pointer;
}
.flow-top{
    padding-bottom: 80px;
}
.flow-top p{
    font-size: 16px;
    color: #6f6a5f;
    line-height: 24px;
    letter-spacing: 1px;
}
.testimonial-wrap h5{
    font-size: 30px;
}
.testimonial-content{
    padding: 0 45px;
    border: 2px solid #b8862c;
    margin: 0 25px;
    min-height: 250px !important;
}
@media (max-width: 968px){
    .testimonial-content{
        padding: 0 15px;
    }
}
/* Testimonial::End */
hr{
    margin: 0;
}
/* Footer::Start */
.footer-wrap {
    background: #182d4d;
    color: #fff;
    padding-top: 60px;
}

.footer-content {
    padding-bottom: 45px;
}

.footer-logo {
    width: 210px;
    margin-bottom: 20px;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-description {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.9;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b8862c;
    color: #fff;
    border-radius: 3px;
    font-size: 15px;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: #fff;
    color: #182d4d;
    transform: translateY(-3px);
}

.footer-column h5 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 12px;
    color: #e0bc68;
    font-size: 16px;
    font-weight: 600;
}

.footer-column h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #b8862c;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    display: inline-block;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    text-decoration: none;
    transition: all .25s ease;
}

.footer-column ul li a::before {
    content: "›";
    margin-right: 8px;
    color: #b8862c;
}

.footer-column ul li a:hover {
    color: #e0bc68;
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
}

.footer-contact-item > i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 44, .15);
    border: 1px solid rgba(184, 134, 44, .35);
    border-radius: 50%;
    color: #d0a858;
    font-size: 13px;
}

.footer-contact-item a {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-contact-item a:hover {
    color: #e0bc68;
}

.footer-contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
}

.footer-bottom a {
    color: #d0a858;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 991px) {

    .footer-wrap {
        padding-top: 50px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-column {
        margin-bottom: 15px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

}

@media (max-width: 575px) {

    .footer-wrap {
        padding-top: 45px;
    }

    .footer-logo {
        width: 200px;
    }

    .footer-description {
        font-size: 12px;
        line-height: 1.8;
    }

    .footer-column h5 {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .footer-contact-item {
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 12px;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 17px 0;
    }

    .footer-bottom p {
        font-size: 11px;
        line-height: 1.6;
    }

}
/* Footer::End */

/* Smallhero::Start */
.skf-inner-banner{
    position: relative;
    height: 330px;
    margin-top: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.skf-inner-banner-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.58) 35%,
            rgba(0, 0, 0, 0.35) 65%,
            rgba(0, 0, 0, 0.28) 100%
        ),
        url("../Images/assets/services-bg-1.jpg");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    z-index: 0;
}
.skf-inner-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 330px;
}
.skf-inner-banner-line{
    width: 3px;
    height: 115px;
    background: #b8862c;
    margin-right: 28px;
}
.skf-inner-banner-text{
    padding-top: 5px;
}
.skf-inner-banner-label{
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}
.skf-inner-banner h1{
    margin: 0 0 22px;
    color: #fff;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 500;
}
.skf-inner-breadcrumb{
    display: flex;
    align-items: center;
    gap: 11px;
}
.skf-inner-breadcrumb a{
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;

    transition: 0.3s ease;
}
.skf-inner-breadcrumb a:hover{
    color: #b8862c;
}
.skf-inner-breadcrumb i{
    color: #b8862c;
    font-size: 10px;
}
.skf-inner-breadcrumb span{
    color: #fff;
    font-size: 13px;
}
@media (max-width: 991px){

    .skf-inner-banner{
        margin-top: 90px;
        height: 290px;
    }

    .skf-inner-banner-content{
        min-height: 290px;
    }

    .skf-inner-banner h1{
        font-size: 45px;
    }

}
@media (max-width: 767px){

    .skf-inner-banner{
        height: 250px;
    }

    .skf-inner-banner-content{
        min-height: 250px;
    }

    .skf-inner-banner-line{
        height: 90px;
        margin-right: 18px;
    }

    .skf-inner-banner-label{
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .skf-inner-banner h1{
        font-size: 36px;
        margin-bottom: 17px;
    }

    .skf-inner-breadcrumb a,
    .skf-inner-breadcrumb span{
        font-size: 12px;
    }

}
/* Smallhero::End */

.subpages-graphic{
    position: absolute;
    z-index: -1;
    left: -90px;
    top: 250px;
}


/* Offerings::Start */
.offerings-wrap{
    padding: 80px 0;
}
.offerings-head .under-blue{
    margin: auto;
}
.offerings-wrap h3{
    line-height: 25px;
    font-size: 18px;
    text-transform: capitalize;
}
.offer-right p{
    line-height: 25px;
    font-size: 16px;
    color: #6f6a5f;
}
.offer-right{
    padding-left: 30px;
}
/* Offerings::End */

/* Breakdown::Start */
.breakdown-wrap{
    padding: 80px 0;
    background-color: #182d4d;
}
.breakdown-head p{
    color: #fff;
}
.break-content{
    padding: 20px;
    background-color: #182d4d;
}
.break-content:hover{
    background-color: #ffffff;
}
.break-content:hover.break-content p{
    color: #000000 !important;
}
.break-content:hover.break-content h4{
    color: #000000 !important;
}
.break-content:hover .break-icon{
    background-color: #b8862c !important;
}
.break-content:hover .btn-break{
    background-color: transparent;
    border: 1px solid black;
    color: #000;
    padding: 5px 10px;
}
.break-content{
    border: 1px solid #fff;
    margin-top: 15px;
    min-height: 600px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    transition: all 0.3s ease;
}
.center-btns{
    background-color: transparent;
    border: 1px solid black;
    color: #000;
    padding: 5px 10px;
}
.break-center{
    background-color: #fff;
}
.break-center .break-icon{
    background-color:#b8862c;
}
.break-center h4{
    color: #000 !important;
}
.break-center p{
    color: #000 !important;
}
@media (max-width:990px){
    .break-content{
        min-height: auto;
        height: unset;
    }
}
.break-icon{
    width: 75px;
    height: 75px;
    border-radius: 100%;
    border: 3px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.break-icon i {
    font-size: 28px;
    color: #fff;
}
.btn-break{
    background-color: transparent;
    border: 1px solid white;
    color: #fff;
    padding: 5px 10px;
}
.break-content h4{
    color: #fff;
}
.break-content p{
    color: #fff;
    font-size: 16px;
}
/* Breakdown::End */

/* Product Page Start */
.pp-main{
    padding: 80px 0 160px 0;
    background-color: #fffdf8;
}
.main-mortgage{
    padding: 80px 0 40px 0;
    background-color: #fffdf8;
}
@media (mx-width:988px){
    .pp-main{
        padding: 80px 0 90px 0;
        background-color: #fffdf8;
    }
}
.mortgage-down{
    padding: 40px 0 90px 0 ;
}
.pp-right p{
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #6f6a5f;
}
.mortgage-right{
    margin-top: 0 !important;
}
.products-top-wrap{
    background-image: url(../Images/assets/products-top.jpg) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/* Product Page End */

/* Management Start */
.management-wrap{
    padding: 80px 0;
    background-color: #f7f2e8;
}
@media(max-width: 992px){
    .management-wrap{
        padding: 40px 0 !important;
    } 
}
.management-content p{
    font-size: 16px;
    color: #6f6a5f;
}
.management-content{
    background-color: #fff;
    padding: 25px;
    border-radius: 4px;
}
.management-image img{
    width: 200px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.manage-content h4{
    font-size: 18px;
    margin-bottom: 10px;
}
.manage-left-content h4{
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 600;
}
.manage-content p{
    font-size: 16px;
    color: #6f6a5f;
}
.manage-wrap{
    padding: 25px 0px;
}
.mana-wrap{
    padding: 20px;
    background-color: #182d4d;
    border-radius: 20px;
}
.manage-icon{
    width: 50px;
    margin-bottom: 10px;
}
.mana-icon{
    width: 100px;
    margin-bottom: 10px;
}
.mana-wrap img{
    border-radius: 90px;
    padding: 40px;
}
@media (max-width: 375px){
    .mana-wrap img{
        border-radius: 30px;
        padding: 10px;
        margin-bottom: 10px;
    }
}
.mana-right h3{
    font-size: 24px;
    color: #fff;
}
.mana-right p{
    font-size: 16px;
    color: #fff;
}
.mana-right-wrap{
    display: flex;
    align-items: center;
}
/* Management End */


/* contact-us Page Start*/ 
.skf-contact-section {
    padding: 95px 0;
    background: #f8f7f4;
}
.skf-contact-top {
    display: grid;
    grid-template-columns: 43% 57%;
    min-height: 650px;
}
.skf-contact-info {
    position: relative;
    padding: 60px 55px;
    background: #182d4d;
    overflow: hidden;
}
.skf-contact-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.skf-contact-label span {
    width: 30px;
    height: 1px;
    background: #b8862c;
}
.skf-contact-label p {
    margin: 0;
    color: #c49a4a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}
.skf-contact-info h2 {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin: 0 0 20px;
    color: #fff;
    font-size: 39px;
    line-height: 1.2;
    font-weight: 600;
}
.skf-contact-info h2 em {
    color: #c49a4a;
    font-style: normal;
    font-weight: 500;
}
.skf-contact-intro {
    position: relative;
    z-index: 2;
    max-width: 400px;
    margin: 0 0 42px;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.8;
}
.skf-contact-details {
    position: relative;
    z-index: 2;
}

.skf-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 19px 0;
    border-top: 1px solid rgba(255,255,255,.13);
    transition: all .3s ease;
}

.skf-contact-detail:last-child {
    border-bottom: 1px solid rgba(255,255,255,.13);
}
.skf-contact-icon {
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196,154,74,.5);
    color: #c49a4a;
    font-size: 15px;
    transition: all .3s ease;
}

.skf-contact-detail:hover .skf-contact-icon {
    background: #b8862c;
    border-color: #b8862c;
    color: #fff;
    transform: translateY(-2px);
}

.skf-contact-detail span {
    display: block;
    margin-bottom: 5px;
    color: #c49a4a;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.skf-contact-detail a {
    margin: 0;
    color: rgba(255,255,255,.85);
    font-size: 12px;
    line-height: 1.7;
}

.skf-contact-form {
    padding: 58px 65px;
    background: #fff;
    border: 1px solid #e6e1d7;
    border-left: none;
}

.skf-form-heading {
    margin-bottom: 35px;
}

.skf-form-heading > span {
    display: block;
    margin-bottom: 8px;
    color: #b8862c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.skf-form-heading h3 {
    margin: 0 0 8px;
    color: #182d4d;
    font-size: 30px;
    font-weight: 600;
}

.skf-form-heading p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}

.skf-form-group {
    margin-bottom: 23px;
}

.skf-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #182d4d;
    font-size: 11px;
    font-weight: 600;
}

.skf-form-group .form-control {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #ddd9d0;
    border-radius: 0;
    background: #fff;
    color: #333;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    box-shadow: none;
    outline: none;
    transition: all .3s ease;
}

.skf-form-group textarea.form-control {
    height: auto;
    min-height: 130px;
    padding: 14px 15px;
    resize: vertical;
}

.skf-form-group .form-control::placeholder {
    color: #aaa;
}

.skf-form-group .form-control:focus {
    border-color: #b8862c;
    box-shadow: 0 0 0 3px rgba(184,134,44,.08);
}

.skf-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-width: 165px;
    height: 48px;
    padding: 0 20px;
    border: 1px solid #b8862c;
    background: #b8862c;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.skf-contact-submit i {
    font-size: 14px;
    transition: transform .3s ease;
}

.skf-contact-submit:hover {
    background: #182d4d;
    border-color: #182d4d;
    color: #fff;
}

.skf-contact-submit:hover i {
    transform: translate(3px,-3px);
}

.skf-contact-map-section {
    margin-top: 85px;
}

.skf-map-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.skf-map-heading .skf-contact-label {
    margin-bottom: 10px;
}

.skf-map-heading h3 {
    margin: 0;
    color: #182d4d;
    font-size: 34px;
    font-weight: 600;
}

.skf-map-heading h3 em {
    color: #b8862c;
    font-style: normal;
}

.skf-map-heading > p {
    max-width: 330px;
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.7;
    text-align: right;
}

.skf-map-wrap {
    position: relative;
    overflow: hidden;
    height: 430px;
    border: 1px solid #ded9ce;
    background: #eee;
}

.skf-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    transition: filter .5s ease;
}

.skf-map-wrap:hover iframe {
    filter: grayscale(0%);
}
@media (max-width: 991px) {

    .skf-contact-section {
        padding: 75px 0;
    }

    .skf-contact-top {
        grid-template-columns: 1fr;
    }

    .skf-contact-info {
        padding: 50px 45px;
    }

    .skf-contact-info h2 {
        max-width: 600px;
        font-size: 36px;
    }

    .skf-contact-intro {
        max-width: 600px;
    }

    .skf-contact-form {
        padding: 50px 45px;
        border-left: 1px solid #e6e1d7;
        border-top: none;
    }

    .skf-contact-map-section {
        margin-top: 65px;
    }

}
@media (max-width: 767px) {

    .skf-contact-section {
        padding: 55px 0;
    }

    .skf-contact-info {
        padding: 40px 25px;
    }

    .skf-contact-info h2 {
        font-size: 29px;
        line-height: 1.25;
    }

    .skf-contact-intro {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .skf-contact-detail {
        gap: 14px;
        padding: 16px 0;
    }

    .skf-contact-icon {
        width: 36px;
        height: 36px;
    }

    .skf-contact-detail p {
        font-size: 11px;
    }

    .skf-contact-form {
        padding: 38px 25px;
    }

    .skf-form-heading h3 {
        font-size: 25px;
    }

    .skf-form-group {
        margin-bottom: 18px;
    }

    .skf-map-heading {
        display: block;
    }

    .skf-map-heading h3 {
        font-size: 28px;
    }

    .skf-map-heading > p {
        margin-top: 14px;
        text-align: left;
    }

    .skf-map-wrap {
        height: 330px;
    }

}
@media (max-width: 480px) {

    .skf-contact-info {
        padding: 35px 20px;
    }

    .skf-contact-info h2 {
        font-size: 27px;
    }

    .skf-contact-form {
        padding: 35px 20px;
    }

    .skf-form-heading h3 {
        font-size: 23px;
    }

    .skf-contact-submit {
        width: 100%;
    }

    .skf-map-wrap {
        height: 280px;
    }
}
/* contact-us Page End */

/* Team Start */
.team-wrap{
    padding: 80px 0;
}
@media(max-width:992px){
    .team-wrap{
        padding: 40px 0 !important;
    }
}
.c-report{
    padding-left: 0;
    list-style: none;
}
.c-report li{
    display: flex;
    margin-top: 10px;
}
.c-report li:hover i {
    margin-right: 5px !important;
}

.c-report i{
    color: #b8862c;
    margin-right: 15px;
    font-size: 18px;
    transition: all 0.2s ease-in;
}
.c-report p{
    color: #000 !important;
    font-size: 14px !important;
    margin-bottom: 0;
}
.insure-report{
    padding-left: 0;
    list-style: none;
}
.insure-report li{
    display: flex;
    margin-top: 10px;
}

.insure-report i{
    color: #b8862c;
    margin-right: 15px;
    font-size: 16px;
    transition: all 0.2s ease-in;
}
.insure-report p{
    color: #000 !important;
    font-size: 14px !important;
    margin-bottom: 0;
}
.team-content p{
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #6f6a5f;
}
/* Team End */

@media(max-width:990px){
    .know-wrap{
        padding: 80px 0 40px 0;
    }
    .services-wrap{
        padding: 40px 0;
    }
    .mains-wrap {
        padding: 40px 0;
    }
    .whychoose-wrap{
        padding: 40px 0;
    }
    .know-head {
        padding: 40px 0 10px 0;
    }
    .value {
        margin-top: 45px;
    }
    .calculator-wrap {
        padding: 40px 0;
    }
    .pp-main {
        padding: 40px 0 40px 0;
        background-color: #fffdf8;
    }
    .pp-right-head{
        margin-top: 20px;
    }
    .pp-right{
        margin-top: 20px;
    }
}

.addition-top-wrap{
    background-image: url(../Images/assets/additions-top-bg.jpg) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.qp-link ul li{
    margin: 2px 0;
}
.loan-amt input{
    padding: 4px 7px;
    background-color: #fff;
    border-radius: 4px;
    outline: none;
    border: 1px solid #b8862c;
    font-size: 16px;
}
.additions-text p{
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #6f6a5f;
}
.terms p{
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #6f6a5f;
}
#successMessage{
    display: block;
    margin-bottom: 10px;
    background-color: #278a43;
    color: #fff;
    padding: 5px;
    border-radius: 2px;
}
#error_message {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 5px;
}
#failMessage{
    display: block;
    margin-bottom: 10px;
    background-color: #b83a32;
    color: #fff;
    padding: 5px;
    border-radius: 2px;
}
.bankinfos-wrap{
    padding: 40px;
    background-color: #182d4d;
    border-radius: 4px;
    color: #fff;
}
.bankinfos-wrap ul{
    list-style: none;
    padding-left: 0;
}
.bankinfos-wrap ul li{
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: baseline;
}
.loan-co{
    max-width: 30px;
    width: 100%;
}
.flow-t p{
    color: #182d4d;
    font-weight: 600;
}

.flow-info{
    padding: 80px 0;
}
.flow-info h2{
    font-size: 40px;
    color: #b8862c;
    font-weight: 700;
}
.flow-info ul{
    list-style: none;
    padding-left: 0;
}
.flow-container{
    padding: 10px 15px;
    background-color: #eee4cf;
    border-radius: 4px;
    margin-bottom: 10px;
    min-height: 120px;
}
.flow-btn{
    font-size: 24px;
    color: #b8862c;
}
.flow-container li{
    font-size: 18px;
    font-weight: 700;
}
.flow-container p{
    font-size: 14px;
    font-weight: 500;
}
.flow-more{
    text-decoration: none;
    color: #fff;
}
.flow-more:hover{
    color: #fff;
}
.no-input{
    background-color: #182d4d !important;
    color: #fff !important;
}
.no-input::placeholder{
    color: #fff !important;
}
.footer-social a{
    text-decoration: none;
}