* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

html,
body {
    overflow-x: clip;
    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%, #396B98 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: #c48416a6;
    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: 0 !important;
    padding-bottom: 0 !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: 700 !important;
    color: #000 !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    font-weight: 800 !important;
    color: #396B98 !important;

}

.navbar-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
}

/* .navbar-brand img {
    display: block;
    width: 90px;
    height: auto;
} */

.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: #000;
    position: relative;
    padding-top: 25px;
}

/* footer:after {
    content: "";
    top: 0;
    position: absolute;
    background-image: url(https://deep-waters-law-llc.searchsolutiontesting.com/wp-content/uploads/2026/07/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: #112F4E;
    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: #112F4E;
}

.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: #396B98;
    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%, rgb(57 107 152 / 22%), rgba(0, 0, 0, 0.35) 24%), linear-gradient(100deg, rgb(0 0 0 / 67%) 0%, rgb(57 107 152 / 56%) 42%, rgb(0 0 0 / 72%) 100%) !important
}

.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: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background-color: #fff;
}

.hero-eyebrow::after {
    content: "";
    width: 38px;
    height: 2px;
    background-color: #fff;
}

.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: #396B98 !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: #396B98 !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 !important;
}


/* about  */

.performance-process {
    background: #f7fbfd;
    padding: 100px 0;
}

.process-visual {
    min-height: 560px;
    overflow: hidden;
    position: relative;
}

.process-visual img {
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    width: 100%;
}

.process-visual::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgb(19 41 64 / 72%));
    content: "";
    inset: 0;
    position: absolute;
}

.textt-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C48416 !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;
}

.process-note {
    bottom: 32px;
    color: #fff;
    left: 32px;
    max-width: 330px;
    position: absolute;
    z-index: 1;
}

.process-note span,
.process-heading span,
.process-step span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.process-note span {
    color: #C48416;
    margin-bottom: 10px;
}

.process-note strong {
    color: #C48416;
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.04;
}

.process-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-heading {
    margin-bottom: 34px;
    max-width: 680px;
}

.process-heading span {
    color: #224b62;
    margin-bottom: 12px;
}

.process-heading h2 {
    color: #000;
    font-size: clamp(34px, 4vw, 35px);
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: 18px;
}

.process-heading p {
    color: #536176;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.process-step {
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(34, 75, 98, 0.1);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    display: flex;
    gap: 20px;
    padding: 26px 28px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.process-step:hover {
    border-color: rgba(34, 75, 98, 0.22);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
    transform: translateY(-4px);
}

.step-icon {
    align-items: center;
    background: #C48416;
    color: #fff;
    display: inline-flex;
    flex: 0 0 58px;
    font-size: 22px;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.process-step span {
    color: #6f8795;
    margin-bottom: 7px;
}

.process-step h4 {
    color: #000;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.process-step p {
    color: #536176;
    line-height: 1.65;
    margin: 0;
}

@media(max-width:992px) {
    .performance-process {
        padding: 80px 0;
    }

    .process-visual,
    .process-visual img {
        min-height: 420px;
    }
}

@media(max-width:767px) {
    .performance-process {
        padding: 60px 0;
    }

    .process-visual,
    .process-visual img {
        min-height: 340px;
    }

    .process-note {
        bottom: 24px;
        left: 24px;
        right: 24px;
    }

    .process-step {
        gap: 16px;
        padding: 22px 18px;
    }

    .step-icon {
        flex-basis: 50px;
        height: 50px;
        width: 50px;
    }

    .process-step h4 {
        font-size: 21px;
    }
}

/* .feature-card */
.feature-card-section {
    /* background:
         radial-gradient(circle at top left, rgba(14, 165, 233, 0.08), transparent 28%),
         linear-gradient(180deg, #f7fbff 0%, #ffffff 100%); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.services-section-heading {
    max-width: 760px;
    margin: 0 auto 58px;
}

.services-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.1);
    color: #396B98;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.services-section-heading h2 {
    margin: 18px 0 12px;
    color: #396B98;
    font-family: "Libre Baskerville", serif;
    font-size: 54px;
    line-height: 1.15;
}

.services-section-heading p {
    margin: 0 auto;
    max-width: 620px;
    color: #5d7381;
    font-size: 17px;
    line-height: 1.8;
}

.services-heading-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.accent-line {
    width: 90px;
    max-width: 18vw;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.15), #396B98, rgb(61 219 255 / 30%));
    animation: accentPulse 2.6s ease-in-out infinite;
}

.accent-line-short {
    width: 54px;
    animation-delay: 0.35s;
}

.accent-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C48416;
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.35);
    animation: accentDotFloat 2.4s ease-in-out infinite;
}

.accent-dot-center {
    width: 14px;
    height: 14px;
    background: #C48416;
    animation-delay: 0.2s;
}

.accent-dot-right {
    animation-delay: 0.4s;
}

@keyframes accentPulse {

    0%,
    100% {
        transform: scaleX(0.92);
        opacity: 0.7;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes accentDotFloat {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.18);
    }

    50% {
        transform: translateY(-4px);
        box-shadow: 0 0 0 8px rgba(14, 165, 233, 0);
    }
}

.feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 40px 32px;
    box-shadow: 24px 20px 0 #dfeeee;
    transition: all.3s;
    position: relative !important;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    background-image: url(https://deep-waters-law-llc.searchsolutiontesting.com/wp-content/uploads/2026/07/hm5-boxline-shape.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 160%;
    height: 50%;
    top: -50px;
    left: 0px;
    rotate: -10deg;
    z-index: 100;
    display: none;
    transition: all.3s;
}

.feature-card:hover::after {
    /* background: #063232; */
    transition: all.3s;
    left: 0;
}

.feature-card::after {
    content: "";
    background-color: #396B98;
    position: absolute;
    height: 100%;
    width: 100%;
    left: -538px;
    top: 0;
    transition: all .3s;
}

.feature-card:hover::before {
    display: block;
    z-index: 100;
    transition: all.3s;
}

.feature-card:hover p {
    color: #fff;
}

.feature-top {
    margin-bottom: 28px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #edf6f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 200;
}

.feature-card:hover h3 {
    color: #fff !important;
    transition: all.3s;
}

.feature-icon img {
    width: 34px;
    height: 34px;
}

.feature-number {
    position: relative;
    z-index: 200;
    font-size: 18px;
    font-weight: 500;
    color: #C48416;
    line-height: 1;
    margin-top: 8px;
}

.feature-card:hover .feature-number {
    color: #fff;
}

.feature-card hr {
    border: 0;
    border-top: 1px solid #d9d9d9;
    margin: 0 0 30px;
}

.feature-card h3 {
    transition: all.3s;
    position: relative;
    z-index: 200;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
    color: #396B98;
    margin-bottom: 14px;
}

.feature-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #5d7381;
    margin-bottom: 28px;
    max-width: 360px;
    position: relative;
    z-index: 200;
    transition: all.3s;
}

.learn-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 200;
}

/* orange dot */
.line-dot {
    width: 8px;
    height: 8px;
    background: #396B98;
    border-radius: 50%;
}

/* horizontal line */
.line {
    flex: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

/* learn more */
.learn-more {
    font-size: 17px;
    font-weight: 600;
    color: #396B98;
    text-decoration: none;
    transition: 0.3s ease;
}

/* hover effect */
.feature-card:hover .line {
    background: rgba(255, 255, 255, 0.5);
    flex: 1;
}

.feature-card:hover .learn-more {
    color: #fff;
}

.feature-card:hover .line-dot {
    background: #fff !important;
}

/* .learn-more:hover {
     color: #0a5c7a;
 } */

.learn-more span {
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 767px) {
    .feature-card-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .services-section-heading {
        margin-bottom: 40px;
    }

    .services-section-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .accent-line {
        width: 52px;
    }

    .accent-line-short {
        width: 34px;
    }

    .feature-card {
        padding: 28px 24px;
        border-radius: 18px;
        box-shadow: 14px 14px 0 #dfeeee;
    }

    .feature-card h3 {
        font-size: 24px;
    }

    .feature-card p {
        font-size: 16px;
    }

    .feature-number {
        font-size: 16px;
    }
}

/* why choose us */
.choose-us {
    width: 100%;
    min-height: 100%;
    padding: 92px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
    background-image: linear-gradient(135deg, rgb(66 100 165 / 96%), rgb(7 45 67 / 92%)), url(https://deep-waters-law-llc.searchsolutiontesting.com/wp-content/uploads/2026/07/choose-us.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.choose-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 12%, transparent 12.2% 100%),
        linear-gradient(300deg, rgba(2, 150, 221, 0.18) 0 18%, transparent 18.2% 100%);
}

/* .choose-us::after {
    content: "";
    position: absolute;
    top: 42px;
    right: 8%;
    width: 84px;
    height: 68px;
    background-image: url(https://deep-waters-law-llc.searchsolutiontesting.com/wp-content/uploads/2026/07/feature-four-shape.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    animation: aboutShapeMove 2.3s ease-in-out infinite alternate;
     
} */

.choose-us .container {
    position: relative;
    z-index: 1;
}

.choose-us .textt-primary {
    color: #396B98 !important;
    justify-content: center;
}

.choose-us .textt-primary::before {
    background: #fff;
}

.choose-us .textt-primary::after {
    background: #fff;
}

.choose-us h2 {
    color: #fff;
    max-width: 780px;
    margin: 10px auto 18px;
    font-size: 40px;
    line-height: 1.16;
    font-weight: 800;
}

.choose-us .col-lg-8>p {
    max-width: 720px;
    margin: 0 auto 42px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 600;
}

.choose-us .col-lg-3 {
    margin-bottom: 24px;
}

.choose-us .d-flex {
    height: 100%;
    min-height: 210px;
    padding: 30px 24px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.choose-us .d-flex::before {
    content: "";
    position: absolute;
    top: 0;
    right: -42px;
    width: 86px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    transform: skewX(-18deg);
}

.choose-us .d-flex:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(2, 150, 221, 0.55);
}

.choose-us .feature-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    position: static;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
    background: #C48416;
    color: #fff;
    font-size: 24px;
    z-index: 1;
}

.choose-us h4 {
    color: #fff;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 10px;
}

.choose-us .d-flex p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 0;
}




@media (max-width: 991px) {
    .choose-us {
        padding: 76px 0;
    }

    .choose-us h2 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .choose-us {
        padding: 60px 0;
    }

    .choose-us::after {
        width: 64px;
        height: 52px;
        right: 16px;
        top: 24px;
    }

    .choose-us h2 {
        font-size: 29px;
    }

    .choose-us .col-lg-8>p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .choose-us .d-flex {
        min-height: auto;
        padding: 26px 20px;
    }
}

/* ==========================
   TRAILER PROCESS SECTION
========================== */

.trailer-process-section {
    position: relative;
    overflow: hidden;
    padding: 90px 40px 180px;
    font-family: inherit;
}

.trailer-process-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

.trailer-process-header {
    text-align: center;
    margin-bottom: 70px;
}

.trailer-process-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #000;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.trailer-process-header h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 700;
    color: #000;
}

.trailer-process-timeline {
    position: relative;
    min-height: 380px;
}

.trailer-timeline-line {
    position: absolute;
    top: 0;
    left: 4%;
    width: 92%;
    border-top: 1px dashed rgba(6, 43, 61, 0.18);
}

.trailer-process-step {
    position: absolute;
    top: 0;
    width: 290px;
}

.trailer-step-1 {
    left: 17%;
}

.trailer-step-2 {
    left: 41.5%;
}

.trailer-step-3 {
    left: 66%;
}

.trailer-step-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 18px;
    border: 1px solid rgba(6, 43, 61, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #396B98;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.trailer-step-vertical-line {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 200px;
    border-left: 1px dashed rgba(6, 43, 61, 0.18);
}

.trailer-step-card {
    position: relative;
    margin-top: 78px;
    padding: 28px 22px 24px;
    min-height: 162px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(6, 43, 61, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.trailer-step-2 .trailer-step-card {
    margin-top: 144px;
}

.trailer-step-3 .trailer-step-card {
    margin-top: 210px;
}

.trailer-step-number {
    display: block;
    margin-bottom: 8px;
    font-size: 64px;
    line-height: 1;
    font-weight: 500;
    color: #C48416;
}

.trailer-step-card h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    color: #000;
}

.trailer-step-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #5d7381;
    max-width: 230px;
}

/* Optional Glow Effects */

.trailer-process-bg-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
    background: #396B98;
}

.trailer-glow-left {
    left: -160px;
    bottom: -120px;
}

.trailer-glow-right {
    right: -160px;
    top: -70px;
}

.trailer-process-lines {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 210px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.07;
}

.trailer-left-lines {
    left: 0;
    background: repeating-linear-gradient(100deg,
            transparent 0,
            transparent 7px,
            rgba(255, 255, 255, .7) 8px,
            transparent 9px);
}

.trailer-right-lines {
    right: 0;
    background: repeating-linear-gradient(-100deg,
            transparent 0,
            transparent 7px,
            rgba(255, 255, 255, .7) 8px,
            transparent 9px);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1399px) {

    .trailer-process-header h2 {
        font-size: 44px;
    }

    .trailer-process-step {
        width: 260px;
    }

    .trailer-step-1 {
        left: 12%;
    }

    .trailer-step-2 {
        left: 38.5%;
    }

    .trailer-step-3 {
        left: 65%;
    }

    .trailer-step-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 1199px) {

    .trailer-process-section {
        padding: 80px 24px;
    }

    .trailer-process-timeline {
        display: flex;
        flex-direction: column;
        gap: 28px;
        min-height: auto;
    }

    .trailer-timeline-line,
    .trailer-step-vertical-line,
    .trailer-step-label {
        display: none;
    }

    .trailer-process-step,
    .trailer-step-1,
    .trailer-step-2,
    .trailer-step-3 {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
    }

    .trailer-step-card,
    .trailer-step-2 .trailer-step-card,
    .trailer-step-3 .trailer-step-card {
        margin-top: 0;
        min-height: auto;
    }

    .trailer-step-card p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {

    .trailer-process-header h2 {
        font-size: 34px;
        line-height: 1.12;
    }

    .trailer-step-number {
        font-size: 52px;
    }

    .trailer-step-card h3 {
        font-size: 22px;
    }

    .trailer-process-section {
        padding: 65px 18px;
    }

    .trailer-process-header {
        margin-bottom: 42px;
    }

    .trailer-step-card {
        padding: 24px 18px 20px;
        border-radius: 18px;
    }
}

.video-showcase-section {
    position: relative;
    width: 100%;
    padding: 70px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f6fbfd 0%, #ffffff 100%);
}

.video-showcase-section .video-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(10, 161, 214, 0.12);
    box-shadow: 0 0 40px rgba(10, 161, 214, 0.10);
    z-index: 0;
}

.video-showcase-section .video-shape.shape-one {
    width: 340px;
    height: 340px;
    top: -120px;
    left: -80px;
}

.video-showcase-section .video-shape.shape-two {
    width: 260px;
    height: 260px;
    right: -60px;
    bottom: -70px;
}

.video-showcase-full {
    position: relative;
    z-index: 1;
    width: min(100%, 1920px);
    margin: 0 auto;
    padding: 0 28px;
}

.video-showcase-wrap {
    position: relative;
    padding: 18px;
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 249, 253, 0.90));
    border: 1px solid rgba(10, 161, 214, 0.10);
    box-shadow: 0 30px 80px rgba(20, 54, 73, 0.14);
}

.video-frame-box {
    position: relative;
}

.video-frame-box:before {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(10, 161, 214, 0.22), rgba(10, 161, 214, 0.05));
    filter: blur(10px);
    z-index: 0;
}

.video-frame-inner {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #08141b;
    box-shadow: 0 24px 60px rgba(8, 20, 27, 0.22);
    z-index: 1;
}

.video-frame-inner:before {
    content: "";
    display: block;
    padding-top: 46%;
}

.video-frame-inner:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.14));
    pointer-events: none;
    z-index: 2;
}

.video-frame-inner video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 0;
}

@media (max-width: 991px) {
    .video-showcase-section {
        padding: 50px 0;
    }

    .video-showcase-full {
        padding: 0 18px;
    }

    .video-showcase-wrap {
        padding: 14px;
        border-radius: 28px;
    }

    .video-frame-inner:before {
        padding-top: 56.25%;
    }
}

@media (max-width: 767px) {
    .video-showcase-full {
        padding: 0 10px;
    }

    .video-showcase-wrap {
        padding: 10px;
        border-radius: 22px;
    }

    .video-frame-box:before {
        inset: -8px;
        border-radius: 28px;
    }

    .video-frame-inner {
        border-radius: 18px;
    }
}

.music-audio-card {
    align-items: center;
    background: #396B98;
    color: #000;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.72fr);
    margin-bottom: 14px;
    padding: 18px;
}

.music-audio-card:last-child {
    margin-bottom: 0;
}

.music-audio-card span {
    color: #fff;
    font-size: 11px;
    margin-bottom: 7px;
}

.music-audio-card h5 {
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 5px;
}

.music-audio-card p {
    color: #fff;
    line-height: 1.45;
    margin: 0;
}

.music-audio-card audio {
    width: 100%;
}

/* testimonial */
/* testimonial */
.testimonmial {
    padding: 50px 0;
    background-color: #efefef;
}

.testi {
    position: relative;
}

.testimonmial-content .textt-primary {
    color: #0296DD !important;
}

.testimonmial-content h2 {
    color: #000;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.testimonial-swiper {
    padding: 0 0 30px;
}

.testi::before {
    content: "";
    position: absolute;
    left: -30px;
    /* bottom: -30px; */
    bottom: 10%;
    width: 48%;
    height: 188px;
    background: #000;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
    display: none;
}

.testimonial-card {
    /* min-height: 448px; */
    height: 100%;
    padding: 76px 11%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(120deg, transparent 0 56%, rgba(255, 255, 255, 0.06) 56% 66%, transparent 66% 100%),
        #396B98;
}

.testimonial-card h3 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 12px;
}

.testimonial-card span {
    font-weight: 700;
    margin-bottom: 34px;
}

.testimonial-card p {
    max-width: 680px;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 700;
    margin-bottom: 34px;
}

.testi-stars {
    color: #ffc107;
    letter-spacing: 3px;
}

.testimonial-img {
    width: 100%;
    height: 448px !important;
    object-fit: cover;
    /* filter: brightness(0.65) sepia(0.15) hue-rotate(178deg) saturate(1.25); */
}

.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
    top: auto;
    bottom: 0;
    width: 52px;
    height: 52px;
    color: #000;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(7, 20, 67, 0.12);
}

.testimonial-swiper .swiper-button-prev {
    left: auto;
    right: 88px;
}

.testimonial-swiper .swiper-button-next {
    right: 30px;
}

.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 800;
}

.testimonial-swiper .swiper-pagination {
    display: none;
}

@media (max-width: 991px) {
    .testimonmial {
        padding: 70px 0;
    }

    .testimonial-card,
    .testimonial-img {
        min-height: auto;
        height: auto;
    }

    .testimonial-card {
        padding: 52px 28px;
    }

    .testimonial-img {
        max-height: 360px;
    }
}

@media (max-width: 575px) {
    .testimonmial-content h2 {
        font-size: 30px;
    }

    .testimonial-card::before {
        display: none;
    }

    .testimonial-card h3 {
        font-size: 26px;
    }

    .testimonial-card p {
        font-size: 15px;
    }
}

.contact-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent 26%),
        linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.contact-content-panel {
    height: 100%;
    padding: 36px 32px;
    border-radius: 28px;
    background: #396B98;
    color: #fff;
    box-shadow: 0 24px 55px rgba(6, 43, 61, 0.16);
}

.contact-kicker {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-content-panel h2 {
    margin: 18px 0 16px;
    font-size: 48px;
    line-height: 1.15;
    color: #fff;
}

.contact-content-panel>p {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.contact-points {
    display: grid;
    gap: 18px;
}

.contact-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #C48416 !important;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.contact-point h3 {
    margin: 0 0 4px;
    font-size: 18px;
    color: #fff;
}

.contact-point a,
.contact-point p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    word-break: break-word;
}

.contact-form-panel {
    height: 100%;
    padding: 38px 34px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
}

.contact-form-heading {
    margin-bottom: 24px;
}

.contact-form-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #C48416 !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-form-heading h3 {
    margin-bottom: 10px;
    font-size: 40px;
    color: #396B98;
}

.contact-form-heading p {
    margin: 0;
    color: #5d7381;
    line-height: 1.8;
}

.contact-form .form-label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #396B98;
}

.contact-form .form-control {
    min-height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    padding: 14px 16px;
    color: #1f2937;
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.contact-form .form-control:focus {
    border-color: #000;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.contact-submit-btn {
    min-width: 190px;
    padding: 14px 26px !important;
    border-radius: 5px !important;
}

@media (max-width: 991.98px) {
    .contact-section {
        padding: 70px 0;
    }

    .contact-content-panel,
    .contact-form-panel {
        padding: 30px 26px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-content-panel,
    .contact-form-panel {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .contact-point {
        padding: 16px;
        border-radius: 16px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .contact-submit-btn {
        width: 100%;
    }
}

/* about us page */
.other-banner {
    background-image: linear-gradient(rgb(0 0 0 / 58%), rgb(0 0 0 / 32%)), url(https://deep-waters-law-llc.searchsolutiontesting.com/wp-content/uploads/2026/07/other-banner2.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-content {}

.new-content h3 {
    font-size: 55px;
    color: #fff;
    font-weight: 800;
}

.breadcrumb-item {
    font-weight: 700;
    color: #fff !important;
}

.breadcrumb-item a {
    color: #fff !important;
    font-weight: 700;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

/* about section 2 */
.about-page {
    position: relative;
    padding: 100px 0 110px;
    background: #fff;
    overflow: hidden;
}


.about-img::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: 118px;
    width: 310px;
    height: 210px;
    background: url(https://deep-waters-law-llc.searchsolutiontesting.com/wp-content/uploads/2026/07/Business-Phone-Systems.png) center / contain no-repeat;
    pointer-events: none;
    animation: router 4s ease-in-out infinite;
    display: none;
}

@keyframes router {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-35px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-img {
    position: relative;
    min-height: 505px;
    padding: 48px 0 50px;
}

.about-img::before {
    position: absolute;
    content: "";
    left: 72px;
    top: 76px;
    width: 185px;
    height: 428px;
    border: 4px solid #396B98;
    z-index: 2;
    display: none;
}

.about-img::after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -4px;
    width: 335px;
    height: 215px;
    background: url(https://deep-waters-law-llc.searchsolutiontesting.com/wp-content/uploads/2026/07/hammer.png) center / contain no-repeat;
    z-index: 3;
}

.about-img img {
    position: relative;
    display: block;
    object-fit: cover;
}

.about-img img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 220px;
    height: 365px;
    z-index: 3;
}

.about-img img:last-child {
    width: 400px;
    height: 482px;
    margin-left: 100px;
    z-index: 1;
}

.about-page .about-content {
    max-width: 610px;
    margin-left: auto;
}

.about-page .about-content h2 {
    color: #000;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
}

.about-page .about-content>p {
    color: #81868c;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.what-we-do-body {
    border-bottom: 1px solid var(--divider-color);
    /* margin-bottom: 40px;
    padding-bottom: 40px; */
}

.what-we-do-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.what-we-do-body ul li {
    background-image: url(https://deep-waters-law-llc.searchsolutiontesting.com/wp-content/uploads/2026/07/download.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: 1199px) {
    .about-img img:first-child {
        width: 205px;
    }

    .about-img img:last-child {
        width: 365px;
        margin-left: 88px;
    }

    .about-page .about-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .about-page {
        padding: 76px 0 84px;
    }

    .about-img {
        max-width: 570px;
        margin: 0 auto 34px;
    }

    .about-page .about-content {
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .about-page {
        padding: 58px 0 66px;
    }

    .about-img {
        min-height: 470px;
        padding-top: 26px;
    }

    .about-img::before {
        left: 62px;
        top: 50px;
        width: 160px;
        height: 350px;
    }

    .about-img::after {
        right: -48px;
        bottom: 16px;
        width: 260px;
    }

    .about-img img:first-child {
        top: 82px;
        width: 46%;
        height: 300px;
    }

    .about-img img:last-child {
        width: 76%;
        height: 390px;
        margin-left: 20%;
    }

    .about-page .about-content h2 {
        font-size: 32px;
    }

    .about-page .about-content>p {
        font-size: 15px;
    }

    .about-page .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* our mission */
.mission {
    width: 100%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0;
    background-image: radial-gradient(circle at top left, rgba(93, 147, 93, 0.2), transparent 22%), linear-gradient(135deg, #396B98 0%, #c48416a1 100%), url(https://deep-waters-law-llc.searchsolutiontesting.com/wp-content/uploads/2026/07/bg-image.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mission-content h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: 0.18em;
}

.mission-content h3 {
    font-size: 40px;
    font-weight: 700;
    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: 700;
    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(max-width:1200px) {
    .section-title p {
        font-size: 14px;
    }

    .about1 {
        padding: 70px 0;
    }
}


@media(max-width:992px) {

    .about-us h4 {
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        color: #000;
        margin-bottom: 15px;
        margin-top: 40px;
    }

    .about-image img {
        height: 420px !important;
    }

    .mission {
        padding: 70px 0;
    }
}

@media(max-width:767px) {
    .about1 {
        padding: 60px 0;
    }

    .aboutSection {
        /* margin-top: 100px; */
        padding: 20px;
    }

    .about-image img {
        height: 320px !important;
        border-radius: 20px;
    }

    .black-bg {
        left: -10px;
        top: 45px;
        border-radius: 20px;
    }

    .mission {
        padding: 60px 0;
    }

    .mission-box {
        padding: 28px 22px;
        border-radius: 20px;
    }
}

.process-box {
    background-color: #396B98;
    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: #396B98;
    font-size: 40px;
    line-height: 1.15;
}

.step-box {
    height: 100%;
    padding: 34px 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(6, 43, 61, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.step-box h4 {
    margin: 20px 0 12px;
    color: #396B98;
    font-size: 22px;
}

.step-box p {
    margin: 0;
    color: #5d7381;
    line-height: 1.75;
}

@media(max-width:992px) {
    .process-box {
        padding: 36px 28px;
    }

    .process-gap {
        padding: 70px 0;
    }
}

@media(max-width:767px) {
    .process-box {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .process-gap {
        padding: 60px 0;
    }

    .step-box {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .step-box h4 {
        font-size: 20px;
    }
}

/* 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; */
    max-height: 400px;
    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;
    font-weight: 700;
    background: #f4f7fb;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.revSite-btn:hover,
.revSite-btn.active {
    color: #fff;
    background: #396B98;
    border-left-color: #C48416;
}

.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(https://deep-waters-law-llc.searchsolutiontesting.com/wp-content/uploads/2026/07/faq-image.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
}

.titleBar h6 {
    color: #396B98;
    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: #396B98 !important;
}

.revSite-btn {
    color: #000;
    padding: 10px;
    font-weight: 700;
    background: #f4f7fb;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.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;
    }
}

.sticky-services {
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Mobile fix */
@media (max-width: 992px) {
    .sticky-services {
        position: static;
    }
}

#main-logo {
    width: 400px;
    height: 120px;
}

@media (max-width: 575px) {
    #main-logo {
        width: 300px;
        height: 100px;
    }
}

.footer-box img {
    width: 100%;
    height: 120px;
}

.nav-link {
    font-size: 18px !important;
}