
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

:root {
    --finote-orange: #f47c20;
    --finote-orange-dark: #cf5f0a;
    --finote-navy: #0e1f3d;
    --finote-ink: #1e2a3a;
    --finote-ghost: #f7f9fc;
}

body {
    font-family: "Inter", "DM Sans", sans-serif;
    color: var(--finote-ink);
    background: #fff;
    overflow-x: hidden;
}

html,
body {
    max-width: 100%;
}

html,
body,
.container-fluid {
    overflow-x: clip;
}

.finote-hero {
    background:
        linear-gradient(120deg, rgba(14, 31, 61, 0.92) 0%, rgba(246, 249, 255, 0.24) 100%),
        linear-gradient(300deg, rgba(255, 255, 255, 0.20) 0%, rgba(14, 31, 61, 0.86) 100%);
    border-radius: 0 0 28px 28px;
    padding: 150px 0 90px;
    margin-bottom: 32px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1180px;
    }
}

.finote-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    padding: 8px 14px;
    margin-bottom: 16px;
}

.finote-hero h1,
.finote-hero p {
    color: #fff;
}

.finote-page-header {
    background:
        linear-gradient(120deg, rgba(14, 31, 61, 0.92) 0%, rgba(246, 249, 255, 0.22) 100%),
        linear-gradient(300deg, rgba(255, 255, 255, 0.16) 0%, rgba(14, 31, 61, 0.85) 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 110px 0 54px;
    border-radius: 0 0 28px 28px;
    margin-bottom: 30px;
}

.finote-page-header h1,
.finote-page-header p {
    color: #fff;
}

.finote-panel {
    border: 1px solid #c9d8ea;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(10, 27, 56, 0.1);
    transition: 0.3s ease;
}

.finote-panel:hover {
    transform: translateY(-4px);
    border-color: #bfd1e7;
    box-shadow: 0 12px 28px rgba(10, 27, 56, 0.14);
}

@media (min-width: 992px) {
    .finote-panel {
        border-color: #c1d3e8;
        box-shadow: 0 10px 26px rgba(10, 27, 56, 0.12);
    }
}

.finote-list-check li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
}

.finote-list-check li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--finote-orange);
    position: absolute;
    left: 0;
    top: 1px;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn.btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
}

/* Modal overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal box */
.modal-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.modal-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.close-modal-btn {
    margin-top: 20px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: rgba(13, 29, 58, 0.14);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1055;
    border-radius: 0;
    transition: background-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease, border-radius .35s ease;
}

.nav-bar .container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    transition: border-color .35s ease;
}

.nav-bar.nav-transparent {
    background: rgba(13, 29, 58, 0.14);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    box-shadow: none;
    border-radius: 0;
}

.nav-bar.nav-scrolled {
    background: rgba(13, 29, 58, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(7, 14, 31, 0.14);
    border-radius: 0;
}

.nav-bar.nav-scrolled .container {
    border-color: transparent;
}

.nav-bar.nav-scrolled.nav-curved {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 28px 28px;
}

.nav-bar.nav-scrolled.nav-curved .navbar-light .navbar-brand .brand-title,
.nav-bar.nav-scrolled.nav-curved .navbar-light .navbar-brand .brand-subtitle,
.nav-bar.nav-scrolled.nav-curved .navbar .navbar-nav .nav-item .nav-link {
    color: var(--finote-navy);
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: .5s;
}

.brand-logo {
    width: 114px;
    height: auto;
    border-radius: 0;
    object-fit: cover;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.brand-mark .brand-text {
    line-height: 1.1;
}

.brand-mark .brand-title {
    font-weight: 800;
    font-size: 1.34rem;
    letter-spacing: 0.2px;
}

.brand-mark .brand-subtitle {
    font-size: 0.92rem;
    opacity: 0.92;
    margin-top: 2px;
    letter-spacing: 0.2px;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 80px;
}

.nav-bar .navbar-light .navbar-brand .brand-title,
.nav-bar .navbar-light .navbar-brand .brand-subtitle,
.nav-bar .navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
}

.nav-bar.nav-scrolled .navbar-light .navbar-brand .brand-title,
.nav-bar.nav-scrolled .navbar-light .navbar-brand .brand-subtitle,
.nav-bar.nav-scrolled .navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
}

.navbar .navbar-nav .nav-item .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    transition: color .25s ease;
}

.navbar .navbar-nav .nav-item.active .nav-link,
.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--finote-orange) !important;
}

.nav-bar .btn.btn-primary {
    background: var(--finote-orange);
}

.nav-bar .btn.btn-primary:hover {
    background: var(--finote-orange-dark);
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 7px 10px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 14px 0;
    }

    .nav-bar {
        background: rgba(13, 29, 58, 0.92);
    }

    .nav-bar.nav-transparent {
        background: rgba(13, 29, 58, 0.14);
        border-radius: 0;
        box-shadow: none;
    }

    .nav-bar.nav-scrolled {
        background: rgba(13, 29, 58, 0.2);
        border-radius: 0;
        box-shadow: 0 8px 22px rgba(7, 14, 31, 0.14);
    }

    .nav-bar.nav-scrolled.nav-curved {
        background: rgba(255, 255, 255, 0.86);
        border-radius: 0 0 28px 28px;
        box-shadow: 0 10px 24px rgba(7, 14, 31, 0.16);
    }

    .nav-bar .container {
        border-color: transparent;
    }

    .nav-bar .navbar-light .navbar-brand .brand-title,
    .nav-bar .navbar-light .navbar-brand .brand-subtitle {
        color: #fff;
    }

    .nav-bar.nav-transparent .navbar-light .navbar-brand .brand-title,
    .nav-bar.nav-transparent .navbar-light .navbar-brand .brand-subtitle,
    .nav-bar.nav-scrolled .navbar-light .navbar-brand .brand-title,
    .nav-bar.nav-scrolled .navbar-light .navbar-brand .brand-subtitle {
        color: #fff;
    }

    .nav-bar.nav-scrolled.nav-curved .navbar-light .navbar-brand .brand-title,
    .nav-bar.nav-scrolled.nav-curved .navbar-light .navbar-brand .brand-subtitle {
        color: var(--finote-navy);
    }

    .nav-bar .navbar .navbar-nav .nav-item .nav-link {
        color: var(--finote-navy);
    }

    .brand-logo {
        width: 100px;
        height: auto;
    }

    .brand-mark .brand-title {
        font-size: 1.2rem;
    }

    .brand-mark .brand-subtitle {
        font-size: 0.8rem;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 14px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 14px 0;
        width: 100%;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 12px;
        padding: 6px 10px;
        gap: 2px;
    }

    .navbar .navbar-nav .nav-btn {
        width: auto;
        display: flex;
        margin-left: 8px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        width: 86px;
        height: auto;
    }

    .brand-mark .brand-title {
        font-size: 1.08rem;
    }

    .brand-mark .brand-subtitle {
        font-size: 0.74rem;
    }
}

@media (max-width: 991px) {
    .finote-hero {
        padding-top: 160px;
    }

    .finote-page-header {
        padding-top: 124px;
    }
}

.home-logo-panel {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
}

.home-logo-panel:hover {
    transform: none;
    border-color: transparent;
}

.home-logo-panel .home-logo {
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.home-profile-row {
    align-items: stretch;
}

.home-profile-row > div {
    display: flex;
}

.home-profile-row .finote-panel {
    width: 100%;
}

.services-intro-row {
    position: relative;
}

.services-page-content {
    margin-top: -6px;
}

.services-intro-copy,
.services-plain-copy {
    position: relative;
}

.services-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--finote-orange);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.services-summary {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5d6b7d;
    max-width: 520px;
}

.services-intro-copy-main {
    margin-top: -10px;
    padding-top: 0;
    padding-bottom: 6px;
}

.services-plain-copy {
    padding: 8px 0;
}

.services-plain-copy-intro {
    max-width: none;
    margin: 0;
    padding-top: 4px;
}

.services-subtitle {
    font-size: clamp(1.55rem, 2vw, 2rem);
    line-height: 1.25;
    color: #0a1b38;
}

.services-plain-copy h2,
.services-intro-copy h1 {
    color: #0a1b38;
}

.services-plain-copy p {
    color: #5d6b7d;
    line-height: 1.85;
}

.services-feature-grid {
    row-gap: 28px;
}

.services-feature-copy {
    padding: 8px 0 0;
    border-top: 2px solid rgba(237, 104, 60, 0.2);
}

.services-feature-copy h4,
.services-feature-copy h5 {
    margin-bottom: 12px;
}

.services-feature-copy p {
    color: #5d6b7d;
    line-height: 1.8;
}

.about-feature-grid {
    row-gap: 28px;
}

.about-feature-copy {
    padding-right: 12px;
}

.home-image-copy {
    padding: 18px 20px 18px 0;
}

.home-image-copy h2 {
    color: #0a1b38;
}

.home-image-copy p {
    color: #5d6b7d;
    line-height: 1.85;
}

.mission-image-copy {
    padding-top: 10px;
    padding-right: 10px;
}

.finote-media-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(10, 27, 56, 0.14);
    border: 1px solid #dbe5f0;
    margin: 0;
}

.finote-media-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.finote-media-card::after {
    display: none;
}

.finote-media-card figcaption {
    position: absolute;
    left: 18px;
    right: auto;
    bottom: 18px;
    max-width: calc(100% - 36px);
    z-index: 2;
    padding: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.finote-media-card:hover img {
    transform: scale(1.02);
}

.finote-media-feature {
    min-height: 100%;
}

.finote-media-feature img {
    min-height: 420px;
}

.finote-media-compact img {
    min-height: 235px;
}

.finote-media-wide img {
    min-height: 320px;
}

.finote-media-regular img {
    min-height: 340px;
}

.finote-media-service-hero img {
    min-height: 0;
    height: auto;
    max-height: 430px;
    object-fit: cover;
    object-position: center 38%;
}

.finote-media-service-support img {
    min-height: 0;
    aspect-ratio: 16 / 9;
    max-height: 380px;
    object-fit: cover;
    object-position: center 28%;
}

.finote-media-portrait img {
    min-height: 540px;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 767.98px) {
    .home-profile-row {
        row-gap: 16px;
    }

    .services-intro-copy,
    .services-plain-copy {
        text-align: left;
    }

    .services-summary {
        max-width: none;
    }

    .services-subtitle {
        font-size: 1.45rem;
    }

    .services-feature-copy {
        padding-top: 2px;
    }

    .about-feature-copy {
        padding-right: 0;
    }

    .home-image-copy,
    .mission-image-copy {
        padding-right: 0;
    }

    .finote-media-feature img {
        min-height: 300px;
    }

    .finote-media-service-hero img {
        max-height: none;
    }

    .finote-media-service-support img {
        max-height: none;
    }

    .finote-media-compact img,
    .finote-media-card img {
        min-height: 220px;
    }

    .finote-media-regular img {
        min-height: 250px;
    }

    .finote-media-card figcaption {
        left: 14px;
        bottom: 14px;
        max-width: calc(100% - 28px);
        font-size: 0.94rem;
    }

    .finote-media-portrait img {
        min-height: 320px;
    }
}

.location-compact-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px 26px;
    align-items: center;
    justify-content: space-between;
}

.location-compact-row .item-label {
    color: var(--finote-navy);
    font-weight: 700;
    margin-right: 6px;
}

.location-compact-row span {
    color: var(--finote-ink);
    white-space: nowrap;
}

.location-header-title {
    color: var(--finote-navy);
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 14px;
}

.location-compact-centered {
    justify-content: center;
    text-align: center;
}

@media (max-width: 1199.98px) {
    .location-compact-row {
        flex-wrap: wrap;
    }

    .location-compact-row span {
        white-space: normal;
    }
}

.contact-map-wide {
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.contact-map-wide iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 420px;
    border: 0 !important;
    border-radius: 0 !important;
}

.gallery,
#slide,
.home-logo-panel .home-logo,
.contact-img-inner img,
.brand-logo {
    max-width: 100%;
}

.footer-social {
    margin-top: 18px;
    display: flex;
    gap: 10px;
}

.footer-social .btn-md-square {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: transparent;
}

.footer-social .btn-md-square:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-2px);
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 500px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgb(255, 102, 0);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/** Photo Thumbnail Gallery Start **/

photo {
    background-color: #eaeaea;
    padding: 50px 0; /* Add padding to create space around the slider */
    margin-bottom: 50px; /* Add margin to separate it from the FAQ section */
}

.gallery {
    width: 100%; /* Make the gallery take the full width of its container */
    max-width: 1000px; /* Limit the maximum width */
    height: 600px; /* Set a fixed height */
    margin: 0 auto; /* Center the gallery horizontally */
    padding: 20px; /* Add padding inside the gallery */
    background-color: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
    position: relative; /* Change to relative positioning */
        overflow: hidden;
}

  #slide {
        width: 100%;
        max-width: 100%;
    margin-top: 50px;
        overflow: hidden;
  }
  .item {
    width: 100px;
    height: 150px;
    background-position: 50% 50%;
    display: inline-block;
    transition: 0.5s;
    background-size: cover;
    position: absolute;
    z-index: 1;
    top: 70%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
  }
  .item:nth-child(1),
  .item:nth-child(2) {
    left: 0;
    top: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
    box-shadow: none;
  }
  .item:nth-child(3) {
    left: 60%;
  }
  .item:nth-child(4) {
    left: calc(60% + 80px);
  }
  .item:nth-child(5) {
    left: calc(60% + 160px);
  }
  .item:nth-child(n + 6) {
    left: calc(80% + 80px);
    opacity: 0;
  }
  .item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    padding: 0;
    color: #eee;
    transform: translate(0, -50%);
    display: none;
    font-family: system-ui;
  }
  .item:nth-child(2) .content {
    display: block;
    z-index: 11111;
  }
  .item .name {
    font-size: 40px;
    font-weight: bold;
    opacity: 0;
    animation: showcontent 1s ease-in-out 1 forwards;
  }
  .item .des {
    margin: 20px 0;
    opacity: 0;
    animation: showcontent 1s ease-in-out 0.3s 1 forwards;
  }
  .item button {
    padding: 10px 20px;
    border: none;
    opacity: 0;
    animation: showcontent 1s ease-in-out 0.6s 1 forwards;
  }
  @keyframes showcontent {
    from {
      opacity: 0;
      transform: translate(0, 100px);
      filter: blur(33px);
    }
    to {
      opacity: 1;
      transform: translate(0, 0);
      filter: blur(0);
    }
  }
  .buttons {
    position: absolute;
    bottom: 30px;
    z-index: 222222;
    text-align: center;
    width: 100%;
  }
  .buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #555;
    transition: 0.5s;
  }
  .buttons button:hover {
    background-color: #bac383;
  }
  
/*** Photo Gallery End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(310deg, rgba(14, 31, 61, 0.95) 0%, rgba(246, 249, 255, 0.16) 100%), linear-gradient(120deg, #0a1531, #132851);
    padding: 36px 0; /* Slightly reduced height while keeping visual balance */
    border-radius: 28px 28px 0 0;
}

.footer.py-5 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 30px;
    color: rgba(255, 255, 255, 0.84);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
    color: rgba(255, 255, 255, 0.88);
}

.footer .footer-brand .brand-logo {
    width: 106px;
}

.footer .footer-brand .brand-title {
    color: #fff;
    font-size: 1.22rem;
}

.footer .footer-brand .brand-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.84rem;
}

.footer .contact-meta h4,
.footer .contact-meta p {
    color: #fff !important;
    margin-bottom: 0;
    line-height: 1.5;
}

.footer .footer-item a:hover {
    color: #ffffff;
}

.footer .footer-item .brand-note {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/

/*** Copyright Start ***/
.copyright {
    background: #0a1430;
    /*border-top: 1px solid rgba(255, 255, 255, .08);*/
}

.copyright .text-body,
.copyright .text-body a {
    color: rgba(255, 255, 255, 0.76) !important;
}

/*** Copyright End ***/

.wow {
    visibility: visible !important;
    animation: none !important;
}
