* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif !important;
}

.topbar {
    background: linear-gradient(124deg, #000 0 61.5%, #60A5E4 61.65% 100%);
    padding: 0;
    height: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1031;
    box-shadow: 0 5px 18px rgba(36, 42, 76, 0.18);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0));

}

.topbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(61.5% - 16px);
    width: 34px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    transform: skewX(-34deg);
    transform-origin: top;

}

.topbar .container,
.topbar .row {
    height: 100%;
}

.topbar-info-text p {
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.topbar-info-text i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 12px;
}

.topbar-info-text i.me-2 {
    margin-right: 0 !important;
}

.topbar-info-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.topbar-info-text a:hover {
    color: rgba(255, 255, 255, 0.82);
}

.topbar-contact-wrap {
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.topbar-social-links ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
    justify-content: end;
    align-items: center;
}

.topbar-social-links ul::before {
    content: "Follow Us:";
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-right: 4px;
    white-space: nowrap;
}

.topbar-social-links li a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.topbar-social-links li a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.topbar-social-links li a i {
    color: #fff;
    font-size: 13px;
}

@media (max-width: 991px) {
    .topbar {
        height: auto;
        min-height: 50px;
        padding: 8px 0;
        background: linear-gradient(135deg, #000 0 100%);
    }

    .topbar::after {
        display: none;
    }

    .topbar .row {
        gap: 8px;
    }

    .topbar-contact-wrap,
    .topbar-social-links ul {
        justify-content: center;
    }

    .topbar-social-links ul {
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .topbar-info-text p {
        font-size: 13px;
    }

    .topbar-social-links ul::before {
        display: none;
    }
}

/* Transparent navbar initially */
.transparent-navbar {
    background: #fff !important;
    top: 50px;
    min-height: 76px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: top 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    z-index: 1030;
}

.transparent-navbar.scrolled {
    top: 0;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.navbar.fixed-top.scrolled {
    top: 0;
}

/* Open dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    transition: all.3s;
}

.dropdown-menu {
    max-height: 70vh;
    overflow-y: auto;
}

.dropdown-item:hover {
    background-color: #000 !important;
    color: #fff !important;
}

/* nav area */
.navbar {
    background-color: #fff !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

.navbar.fixed-top {
    top: 50px;
}

.nav-menu {
    gap: 25px;
}

.links-area ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.links-area ul a {
    text-decoration: none;
}

.links-area i {
    color: #000;
    font-size: 20px;
}

.nav-link {
    font-weight: 600 !important;
    color: #000 !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    font-weight: 600 !important;
    color: #000 !important;

}

.navbar-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
}

.navbar-toggler {
    border: 0 !important;
    box-shadow: none !important;
    padding: 0.35rem 0.5rem !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* footer */
footer {
    background-color: #60A5E4;
    position: relative;
    padding-top: 25px;
}

/* footer:after {
    content: "";
    top: 0;
    position: absolute;
    background-image: url(../images/clouds_2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
} */

.footer-box h2 {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 17px;
    color: var(--s-white);
}

.footer-box p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}

.footer-box h3 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
}

.footer-box ul li {
    margin-bottom: 0.5rem;
}

.footer-box li a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: all.3s;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    transition: all.3s;

}

.footer-box a {
    text-decoration: none;
    color: #fff;
}

.footer-box ul li a:hover {
    color: #fff;
    letter-spacing: 1px;
    transition: all.3s;
}

.footer1stRow {
    padding: 2rem 0 1.5rem 0;
    position: relative;
    z-index: 1;
    /* border-top: 1px solid #2525251e; */
}

.socialmediaicon li a i {
    background-color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 8px;
    padding: 0;
    color: #000;
    transition: 0.3s;
    border-radius: 100px;
}

.socialmediaicon ul {
    list-style: none;
    padding: 0;
}

.socialmediaicon ul li a i:hover {
    transform: rotate(360deg);
    background-color: #fff;
    color: #000;
}

.SocialIcon h3 {
    font-size: 17px;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.copyRight {
    border-top: 1px solid #ffffff5b;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.copyRight a {
    /* text-decoration: none; */
    color: #fff;
}

.copyRight p {
    color: #fff;
}

/* Back To Top CSS Start Here */
.button {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #000;
    cursor: pointer;
    border: 2px solid var(--s-primary);
    /* mix-blend-mode: multiply;     */
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.btn-txt {
    z-index: 10;
}

.type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: #60A5E4;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
}

.button:hover {
    box-shadow: 1px 1px 200px var(--s-white);
    color: #fff;
    border: none;
}

.type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
}

/* cursor */
.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    --dot-x: 0px;
    --dot-y: 0px;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border: 1.5px solid #000;
    border-radius: 50%;
    background-color: transparent;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s;
}

.cb-cursor::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: #000;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + var(--dot-x)), calc(-50% + var(--dot-y)));
    opacity: 0.9;
    transition: width 0.28s ease, height 0.28s ease, opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-cursor.is-idle::before {
    width: 18px;
    height: 18px;
    opacity: 0.35;
    transform: translate(-50%, -50%);
}

/* banner start */
.hero-section {
    margin-top: 76px;
}

.mySwiper,
.mySwiper .swiper-slide,
.banner {
    min-height: 760px;
}

.mySwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease;
    z-index: 0;
}

.slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 35%, rgba(90, 161, 227, 0.28), transparent 24%),
        linear-gradient(100deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 45%, rgba(90, 161, 227, 0.24) 100%);
}

.mySwiper .swiper-slide-active .slide-bg {
    transform: scale(1.08);
}

.banner {
    position: relative;
    z-index: 1;
    padding: 160px 0 90px;
}

.banner-content {
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #60A5E4;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background-color: #60A5E4;
}

.banner-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.04;
    margin-bottom: 22px;
    text-wrap: balance;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 32px;
}


.swiper-pagination {
    bottom: 28px !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #fff !important;
    opacity: 0.55 !important;
}

.swiper-pagination-bullet-active {
    width: 34px !important;
    border-radius: 999px !important;
    background: #60A5E4 !important;
    opacity: 1 !important;
}


@media (max-width: 991px) {
    .hero-section {
        margin-top: 76px;
    }

    .mySwiper,
    .mySwiper .swiper-slide,
    .banner {
        min-height: 680px;
    }

    .banner {
        padding: 135px 0 80px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        margin-top: 74px;
    }

    .mySwiper,
    .mySwiper .swiper-slide,
    .banner {
        min-height: 640px;
    }

    .banner {
        padding: 115px 0 70px;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 16px;
    }

}


.btn-primary {
    position: relative;
    display: inline-block;
    padding: 16px 35px;
    color: #fff;
    background: #000 !important;
    border: none !important;
    font-weight: 700 !important;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all.3s;
    border-radius: 0px !important;
}

.btn-primary::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 200%;
    left: 50%;
    top: 50%;
    background-color: #60A5E4 !important;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all.3s;
}

.btn-primary::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 25px;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary:hover::before {
    width: 120%;
}

.btn-primary:hover {
    color: #fff;
}

.btn-secondary {
    position: relative;
    display: inline-block;
    padding: 16px 35px;
    color: #fff;
    background: #000 !important;
    border: none !important;
    font-weight: 700 !important;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all.3s;
    border-radius: 0px !important;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 200%;
    left: 50%;
    top: 50%;
    background-color: #60A5E4 !important;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all.3s;
}

.btn-secondary::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 25px;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover::before {
    width: 120%;
}

.btn-secondary:hover {
    color: #fff;
}

/* about us section */
.about-us {
    padding: 80px 0;
    background: #fff;
}

/* .about-content {
    max-width: 480px;
} */

.about-content h3 {
    color: #60A5E4;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.about-content h2 {
    color: #000;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
}

.about-content p {
    color: #666a73;
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.about-img img {
    width: 100%;
    height: 475px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.what-we-do-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.what-we-do-body ul li {
    background-image: url(../images/icon-check.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 24px auto;
    line-height: 1.5em;
    margin-bottom: 20px;
    padding-left: 35px;
}

.what-we-do-body ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-content {
        max-width: 100%;
    }

    .about-img img {
        height: 380px;
    }
}

@media (max-width: 575px) {
    .about-us {
        padding: 50px 0;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-content .btn-primary {
        min-width: 165px;
        padding: 12px 28px !important;
    }

    .about-img img {
        height: 290px;
        border-radius: 12px;
    }
}

.textt-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #60A5E4 !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.textt-primary::before {
    content: "";
    width: 14px;
    height: 2px;
    background: #000;
}

.textt-primary::after {
    content: "";
    width: 14px;
    height: 2px;
    background: #000;
}

/* services */
.services {
    padding: 96px 0;
    background:
        linear-gradient(180deg, rgba(90, 161, 227, 0.08), rgba(255, 255, 255, 0) 42%),
        #fff;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    top: 54px;
    left: 38px;
    width: 24px;
    height: 24px;
    border: 2px solid #60A5E4;
    border-radius: 50%;
    opacity: 0.65;
}

.services::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: #60A5E4;
    border-radius: 50%;
    opacity: 0.35;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.services-content {
    max-width: 650px;
}

.services-content h2 {
    color: #000;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 0;
}

.services-btn {
    flex: 0 0 auto;
    background: #60A5E4 !important;
    padding: 17px 36px !important;
}

.service-row {
    row-gap: 30px;
}

.service-card {
    height: 100%;
    padding: 20px 20px 38px;
    background: #fff;
    border: 1px solid rgba(17, 47, 78, 0.1);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before,
.service-card::after {
    content: "";
    position: absolute;
    z-index: 0;
}

.service-card::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100%;
    background: #000;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.45s ease;
}

.service-card::after {
    right: 22px;
    bottom: -42px;
    width: 88px;
    height: 170px;
    background: rgba(90, 161, 227, 0.14);
    transform: skewX(-42deg);
    transition: background-color 0.45s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
}

.service-card:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.service-card:hover::after {
    background: rgba(255, 255, 255, 0.18);
}

.service-box {
    position: relative;
    margin-bottom: 52px;
    z-index: 1;
}

.service-box img {
    width: 100%;
    height: 168px;
    display: block;
    object-fit: cover;
}

.service-icon {
    width: 72px;
    height: 72px;
    position: absolute;
    left: 20px;
    bottom: -36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #fff;
    border: 6px solid #60A5E4;
    border-radius: 50%;
    font-size: 27px;
    box-shadow: 0 0 0 5px rgba(36, 42, 76, 0.08);
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:hover .service-icon {
    color: #fff;
    background: #60A5E4;
    border-color: #60A5E4;
}

.service-card:hover .service-body h3,
.service-card:hover .service-body p {
    color: #fff;
}

.service-body {
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.service-body h3 {
    color: #000;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-body p {
    color: #6d7280;
    min-height: 100px;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
    margin-bottom: 24px;
}

.service-card:hover .service-link {
    background: #60A5E4 !important;

}

.service-card:hover .service-link::before {
    background: #fff !important;

}

.service-link {
    background: #000 !important;
    padding: 14px 30px !important;
    font-size: 14px !important;
}

.service-link:hover {
    color: #000 !important;
}

.service-link::before {
    background-color: #fff !important;
}

@media (max-width: 1199px) {
    .services-content h2 {
        font-size: 38px;
    }

    .service-box img {
        height: 205px;
    }

    .service-body {
        padding: 0 18px;
    }

    .service-body h3 {
        font-size: 22px;
    }

    .service-body p {
        min-height: 74px;
        font-size: 15px;
    }
}

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

    .services-header {
        display: block;
        margin-bottom: 38px;
    }

    .services-btn {
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .services {
        padding: 60px 0;
    }

    .services::before,
    .services::after {
        display: none;
    }

    .services-content h2 {
        font-size: 30px;
    }

    .service-card {
        padding: 16px 16px 32px;
    }

    .service-box img {
        height: 190px;
    }

    .service-body {
        padding: 0 8px;
    }

    .service-body h3 {
        font-size: 20px;
    }

    .service-body p {
        min-height: auto;
    }

    .services-btn,
    .service-link {
        width: 100%;
        text-align: center;
    }
}

/* why choose us */
.why-choose-us {
    background-image: url(../images/choose-us.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
}

.why-choose-us::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(17, 47, 78, 0.62), rgba(90, 161, 227, 0.22));
    content: "";
    inset: 0;
    position: absolute;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.choose-us-content {
    background: #fff;
    border-left: 5px solid #60A5E4;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
    max-width: 570px;
    padding: 46px;
}

.choose-us-content .textt-primary {
    color: #60A5E4 !important;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.choose-us-content .textt-primary::before,
.choose-us-content .textt-primary::after {
    background: #60A5E4;
}

.choose-us-content h2 {
    color: #60A5E4;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin: 12px 0 18px;
}

.choose-us-content p,
.choose-us-content li {
    color: #666a73;
    font-size: 16px;
    line-height: 1.7;
}

.choose-us-content ul {
    list-style: none;
    margin: 22px 0 30px;
    padding: 0;
}

.choose-us-content li {
    margin-bottom: 9px;
}

.choose-us-content li i {
    color: #60A5E4;
    margin-right: 8px;
}

.choose-us-btn {
    background: #000 !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 16px 35px !important;
}

@media (max-width: 767px) {
    .why-choose-us {
        padding: 80px 0;
    }

    .choose-us-content {
        padding: 30px 24px;
    }

    .choose-us-content h2 {
        font-size: 32px;
    }
}

/* gallery */
.gallery {
    padding: 96px 0;
    background:
        linear-gradient(180deg, rgba(90, 161, 227, 0.08), rgba(255, 255, 255, 0) 46%),
        #fff;
}

.gallery-header {
    max-width: 720px;
    margin: 0 auto 46px;
}

.gallery-header .textt-primary {
    justify-content: center;
}

.gallery-header h2 {
    color: #60A5E4 !important;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    height: 250px;
    background: #60A5E4 !important;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
}

.gallery-item-tall {
    height: 524px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.7));
    z-index: 1;
    transition: background 0.35s ease;
}



.gallery-item:hover img {
    transform: scale(1.07);
    opacity: 0.86;
}

.gallery-item:hover::before {
    background: linear-gradient(180deg, rgba(90, 161, 227, 0.12), rgba(17, 47, 78, 0.86));
}

@media (max-width: 991px) {
    .gallery-item-tall {
        height: 420px;
    }
}

@media (max-width: 575px) {
    .gallery {
        padding: 60px 0;
    }

    .gallery-header h2 {
        font-size: 30px;
    }

    .gallery-item,
    .gallery-item-tall {
        height: 230px;
    }
}

/* gallery page */
.gallery-page .contact-behind {
    padding: 92px 0;
}

.gallery-page .container {
    max-width: 1180px;
}

.gallery-page-title {
    max-width: 720px;
    padding: 0 0 34px !important;
    margin: 0 auto;
    text-align: center;
}

.gallery-page-title h3 {
    color: #fff;
    margin-bottom: 0;
}

.gallery-page-title h6 {
    color: #60A5E4;
}

.gallery-page-grid {
    align-items: stretch;
}

.gallery-card {
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(7, 20, 67, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(7, 20, 67, 0.16);
}

.gallery-card-image,
.gallery-card-frame {
    height: 100%;
}

.gallery-card-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #000;
}

.gallery-card-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 31, 77, 0), rgba(7, 31, 77, 0.22));
    pointer-events: none;
}

.gallery-card-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    margin-bottom: 0 !important;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
    opacity: 0.94;
}

@media (max-width: 991px) {
    .gallery-page .contact-behind {
        padding: 74px 0;
    }

    .gallery-page-title {
        padding-bottom: 28px !important;
    }
}

@media (max-width: 575px) {
    .gallery-page .contact-behind {
        padding: 58px 0;
    }

    .gallery-page-title {
        padding-bottom: 22px !important;
    }

    .gallery-card-frame {
        aspect-ratio: 16 / 11;
    }
}

/* testimonial */
.testimonmial {
    position: relative;
    background:
        linear-gradient(90deg, rgba(4, 18, 38, 0.88) 0%, rgba(7, 31, 77, 0.72) 46%, rgba(7, 31, 77, 0.58) 100%),
        url("../images/testi-image.png") center / cover fixed no-repeat;
    overflow: hidden;
    padding: 110px 0;
}

.testimonmial::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 28%);
    pointer-events: none;
}

.testimonmial .container {
    position: relative;
    z-index: 1;
}

.testimonial-header {
    margin: 0 auto 42px;
    max-width: 760px;
}

.testimonial-header .textt-primary {
    color: #60A5E4 !important;
}

.testimonial-header .textt-primary::before,
.testimonial-header .textt-primary::after {
    background: #fff;
}

.testimonial-header h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
    overflow: hidden;
    padding: 42px;
    backdrop-filter: blur(9px);
}

.testi-stars {
    color: #60A5E4;
    display: flex;
    gap: 5px;
    margin-bottom: 22px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
    line-height: 1.65;
    margin: 0 0 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.testimonial-author img {
    border: 3px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    height: 64px;
    object-fit: cover;
    width: 64px;
}

.testimonial-author h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 4px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.76);
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-note {
    grid-column: 1 / -1;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    color: #60A5E4;
    margin-top: 8px;
    padding: 16px 24px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.testimonial-note strong {
    color: #60A5E4;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.testimonial-note span {
    font-size: 15px;
    font-weight: 700;
}

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

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: 280px;
    }
}

@media (max-width: 575px) {
    .testimonmial {
        padding: 70px 0;
    }

    .testimonial-header h2 {
        font-size: 30px;
    }

    .testimonial-card {
        padding: 30px 22px;
    }

    .testimonial-card p {
        font-size: 16px;
    }

    .testimonial-note {
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
    }
}

/* contact */
.contact-behind {
    background: linear-gradient(135deg, rgb(0 0 0 / 96%), rgba(7, 31, 77, 0.84));
    border: 1px solid rgba(90, 161, 227, 0.42);
    border-radius: 42px;
    margin: 100px 40px;
    overflow: hidden;
    padding: 60px 0;
}

.content4 img {
    background: #60A5E4;
    border-radius: 8px;
    padding: 16px;
    width: 58px;
}

.contactUSPage {
    background: #fff;
    border-top: 5px solid #60A5E4;
    border-radius: 15px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16) !important;
    padding: 50px 20px;
    position: relative;
}

.content5 {
    padding-left: 14px;
}

.content5 h4 {
    color: #60A5E4;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.content5 h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0;
}

.content5 h3 a {
    color: inherit;
}

.contact-content {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 18px;
}

.contact-section .textt-primary {
    color: #60A5E4;
}

.contact-section h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.contact-image-wrap {
    position: relative;
    isolation: isolate;
    max-width: 500px;
    width: 100%;
    padding: 18px;
}

.contact-image-wrap::before {
    content: "";
    position: absolute;
    inset: 9% 2% 4% 14%;
    background: rgba(90, 161, 227, 0.22);
    border-radius: 28px;
    transform: rotate(-4deg);
    z-index: -2;
}

.contact-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(90, 161, 227, 0.48);
    border-radius: 30px;
    transform: rotate(3deg);
    z-index: -1;
}

.contact-image-wrap img {
    display: block;
    width: 100%;
    border: 8px solid rgba(255, 255, 255, 0.95);
    border-radius: 26px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-image-wrap:hover img {
    transform: translateY(-6px);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
}

.titleBar span {
    color: #000;
    display: block;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 22px;
}

.form-label {
    color: #000;
    font-weight: 700;
}

.form-control,
.form-select {
    background-color: #f8fafc !important;
    border: 1px solid rgba(7, 31, 77, 0.14) !important;
    color: #000 !important;
    min-height: 55px;
}

.form-control:focus,
.form-select:focus {
    border-color: #60A5E4 !important;
    box-shadow: 0 0 0 4px rgba(90, 161, 227, 0.18) !important;
}

.form-control::placeholder {
    color: #7a8494 !important;
}

option {
    background-color: #fff;
    color: #000;
}

@media (max-width: 767px) {
    .contact-behind {
        border-radius: 24px;
        margin: 70px 16px;
        padding: 70px 0;
    }

    .contact-section {
        margin-bottom: 28px;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .contact-image-wrap {
        max-width: 420px;
        margin-top: 10px;
        padding: 12px;
    }

    .contact-image-wrap img {
        border-width: 6px;
        border-radius: 20px;
    }

    .titleBar span {
        font-size: 26px;
    }
}

/* about us page */
.other-banner {
    background-image: linear-gradient(rgb(0 0 0 / 58%), rgb(0 0 0 / 32%)), url(../images/banner-4.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-content {
    text-align: center;
    padding: 0 16px;
}

.new-content h3 {
    font-size: clamp(32px, 5vw, 55px);
    color: #fff;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 12px;
    overflow-wrap: anywhere;
}

.new-content .breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 6px;
    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    color: #fff !important;
    line-height: 1.4;
}

.breadcrumb-item a {
    color: #fff !important;
    font-weight: 700;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

@media (max-width: 767px) {
    .other-banner {
        height: 380px;
        background-attachment: scroll;
    }

    .new-content h3 {
        font-size: 34px;
    }

    .breadcrumb-item {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .other-banner {
        height: 320px;
    }

    .new-content h3 {
        font-size: 28px;
    }

    .new-content .breadcrumb {
        max-width: 100%;
    }
}



.what-we-do {
    padding: 100px;
}

.who-banner {
    background: #f8fafc;
    padding: 100px 0;
}

.who-content h4 {
    color: #000;
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 700;
}

.who-content h2 {
    color: #000;
    font-size: 45px;
    font-weight: 800;
    line-height: 1.15;
    margin: 12px 0 18px;
    position: relative;
}

.who-content>p,
.who-content .mt-2 {
    color: #536176;
    font-size: 16px;
    line-height: 1.7;
}

/* .who-content p {
    margin-bottom: 30px;
    font-size: 16px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    line-height: 26px;
} */

.who-content1 h4 {
    color: #000;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 8px;
    text-transform: none;
}

.who-content1 {
    align-items: flex-start;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    gap: 16px;
    margin-top: 22px;
    padding: 0 12px 0 0;
    position: relative;
}

.who-content1 p {
    color: #536176;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.whooo {
    width: 100%;
    height: 225px !important;
    object-fit: cover;
}

.img-dsgn {
    flex: 0 0 58px;
    align-items: center;
    background: #000;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(214, 175, 63, 0.18);
    color: #60A5E4;
    display: flex;
    font-size: 24px;
    height: 58px;
    justify-content: center;
    margin-top: 4px;
    width: 58px;
}

.who3 {
    height: 465px !important;
    object-fit: cover;
    width: 100%;
}

.image-anime img {
    border-radius: 8px;
}

@media (max-width: 991px) {
    .who-banner {
        padding: 80px 0;
    }

    .who-content {
        margin-top: 36px;
    }

    .who-content h2 {
        font-size: 36px;
    }

    .who-content1 {
        padding-right: 0;
    }
}

@media (max-width: 575px) {
    .who-banner {
        padding: 60px 0;
    }

    .who3,
    .whooo {
        height: 260px !important;
    }

    .who-content h2 {
        font-size: 30px;
    }
}

/* our mission */
.mission {
    width: 100%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0;
    background-image: linear-gradient(135deg, rgb(0 0 0 / 95%) 0%, rgba(36, 42, 76, 0.76) 100%), url(../images/bg-image.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.mission-content h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #60A5E4;
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: 0.18em;
}

.mission-content h3 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.12;
}

.mission-content p {
    margin-top: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.85;
}

.mission-box {
    background-color: rgba(255, 255, 255, 0.96);
    margin-top: 0;
    min-height: 100%;
    margin-bottom: 0;
    padding: 34px 28px;
    gap: 10px;
    border-radius: 26px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.mission-box-content h3 {
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 25px;
    margin-top: 25px;
    letter-spacing: 1px;

}

.mission-box-content h5 {
    margin-top: 0;
    font-size: 14px;
    margin-bottom: 0rem;
    color: #5d7381;
    font-weight: 500;
    line-height: 1.7;

}

.work-para {
    text-align: center;
}

@media (min-width: 1201px) and (max-width: 1400px) {

    .services,
    .about-us,
    .testimonmial {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .services-content h2 {
        font-size: 40px;
    }

    .service-box img {
        height: 220px;
    }

    .stats-row {
        top: -82px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .container {
        max-width: 960px !important;
    }

    .section-title p {
        font-size: 14px;
    }

    .about1 {
        padding: 70px 0;
    }

    .services {
        padding: 82px 0;
    }

    .about-us {
        padding: 82px 0;
    }

    .services-header {
        gap: 22px;
    }

    .stats-row {
        top: -72px;
    }

    .contact-behind {
        margin: 82px 24px;
    }
}


@media(max-width:992px) {

    .about-us h4 {
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        color: #D48742;
        margin-bottom: 15px;
        margin-top: 40px;
    }

    .about-image img {
        height: 420px !important;
    }

    .mission {
        padding: 70px 0;
    }
}

.process-box {
    background-color: #000;
    color: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.process-box h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
    margin-bottom: 14px;
}

.process-box h2 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 18px;
    color: #fff;
}

.process-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.process-gap {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfe 100%);
}

.process-gap h3 {
    color: #000;
    font-size: 40px;
    line-height: 1.15;
}

/* service detail page */
.services1 {
    position: relative;
    padding: 100px 0 82px;
    background: #fff;
    overflow: hidden;
}

.services1::before {
    content: "";
    position: absolute;
    right: -130px;
    top: 64px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(2, 150, 221, 0.08);
}

.services-content1 {
    position: relative;
    z-index: 1;
}

.services-content1 h3 {
    color: #000;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
}

.services-content1 p,
.innerServicesPage p,
.accordion-body {
    color: #6d7280;
    font-size: 16px;
    line-height: 1.8;
}

.services-image {
    position: relative;
    padding: 22px;
}

.services-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 390px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 24px 55px rgba(36, 42, 76, 0.14);
}

.aboutSection {
    position: relative;
    padding: 90px 0;
    background: #f4f7fb;
}

.allServicesList {
    position: sticky;
    top: 110px;
}

.allServicesListBody {
    padding: 34px 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(7, 20, 67, 0.08);
}

.allServicesListBody h2,
.innerServicesPage h1,
.titleBar h3 {
    color: #000;
}

.allServicesListBody h2 {
    font-size: 28px;
}

.revSite-btn {
    color: #000;
    padding: 10px;
    font-weight: 700;
    background: #f4f7fb;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.revSite-btn:hover,
.revSite-btn.active {
    color: #fff;
    background: #60A5E4;
    border-left-color: #000;
}

.innerServicesPage {
    padding: 42px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(7, 20, 67, 0.08);
}

.innerServicesPage h1 {
    font-size: 34px;
    line-height: 1.18;
    margin-bottom: 18px;
}

.innerServicesPage .what-we-do-body {
    margin-top: 18px;
    margin-bottom: 0;
}

.fq-section {
    padding: 96px 0;
    background: #fff;
}

.FAQs-box {
    min-height: 520px;
    background-image: linear-gradient(rgba(36, 42, 76, 0.25), rgba(36, 42, 76, 0.25)), url(../images/yacht.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
}

.titleBar h6 {
    color: #60A5E4;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.titleBar h3 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
}

.accordion-button {
    color: #000 !important;
    font-weight: 700;
    background: #f4f7fb !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
    background: #60A5E4 !important;
}

.accordion-body {
    background: #fff;
    border: 1px solid rgba(36, 42, 76, 0.08);
    border-top: 0;
}

.services1,
.services-image,
.allServicesList,
.innerServicesPage,
.FAQs-box,
.accordion-item {
    will-change: transform;
}

@media (max-width: 991px) {

    .services1,
    .aboutSection,
    .fq-section {
        padding: 70px 0;
    }

    .services-content1 h3,
    .innerServicesPage h1,
    .titleBar h3 {
        font-size: 30px;
    }

    .allServicesList {
        position: static;
    }
}

@media (max-width: 575px) {

    .services1,
    .aboutSection,
    .fq-section {
        padding: 56px 0;
    }

    .services-image {
        padding: 12px;
    }

    .services-image::before {
        transform: translate(8px, 8px);
    }

    .services-image img,
    .FAQs-box {
        min-height: 300px;
    }

    .innerServicesPage {
        padding: 28px 20px;
    }
}