/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url('../css/vendor/bootstrap.min.css');
@import url('../css/vendor/fontawesome.css');
@import url('../css/vendor/brands.css');
@import url('../css/vendor/regular.css');
@import url('../css/vendor/solid.css');
@import url('../css/vendor/swiper-bundle.min.css');

@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 0.7;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 1px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.5, 1.5, 1.5);
        transform-origin: center;
        border-width: 10px;
    }
}


:root {
    --dark-bg: #151515;
    --secondary-dark: #6fe9df;
    --dark-2: #353535;
    --accent-color: #011d4f;
    --gray-color: #7a7a7a;
    --font-1: 'Quicksand', sans-serif;
    --font-2: 'Cormorant', serif;
}

body {
    background-color: #ffffff
}

/*.text-white{*/
/*    color: #212529 !important;*/
/*}*/

h1 {
    color: #011c4e !important;
}

h2 {
    font-size: 68px;
    color: #011c4e !important;

}

h3 {
    font-size: 48px;
    color: #011c4e !important;

}

h4 {
    font-size: 32px;
    color: #ffffff;

}

h5 {
    font-size: 18px;
    color: #011c4e !important;

}

h6 {
    font-size: 14px;
    color: #011c4e !important;

}

ul {
    list-style: none;
}

img {
    object-fit: cover;
}

section {
    background-size: cover;
    background-position: center;
}

button,
a[type="button"] {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
}

.button {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s
}

.button-outline,
.button-outline:hover {
    border-width: 1px;
    border-color: currentColor;
    border-style: solid;
}

.button:hover {
    color: white;
}

.hover-transform:hover {
    transform: translateY(-10px);
}

a:hover {
    color: var(--accent-color);
}

button:hover,
a[type="button"]:hover {
    color: white;
}

a {
    text-decoration: none;
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}

.ls-2 {
    letter-spacing: 2px;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.form input,
.form textarea,
.form select {
    background-color: transparent;
    border-radius: 5px;
    border-top: none;
    border-bottom: solid 1px white;
    border-left: solid 1px white;
    border-right: none;
    border-radius: 0;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    box-shadow: none;
    background-color: transparent;
    border-color: blue;
}

.form input::placeholder,
.form textarea::placeholder {
    color: #ffffff88;
}

.form .form-check-input:checked {
    background-color: transparent;
}

.form .form-check-input,
.form .form-check-input:focus {
    border: solid 1px var(--accent-color);
}

.form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-check-lg" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form .submit_form {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    background-color: var(--accent-color-1);
    border-radius: 5px;
}

.submit_form-subscribe {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: var(--accent-color-1);
    border-radius: 5px;
}

.submit_form-subscribe:hover {
    background-color: var(--dark-bg);
    color: white;
    filter: none;
}

.maps {
    width: 100%;
    height: 380px;
    transition: filter 0.5s;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

.maps:hover {
    filter: none;
}

#header {
    transition: all 0.5s ease;
}

.navbar-expand-lg {
    background-color: #212529;
}

.bg-transparent {
    color: black;
}

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    font-family: var(--font-1);
    padding-block: 1.2rem;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.nav-link:focus {
    color: white !important;
}

.navbar-toggler {
    border: none;
    color: var(--accent-color);
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: transparent;
    color: var(--accent-color);
}

.dropdown-menu {
    background-color: var(--secondary-dark);
    border-radius: 0;
    border: none;
    padding: 0;
    padding-block: 0.5rem;
    box-shadow: 1px 1px 23px 1px rgba(0, 0, 0, 0.17);
    -webkit-box-shadow: 1px 1px 23px 1px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 1px 1px 23px 1px rgba(0, 0, 0, 0.17);
}

.dropdown-item {
    padding-block: 0.5rem;
    color: white;
    font-family: var(--font-1);
    font-size: 1rem;
    font-weight: 700;
    padding-inline: 2rem;
}

.dropdown-item.active {
    color: var(--accent-color);
    background-color: transparent;
}

.dropdown-item:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.dropdown-item:focus {
    color: var(--accent-color);
}

.section {
    /*padding: 2em 1em 2em 1em;*/
    overflow: hidden;
}

.r-container {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}

.bg-dark-color {
    background-color: var(--dark-bg);
}

.bg-dark-2 {
    background-color: var(--dark-2);
}

.bg-secondary-dark {
    background-color: var(--secondary-dark);
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.accent-color {
    color: var(--accent-color);
}


.border-accent-color {
    border-color: var(--accent-color) !important;
}

.text-gray {
    color: var(--gray-color) !important;
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-dark {
    background-color: var(--dark-bg);
    color: white;
    border: none;
}

.btn-dark:hover {
    background-color: var(--accent-color-1);
    color: white;
    border: none;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(180deg, #02010100 0%, var(--dark-bg) 100%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.bg-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #1f74b4;
    /*background-image: linear-gradient(90deg, var(--dark-bg) 0%, #151515BF 100%);*/
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.bg-overlay-1 {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: url("../image/about.png");
    background-position: center center;
    background-size: cover;
    filter: brightness(41%) contrast(91%) saturate(0%) blur(0px) hue-rotate(0deg);
}

.texture-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: url("../image/liquifer.png");
    background-position: center center;
    background-size: cover;
    opacity: 0.05;
}

.logo-container {
    max-width: 190px;
}

.divider {
    display: flex;
    align-items: center;
}

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid var(--accent-color);
    max-width: 80px;
    min-width: 80px;
}

.divider-before::before {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid var(--accent-color);
    max-width: 80px;
    min-width: 80px;
}

.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

.image-infinite-bg {
    height: 90vh;
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.r-progress {
    --value: 17;
    --progress-color: var(--accent-color);
    --secondary-progress-color: var(--accent-color-1);
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 15px;
    background-color: var(--secondary-progress-color);
    display: flex;
    border-radius: 3px;
    overflow: hidden;
}

.r-progress-bar .progress-value {
    height: 100%;
    width: calc(var(--progress) * 1%);
    background-color: var(--progress-color);
    position: relative;
    /* border-radius: 3px; */
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    left: calc((var(--progress) * 1%) - 3rem);
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: white;
    font-size: 14px;
    line-height: 1.2;
    /* font-weight: 700; */
    font-family: var(--font-1);
}

.bg-attach-fixed {
    background-attachment: fixed;
}

.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 20px;
    width: 1.8rem;
    height: 1.8rem;
    background-color: var(--accent-color-2);
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.social-item.bg-accent-color-1 {
    background-color: var(--accent-color-1);
}

.social-item.bg-accent-color {
    background-color: var(--accent-color);
    width: 2.6rem;
    height: 2.6rem;
}

.social-item:hover {
    color: white;
    transform: scale(1.1);
}

.share-button {
    background-color: var(--accent-color-1);
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.share-button:hover {
    background-color: var(--accent-color);
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.breadcrumb .breadcrumb-item>a {
    color: var(--accent-color);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--accent-color-1);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--accent-color-1);
}

.swiper-pagination {
    margin-block: 1rem;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: black;
}

.video-container {
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 5rem;
    background-color: transparent;
    border: solid 2px var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 2rem;
}

.video-btn:hover {
    color: var(--accent-color);
}

.border-custom {
    border-width: 0px 1px 0px 0px;
    border-color: var(--accent-color);
    border-style: solid;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.5rem;
    aspect-ratio: 1/1;
    width: 4rem;
    height: 4rem;
}

.imgcontent {

    height: -webkit-fill-available;
}

.col-12.col-sm-6.col-md-3 {
    height: 100%;

}

i.bi.bi-wallet2 {
    color: #011d4f;
}

img.img-fluid {
    border-radius: 10px;
}

a.nav-link.text-yellow {
    color: #ffde59;

}

i.fa-solid.fa-bars-staggered {
    color: #ffde59;
}

.request-loader {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50% !important;
    border: solid 2px var(--accent-color);
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color-1);
}

.request-loader:hover {
    border: solid 2px var(--accent-color);
    color: var(--accent-color);
}


.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color-1);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.post-button {
    background-color: transparent;
    color: var(--accent-color) !important;
    border: none !important;
}

.post-button:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    transform: scale(1.15);
}

.card.with-border-bottom {
    border-bottom: 5px solid var(--accent-color) !important;
}

.list-group .list-group-item {
    border: none;
    border-radius: 5px;
}

.list-group .list-group-item.active {
    background-color: var(--accent-color);
}

.list-group .list-group-item.list-group-item-action:hover {
    background-color: var(--accent-color);
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: white;
}

.accordion-button:not(.collapsed):hover {

    color: white;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 0px;
}

.accordion-button {
    background-color: white;
    border-radius: 0px;
    color: black;
}

.accordion-button:hover {
    filter: none;
    color: black;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
    border: solid 2px var(--accent-color-1);
}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 1rem;
}

.accordion-button::after {
    filter: invert(0);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

[data-bs-theme=dark] .accordion-button::after {
    --bs-accordion-btn-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
    --bs-accordion-btn-active-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
}

.outer-margin {
    margin-right: -7rem;
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.list li {
    padding: 0;
}

.card .link {
    color: var(--accent-color);
}

.card .link:hover {
    color: white;
}

.link {
    color: white;
}

.link:hover {
    color: var(--accent-color);
}

.team-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.team-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    background-color: transparent;
    background-image: linear-gradient(180deg, #02010100 0%, var(--accent-color) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    transform: translateY(-20px);
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.team-image:hover .team-overlay {
    top: 0%;
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}

.team-container .social-item {
    width: 2.2rem;
    height: 2.2rem;
}

.team-container .social-item:hover {
    background-color: var(--accent-color);
    transform: none;
}

.link-social {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    position: relative;
}

.link-social:hover {
    color: white;
}

.link-social:hover::after {
    content: '';
    width: 40px;
    height: 2px;
    bottom: 0;
    margin-bottom: -5px;
    position: absolute;
    background-color: var(--accent-color);
}

@media only screen and (max-width:993px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 14px;
    }

    h6 {
        font-size: 12px;
    }

    .section {
        /*padding: 2em 1em 1em 2em;*/
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }

    #header {
        background: rgba(19, 19, 19, 0.88);
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    .border-custom {
        border-width: 0px 0px 1px 0px;
    }

    .outer-margin {
        margin-right: 0;
    }

    .nav-link {
        padding-block: 0.2rem;
    }
}



/* //new add css */



.highlight {
    background-color: #f0f8ff;
    color: #3488ba;
    /* Highlight text color */
    font-weight: bold;
    padding: 0 5px;
}

/*###############  START   FOOTER ################*/

/*##################  footer  ############3*/
.all_home_components {
    background-color: #196998;
}

@media screen and (min-width:980px) {
    .all-footer2 {
        display: flex;
        gap: 9rem;
        width: 60%;

    }

    .footer {
        color: white;
        background-color: #196998;
    }

    .all-footer1 {
        width: 35%;
        margin-left: 5rem;
    }

  

    .list-wrap {
        margin-left: -33px;
    }
}

.text-reset h5 i {
    color: rgb(248, 164, 107);
}

.footer {
    color: white;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {

    background-color: rgb(0, 140, 255);
}

::-webkit-scrollbar-track {
    background-color: #f0f1f3;
}

.list-wrap p {
    transition: .3s;
}

.list-wrap p:hover {
    margin-left: 1rem;
    transition: .5s;
}

@media screen and (min-width:500px) and (max-width:980px) {
    .all-footer2 {
        display: flex;
        gap: 7rem;
        width: 100%;
        padding-bottom: 5rem;

    }

    .all-footer1 {
        width: 100%;
        margin-bottom: 5rem;
    }

}

@media screen and (max-width:550px) {
    .all-footer2 {
        padding-top: 4rem;
        padding-bottom: 4rem;

    }

    .Footer-child {
        padding: 1rem;
    }


}

.copyright-wrap {
    border-top: 1px solid rgb(9, 62, 168);
}

/*###############  end   footer ################*/


.hero-section {
    padding: 50px 0;
    background-color: #e9fcf8;
}

.text-dark {
    color: #011c4e !important;
}

.hero-title .highlight {
    color: #ff6f3c;
}

.hero-description {
    font-size: 1.1rem;
    margin-top: 15px;
    color: #333;
    line-height: 1.5;
}

.image-grid {
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.hero-img {
    border-radius: 10px;
    width: 100%;
    height: 450px;
    object-fit: cover;
    /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);*/
}

.button-hero1 {
    background-color: #011c4e !important;
    border: none;
    font-size: 1rem;
    padding: 10px 20px;
}

.button-hero2 {
    background-color: #011c4e !important;
    border: none;
    font-size: 1rem;
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-img {
        width: 100%;
        height: auto;
    }

    /* Hiding the big-size-section for screens smaller than 768px */
    .big-size-section {
        display: none;
    }
}

@media (max-width: 568px) {

    /* Ensuring the mobile section is visible only on small screens */
    .mobile-size-section {
        display: block;
    }
}

@media (min-width: 568px) {

    /* Hiding the mobile-size-section for screens larger than 568px */
    .mobile-size-section {
        display: none;
    }

    /* Ensuring the big-size-section is visible on larger screens */
    .big-size-section {
        display: block;
    }
}

.bg-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.toast {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



i.bi.bi-youtube {
    color: #ff0000c9;
}


.services-section {
    text-align: center;
    margin-top: 0px;
}

.services-section h2 {
    font-weight: bold;
}

.services-section p {
    color: #555;
    margin-bottom: 40px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 50px;
    color: #ff934e;
}

.service-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.service-text {
    color: #666;
    font-size: 15px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


/* Portfolio Section */
.portfolio-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.portfolio-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 200px;
    overflow: hidden;
}

.portfolio-image .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-image:hover .img-overlay {
    opacity: 1;
}

.overlay-text {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.portfolio-content {
    padding: 15px;
    text-align: center;
}

.portfolio-content h5 {
    color: #333;
    margin: 10px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-card {
        margin-bottom: 20px;
    }
}

.portfolio-wrap {
    height: 400px;
}

.portfolio .portfolio-wrap {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-wrap:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 568px) {
    .portfolio .portfolio-info {
        background: rgba(0, 0, 0, 0.8);
        color: #fff;
        padding: 20px;
        position: absolute;
        bottom: 0;
        width: 100%;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }
}

@media (min-width: 568px) {
    .portfolio .portfolio-info {
        background: rgba(0, 0, 0, 0.8);
        color: #fff;
        padding: 20px;
        position: absolute;
        bottom: 0;
        width: 100%;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    #about_us {
        
    }
}


.portfolio .portfolio-wrap .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.portfolio .portfolio-info p {
    font-size: 14px;
    margin: 0;
}

.portfolio-links a {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
    transition: color 0.3s;
}

.portfolio-links a:hover {
    color: #0d6efd;
}

@media (max-width: 768px) {
    .portfolio .portfolio-item {
        margin-bottom: 20px;
    }
}


.brand-partners {
    background-color: #f8f9fa;
    /* Light grey background */
    padding: 10px 0;
}

.brand-partners h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.brand-partners .carousel-item img {
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}


.youtube-container {
    text-align: center;
    padding: 20px;
}

.youtube-title {
    font-size: 2rem;
    color: #333;
}

.youtube-description {
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.youtube-card {
    border-radius: 10px;
    padding: 50px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.youtube-card:hover {
    transform: translateY(-5px);
}

.youtube-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.youtube-card-title {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.youtube-icon {
    font-size: 2.5rem;
    color: #eb5b28;
    margin-bottom: 10px;
}


.process-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(2px 4px 6px #011d4f);

}

.process-title {
    font-weight: bold;
    text-transform: uppercase;
    color: #011d4f;
}

.process-step {
    margin-bottom: 20px;
}

.process-step h5 {
    color: #198754;
}


.container {}

.btn-custom {
    background-color: #ff7f50;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    text-transform: uppercase;
    border: none;
    width: 200px;
}

.btn-custom:hover {
    background-color: #ff6347;
    color: white;
}

.modal-content {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.form-label {
    font-weight: bold;
    color: #f3efef;
}

.form-control:focus {
    border-color: #ff7f50;
    box-shadow: 0 0 0 0.2rem rgba(255, 127, 80, 0.25);
}

.modal-header {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    color: #ff7f50;
}

.btn-close {
    font-size: 1.5rem;
    cursor: pointer;
}

.required {
    color: red;
}

.form-control {
    font-size: 16px;
    padding: 12px;
    border-radius: 8px;
}

.modal-footer {
    text-align: center;
}

.modal-dialog {
    max-width: 100%;
    width: 100%;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .modal-content {
        padding: 20px;
    }

    .btn-custom {
        width: 100%;
    }

    .modal-header {
        font-size: 20px;
    }

    .form-control {
        padding: 10px;
    }
}

.for-image {
    background-image: url(/image/main\ banner.jpg);
    width: 100%;
    /* Full width on all screens */
    max-width: 2200px;
    /* Image ki actual width tak limit */
    height: auto;
    min-height: 850px;
    /* Choti screens ke liye minimum height */
    background-size: contain;
    /* Image ki actual size maintain karega */
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    margin: auto;
    /* Centering */
    font-size: 20px;
}

.heddingend {
    margin-top: -50px;
}

.heddingtop {
    margin-bottom: -100px;
    position: relative;
    z-index: 9;
}

/* Media Query for Tablets */
@media (max-width: 1024px) {
    .for-image {
        min-height: 500px;
        background-size: cover;
        /* Mobile me better fit hoga */
        padding: 0px;
    }

    h4.hero-title {
        font-size: 13px;

    }
}

/* Media Query for Mobile */



@media (max-width: 768px) {
    .for-image {

        background-size: contain;
        font-size: 13px;

    }

    h4.hero-title {
        font-size: 14px;
        /* Mobile ke liye chhota font */
        text-align: center;
    }

    .heddingtop {
        margin-bottom: -35px;
    }

    .heddingend {
        margin-top: -22px;
    }
}


.page-title {
    position: relative;
    z-index: 10;
    background-position: center;
    background-attachment: fixed;
}


.page-title::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/image/main\ banner.jpg);
    z-index: -1;
    background-position: center;

}

.page-title .heading-title {
    text-align: center;
}

.page-title .heading-title .title {
    color: #011d4f;
}

h1.title.heading-main.text.text-light {
    font-size: 33px;
    line-height: 88px;
    font-weight: 600px;
}

.page-title .heading-title p {
    /* color: var(--White); */
    line-height: 25.2px;
    font-size: 25px;
    line-height: 30.5px;
    color: #011d4f;
}

.page-title form fieldset input::placeholder {
    color: rgb(124, 127, 132);
    font-weight: 400;
}

.page-title.home01,
.page-title.home05,
.page-title.career {
    background-attachment: fixed;
    padding: 154px 0 154px;
    background-size: cover;
    background-color: white;
}

.row.justify-center.relative {
    justify-content: center;
}

.page-title.home01 .heading-title,
.page-title.home05 .heading-title,
.page-title.career .heading-title {
    margin-bottom: 45px;
}

.page-title.home01 .tf-dropdown-sort,
.page-title.home05 .tf-dropdown-sort,
.page-title.career .tf-dropdown-sort {
    padding-right: 30px;
    border-right: 1px solid var(--Line);
}

.page-title.home01 form,
.page-title.home05 form,
.page-title.career form {
    flex: 1;
}

.page-title.home01 form fieldset input,
.page-title.home05 form fieldset input,
.page-title.career form fieldset input {
    border: none;
}

.page-title.home01 .form-title,
.page-title.home05 .form-title,
.page-title.career .form-title {
    padding: 8px 8px 8px 24px;
}

.page-title.home01 .btn-filter,
.page-title.home05 .btn-filter,
.page-title.career .btn-filter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: 54px;
    border-radius: 16px;
    cursor: pointer;
}

.page-title.home02 {
    background-image: url(../images/section/page-title-2.jpg);
    padding: 232px 0 294px;
    background-size: cover;
    background-attachment: fixed;
}

.page-title.home02 .heading-title {
    margin-bottom: 80px;
}

.page-title.home02 .form-title {
    padding: 16px;
    gap: 12px;
}

.page-title.home02 form {
    flex-grow: 1;
}

.page-title.home02 .nice-select {
    flex-grow: 1;
}

.page-title.home02 .btn-filter {
    background: var(--Sub-primary-2);
}

.page-title.home02 .btn-filter svg path {
    stroke: var(--Primary);
}

.page-title.home02 .checkbox-item label input:checked~.btn-checkbox {
    background-color: var(--Primary);
    border-color: var(--Primary);
}

.page-title.home03 {
    background-image: url(../images/section/page-title-3.jpg);
    background-size: cover;
    padding: 200px 0 310px;
}

.page-title.home03 .heading-title {
    text-align: start;
    margin-bottom: 74px;
}

.page-title.home03 .widget-tabs .widget-menu-tab {
    justify-content: start;
}

.page-title.home03 .form-title {
    padding: 16px;
    gap: 12px;
}

.page-title.home04 {
    background-image: url(../images/section/page-title-4.jpg);
    padding: 112px 0 207px;
    background-size: cover;
}

.page-title.home04 .heading-title {
    margin-bottom: 63px;
}

.page-title.home04 .form-title {
    padding: 16px;
    gap: 12px;
}

.page-title.home04 form {
    flex-grow: 1;
}

.page-title.home04 .nice-select {
    flex-grow: 1;
}

.page-title.home05 {
    background-image: url(../images/section/page-title-5.jpg);
    padding: 237px 0 300px;
    background-size: cover;
}

.page-title.home05 .heading-title {
    margin-bottom: 45px;
}

.page-title.style-2 {
    padding: 132px 0 232px;
    background-image: url(../images/section/page-title-loan.jpg);
    background-size: cover;
}

.page-title.style-2::after {
    display: none;
}

.page-title.style-2 .heading-title .title {
    color: var(--Heading);
}

.page-title.career {
    background-image: url(../images/section/page-title-career.jpg);
    background-size: cover;
    padding: 384px 0 0;
    background-repeat: no-repeat;
}

.page-title.career .heading-title {
    margin-bottom: 56px;
}

.page-title.career .heading-title .title {
    line-height: 70px;
}

.page-title.career .content-inner {
    margin-bottom: -35px;
}

.page-title.career .form-title {
    box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.07);
}

.page-title .wd-search-form {
    max-width: calc(100vw - 30px);
}


.counter-area {
    position: relative;
}

.counter-area {
    position: relative;
}

.counter__shape {
    position: absolute;
    right: 0;
    bottom: 0;
    filter: brightness(0.5);
}

.counter__wrp {
    overflow: hidden;
    padding: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* margin-top: -120px; */
    z-index: 2;
    background: #11224b !important;
}

@media (max-width: 767px) {

    .counter__wrp,
    .quote__wrp {
        justify-content: center;
        margin-top: 0px !important;
        padding: 60px 30px;
    }
}

.counter__item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.counter__item h3 {
    font-size: 36px;
    color: var(--white);
    font-weight: 700;
    line-height: 50px;
}

.counter__item h3 span {
    color: var(--white);
}

.case-area {
    overflow: hidden;
}

.case__image {
    position: relative;
}

.case__image::before {
    background: linear-gradient(0deg, #0f0d1d 0%, rgba(15, 13, 29, 0) 125%);
}

.case__content {
    position: absolute;
    bottom: 40px;
    width: 100%;
    left: 30px;
}

.card.p-3.mb-3.bg-light {
    border: solid #011d4f 1px !important;
}

.card.p-3.bg-light {
    border: solid #011d4f 1px !important;
}

.footer-services {
    font-size: 15px;
}

.footer-mail {
    font-size: 18px;
}

@media (max-width: 767px) {

    .counter__wrp,
    .quote__wrp {
        justify-content: center;
        margin-top: 0px !important;
        padding: 60px 30px;
    }
}

.counter__item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.counter__item h3 {
    font-size: 36px;
    color: white;
    font-weight: 700;
    line-height: 50px;
}

.counter__item h3 span {
    color: white;
}

.case-area {
    overflow: hidden;
}

.case__image {
    position: relative;
}

.case__image::before {
    background: linear-gradient(0deg, #0f0d1d 0%, rgba(15, 13, 29, 0) 125%);
}

.case__content {
    position: absolute;
    bottom: 40px;
    width: 100%;
    left: 30px;
}

.case__btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    position: absolute;
    right: 30px;
    bottom: 40px;
    z-index: 2;
}

.case__btn i {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border-radius: 0;
    background: var(--gradient-bg);
    font-size: 20px;
    color: var(--secondary-color);
    color: var(--white);
    transition: var(--transition);
}

.case__btn::after {
    position: absolute;
    content: url(../../../../assets/images/shape/case-btn-shape.html);
    right: -20px;
    top: 0px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.case__btn::before {
    position: absolute;
    content: url(../../../../assets/images/shape/case-btn-shape.html);
    left: -20px;
    top: -28px;
    z-index: -1;
    transform: rotate(180deg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.case__btn:hover::before {
    left: -10px;
    top: -18px;
    opacity: 1;
    visibility: visible;
}

.case__btn:hover::after {
    right: -10px;
    top: -10px;
    opacity: 1;
    visibility: visible;
}

.case__btn:hover i {
    color: var(--primary-color);
    background: var(--white);
}

.case__item,
.project-three__item {
    position: relative;
}

.case__item:hover .case__btn,
.project-three__item:hover .case__btn {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

/* .case__slider {
    margin-left: 19%;
  } */
@media (max-width: 1600px) {
    /* .case__slider {
      margin-left: 12%;
    } */
}

@media (max-width: 1399px) {
    /* .case__slider {
      margin-left: 10%;
    } */
}

@media (max-width: 991px) {
    .case__slider {
        /* margin-left: 0%; */
        padding: 0 12px;
    }
}

.case__slider .swiper-slide.swiper-slide-active .case__item .case__btn,
.case__slider .swiper-slide.swiper-slide-active .project-three__item .case__btn {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

.case-two-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-bottom: 420px;
}

.case-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
}

.case-two__bg img {
    width: 100%;
}

.case-two__container {
    max-width: 1600px;
    padding: 0 15px;
    margin: 0 auto;
}

.case-two__content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 1;
}

.case-two__content span {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}


button.btn.btn-primary.w-100.py-3.rounded-0 {
    background-color: #011c4e;
    font-weight: 500;
}


.text-dark {
    color: #011c4e !important;
}



button.accordion-button {
    background-color: #011c4e !important;
    color: #ffde59 !important;
    font-size: 21px !important;
    font-weight: 400 !important;
}

.accordion-body {
    background-color: #ffffff;
    color: black;
    font-size: 20px;
    font-weight: 400;
}