* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

/* ---------- NAV BAR ---------- */

.ds-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 1px 0 rgba(9, 45, 77, 0.08);
    transition: box-shadow 0.3s ease;
}

.ds-nav.scrolled {
    box-shadow: 0 4px 20px rgba(9, 45, 77, 0.1);
}

.ds-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.ds-nav-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 0;
}

.ds-nav-brand img {
    height: 50px;
    width: auto;
}

/* ---- Desktop nav links ---- */

.ds-nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.ds-nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #092D4D;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.ds-nav-item > a:hover {
    background: #f0f5fa;
    color: #074B7B;
}

.ds-nav-item > a .ds-chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.ds-has-submenu:hover > a .ds-chevron {
    transform: rotate(180deg);
}

/* ---- Desktop dropdown (Level 1) ---- */

.ds-submenu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(9, 45, 77, 0.14), 0 0 0 1px rgba(9, 45, 77, 0.06);
    padding: 6px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 110;
}

/* Invisible bridge so cursor can travel from link to dropdown */
.ds-submenu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.ds-has-submenu {
    position: relative;
}

.ds-has-submenu:hover > .ds-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ---- Submenu items ---- */

.ds-submenu-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 450;
    color: #3a4a5c;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.ds-submenu-item > a .ds-chevron-right {
    flex-shrink: 0;
    color: #9aa8b8;
    transition: color 0.15s ease, transform 0.15s ease;
}

.ds-submenu-item > a:hover {
    background: #f0f5fa;
    color: #074B7B;
}

.ds-submenu-item > a:hover .ds-chevron-right {
    color: #074B7B;
    transform: translateX(2px);
}

/* ---- Nested dropdown (Level 2+) ---- */

.ds-submenu-item > .ds-submenu {
    top: -6px;
    left: calc(100% + 4px);
}

/* Bridge for nested submenu (horizontal) */
.ds-submenu-item > .ds-submenu::before {
    top: 0;
    left: -8px;
    right: auto;
    width: 8px;
    height: 100%;
}

/* ---- Nav actions (CTA + Hamburger) ---- */

.ds-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ds-nav-app-btn {
    display: flex;
    align-items: center;
}

.ds-nav-app-btn img {
    height: 38px;
    width: auto;
    transition: opacity 0.2s ease;
}

.ds-nav-app-btn:hover img {
    opacity: 0.85;
}

.ds-nav-cta {
    background: linear-gradient(135deg, #074B7B, #092D4D);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.ds-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(7, 75, 123, 0.3);
}

/* ---- Hamburger ---- */

.ds-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.ds-hamburger:hover {
    background: #f0f5fa;
}

.ds-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #092D4D;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ds-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ds-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.ds-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile overlay menu ---- */

.ds-mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 99;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-mobile-menu.open {
    transform: translateX(0);
}

.ds-mobile-menu-inner {
    padding: 20px 24px 100px;
}

.ds-mobile-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ds-mobile-item {
    border-bottom: 1px solid #f0f2f5;
}

.ds-mobile-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px;
    font-size: 16px;
    font-weight: 500;
    color: #092D4D;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ds-mobile-item > a:hover {
    color: #074B7B;
}

.ds-mobile-item > a .ds-chevron {
    transition: transform 0.3s ease;
    color: #9aa8b8;
}

.ds-has-children.open > a .ds-chevron {
    transform: rotate(180deg);
    color: #074B7B;
}

/* ---- Mobile submenu ---- */

.ds-mobile-sub {
    list-style: none;
    margin: 0;
    padding: 0 0 8px 0;
    display: none;
}

.ds-has-children.open > .ds-mobile-sub {
    display: block;
}

.ds-mobile-subitem > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 4px 12px 16px;
    font-size: 15px;
    font-weight: 400;
    color: #3a4a5c;
    text-decoration: none;
    border-left: 2px solid #e8ecf0;
    margin-left: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.ds-mobile-subitem > a:hover {
    color: #074B7B;
    border-left-color: #074B7B;
}

.ds-mobile-subitem > a .ds-chevron {
    transition: transform 0.3s ease;
    color: #9aa8b8;
}

.ds-mobile-subitem.ds-has-children.open > a .ds-chevron {
    transform: rotate(180deg);
    color: #074B7B;
}

/* Nested mobile sub */
.ds-mobile-subitem > .ds-mobile-sub {
    padding-left: 12px;
}

.ds-mobile-app-btn {
    display: block;
    text-align: center;
    margin-top: 24px;
}

.ds-mobile-app-btn img {
    height: 48px;
    width: auto;
}

.ds-mobile-cta {
    display: block;
    width: 100%;
    margin-top: 12px;
    background: linear-gradient(135deg, #074B7B, #092D4D);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

/* ---- Responsive ---- */

@media (min-width: 769px) {
    .ds-hamburger {
        display: none !important;
    }

    .ds-mobile-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .ds-nav-inner {
        height: 68px;
    }

    .ds-nav-brand img {
        height: 42px;
    }

    .ds-nav-links {
        display: none;
    }

    .ds-nav-app-btn {
        display: none;
    }

    .ds-nav-cta {
        padding: 8px 16px;
        font-size: 12px;
    }

    .ds-hamburger {
        display: flex;
    }

    .ds-mobile-menu {
        top: 68px;
    }
}

body.ds-menu-open {
    overflow: hidden;
}

/* +++++++++++++++++++++++++++++++++++ NavBar End ++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++++++++++++++++ herosection start ++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Fade-in-up animation */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle float for hero image */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ds-hero {
    position: relative;
    background: linear-gradient(180deg, #f0f6fc 0%, #ffffff 100%);
    padding: 80px 0 60px;
    overflow: hidden;
}

.ds-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* Staggered fade-in for all direct children */
.ds-hero-badge,
.ds-hero-title,
.ds-hero-subtitle,
.ds-hero-actions,
.ds-hero-trust,
.ds-hero-image-wrap {
    opacity: 0;
    animation: heroFadeInUp 0.6s ease forwards;
}

/* Badge pill */
.ds-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f0fe;
    color: #074B7B;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.ds-hero-badge svg {
    color: #A5B039;
}

/* Headline */
.ds-hero-title {
    color: #092D4D;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 20px;
}

/* Subtitle */
.ds-hero-subtitle {
    color: #5a6d80;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* CTA buttons */
.ds-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.ds-hero-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #074B7B, #092D4D);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ds-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 75, 123, 0.35);
    color: #fff;
    text-decoration: none;
}

.ds-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #074B7B;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: 2px solid #c8d9e8;
    background: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.ds-hero-btn-secondary:hover {
    border-color: #074B7B;
    background: #f0f6fc;
    transform: translateY(-2px);
    color: #074B7B;
    text-decoration: none;
}

.ds-hero-btn-secondary svg {
    transition: transform 0.2s ease;
}

.ds-hero-btn-secondary:hover svg {
    transform: translateX(3px);
}

/* Trust indicators row */
.ds-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.ds-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5a6d80;
    font-size: 14px;
    font-weight: 400;
}

.ds-hero-trust-item svg {
    color: #A5B039;
    flex-shrink: 0;
}

.ds-hero-trust-item strong {
    color: #092D4D;
    font-weight: 700;
}

/* Hero image */
.ds-hero-image-wrap {
    display: flex;
    justify-content: center;
}

.ds-hero-image {
    width: 100%;
    max-width: 620px;
    height: auto;
    animation: heroFloat 4s ease-in-out infinite;
}

/* ---- Hero responsive ---- */

@media (max-width: 992px) {
    .ds-hero {
        padding: 60px 0 50px;
    }

    .ds-hero-title {
        font-size: 38px;
    }

    .ds-hero-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .ds-hero {
        padding: 48px 0 40px;
    }

    .ds-hero-title {
        font-size: 32px;
    }

    .ds-hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .ds-hero-trust {
        gap: 16px;
    }

    .ds-hero-trust-item {
        font-size: 13px;
    }
}

@media (max-width: 550px) {
    .ds-hero {
        padding: 36px 0 32px;
    }

    .ds-hero-inner {
        padding: 0 16px;
    }

    .ds-hero-badge {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 18px;
    }

    .ds-hero-title {
        font-size: 26px;
    }

    .ds-hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .ds-hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .ds-hero-btn-primary,
    .ds-hero-btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
    }

    .ds-hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 32px;
    }

    .ds-hero-trust-item {
        font-size: 12px;
        gap: 6px;
    }

    .ds-hero-trust-item svg {
        width: 16px;
        height: 16px;
    }

    .ds-hero-image {
        max-width: 100%;
    }
}

/* +++++++++++++++++++++++++++++++++++ herosection End ++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++ Blog Section Start +++++++++++++++++++++++++++++++++++++ */

.blog-section {
    margin-top: 160px;
}

.blog-text>p {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.blog-heading {
    font-size: 40px;
    font-weight: 600;
    color: #092D4D;
    text-align: center;
}

/* ++++++++++++++++++++++++++++++++++  Cards Style  +++++++++++++++++++++++++++++++++++++ */


.blog-card {
    box-shadow: 0px 0px 20px #0b0b0b71;
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid white;
    position: relative;
    width: 384px;
    height: 463px;
    /* position: relative; */
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: scale(1.02);
}

.blog-card>img {
    position: relative;
    margin: 0;
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    object-fit: cover;
}

.card-in-btn {
    position: relative;
    /* left: 12px; */
    width: 101px;
    height: 21px;
    /* margin: 5px; */
    padding: 3px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 5px;
    color: #092D4D;
    border: 1px solid #C9C9C9;
    background: transparent;
}

.blog-card-info>h3 {
    color: #092D4D;
    line-height: 25px;
    /* padding: 5px; */
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0px;
}

.blog-card-info>p {
    margin: 0px;
    padding: 5px 0px;
    color: #092D4D;
    font-size: 12px;
    font-weight: 400;
}

.card-time-date {
    display: flex;
    align-items: center;
    gap: 17px;
    position: absolute;
    bottom: 52px;
}

.date>span {
    font-size: 8px;
    font-weight: 500;
    color: #7C8B9D;
}

.time>span {
    font-size: 8px;
    font-weight: 500;
    color: #7C8B9D;
}

.date>img {
    width: 15px;
    height: 16px;
}

.time>img {
    width: 13.33px;
    height: 13.33px;
}

.blog-card-btn {
    position: absolute;
    bottom: 7px;
    margin: 10px 0px;
    width: 101px;
    height: 26px;
    border-radius: 5px;
    background-color: #A5B039;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    border: none;
}

/* +++++++++++++++++++++++++++++++++++++++++++++ Read More Button +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.read-blogs-btn {
    position: relative;
    width: 281px;
    height: 69px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(45deg, #074B7B, #092D4D);
    background-size: 200%;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    transition: background-position 0.5s, transform 0.2s ease;
}

.read-blogs-btn:hover {
    transform: scale(1.02);
    background-position: right;
}

@media (max-width:1024px) {
    .hero-section {
        padding-top: 10vh;
    }

    .blog-section {
        margin-top: 10px;
    }
}

@media (max-width:992px) {

    .blog-text>p {
        margin: 0 !important;
        font-size: 16px;
    }

    .blog-heading {
        font-size: 30px;
    }

    .blog-card {
        margin: 15px 0px;
        width: 284px;
        height: 363px;
    }

    .blog-card-info {
        padding: 10px !important;
    }

    .blog-card-info>p {
        height: 50px;
        padding: 0 !important;
        overflow: hidden;
        text-overflow: ellipsis;

    }

    .blog-card-info>h3 {
        margin: 5px 0px;
    }

    .read-blogs-btn {
        width: 281px;
        height: 69px;
    }

}

@media(max-width:525px) {
    .read-blogs-btn {
        width: 197px;
        height: 48px;
        font-size: 14px;
        border-radius: 8px;
    }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++ BlogSection End +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++ FAQSection Start +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.faq-section {
    margin-top: 90px;
}

.heading-faq {
    font-size: 40px;
    font-weight: 600;
    color: #092D4D;
}

.sub-heading {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.faq-container {
    background-color: #E7E7E7;
    margin: 10px 0px;
    border-radius: 12px !important;
    transition: transform 0.3s ease-in-out;
}

.faq-container:hover {
    transform: scale(1.02);
}

.faq-button {
    color: #092D4D;
    font-size: 17px;
    font-weight: 500;
    height: 60px;
    border: none;
    background: transparent;
}

.faq-ans {
    font-size: 15px;
    border-top: 1px solid #092d4d8d;
}

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

.accordion-button:focus {
    box-shadow: none;
}

@media (max-width:766px) {
    .heading-faq {
        font-size: 30px;
    }

    .sub-heading {
        font-size: 16px;
    }

    .faq-button {
        font-size: 15px;
    }

    .faq-ans {
        font-size: 13px;
    }
}

@media (max-width:992px) {
    .faq-container {
        width: 95%;
        margin: 10px;
    }

    .faq-section {
        margin-top: 0;
    }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++ FAQSection end +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++ Testimonials Section Start +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

@keyframes dsMarqueeScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes dsMarqueeScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@keyframes dsTestimonialFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ds-testimonials {
    padding: 80px 0 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f0f6fc 50%, #ffffff 100%);
}

.ds-testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.ds-testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f0fe;
    color: #074B7B;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    opacity: 0;
    animation: dsTestimonialFadeIn 0.6s ease forwards;
}

.ds-testimonials-badge svg {
    color: #A5B039;
}

.ds-testimonials-title {
    color: #092D4D;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    opacity: 0;
    animation: dsTestimonialFadeIn 0.6s ease forwards;
}

.ds-testimonials-subtitle {
    color: #5a6d80;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    animation: dsTestimonialFadeIn 0.6s ease forwards;
}

.ds-testimonials-marquee {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.ds-marquee-row {
    padding: 10px 0;
    position: relative;
}

.ds-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 4px 0;
}

.ds-marquee-row--left .ds-marquee-track {
    animation: dsMarqueeScrollLeft 40s linear infinite;
}

.ds-marquee-row--right .ds-marquee-track {
    animation: dsMarqueeScrollRight 45s linear infinite;
}

.ds-marquee-row:hover .ds-marquee-track {
    animation-play-state: paused;
}

.ds-testimonial-card {
    flex-shrink: 0;
    width: 380px;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(9, 45, 77, 0.06), 0 0 0 1px rgba(9, 45, 77, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ds-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(9, 45, 77, 0.12), 0 0 0 1px rgba(9, 45, 77, 0.06);
}

.ds-testimonial-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ds-testimonial-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #7C8B9D;
}

.ds-testimonial-source svg {
    width: 18px;
    height: 18px;
}

.ds-testimonial-stars {
    display: flex;
    gap: 2px;
}

.ds-testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: #FBBC04;
    fill: #FBBC04;
}

.ds-testimonial-text {
    color: #3a4a5c;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

.ds-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f2f5;
}

.ds-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E2EEF9;
    color: #074B7B;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ds-testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.ds-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ds-testimonial-name {
    color: #092D4D;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.ds-testimonial-clinic {
    color: #7C8B9D;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}

.ds-marquee-row::before,
.ds-marquee-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.ds-marquee-row::before {
    left: 0;
    background: linear-gradient(90deg, #f8fbfe 0%, transparent 100%);
}

.ds-marquee-row::after {
    right: 0;
    background: linear-gradient(270deg, #f8fbfe 0%, transparent 100%);
}

/* Testimonials Responsive */

@media (max-width: 992px) {
    .ds-testimonials {
        padding: 60px 0 40px;
    }

    .ds-testimonials-title {
        font-size: 32px;
    }

    .ds-testimonials-subtitle {
        font-size: 16px;
    }

    .ds-testimonial-card {
        width: 320px;
        padding: 24px;
    }

    .ds-marquee-track {
        gap: 18px;
    }

    .ds-marquee-row::before,
    .ds-marquee-row::after {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .ds-testimonials {
        padding: 50px 0 35px;
    }

    .ds-testimonials-title {
        font-size: 28px;
    }

    .ds-testimonials-header {
        margin-bottom: 32px;
    }

    .ds-testimonial-card {
        width: 290px;
        padding: 20px;
    }

    .ds-marquee-track {
        gap: 14px;
    }

    .ds-marquee-row::before,
    .ds-marquee-row::after {
        width: 30px;
    }
}

@media (max-width: 550px) {
    .ds-testimonials {
        padding: 40px 0 28px;
    }

    .ds-testimonials-header {
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .ds-testimonials-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .ds-testimonials-title {
        font-size: 24px;
    }

    .ds-testimonials-subtitle {
        font-size: 15px;
    }

    .ds-testimonial-card {
        width: 260px;
        padding: 18px;
    }

    .ds-testimonial-text {
        font-size: 13px;
    }

    .ds-testimonial-avatar {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .ds-marquee-track {
        gap: 12px;
    }

    .ds-marquee-row--left .ds-marquee-track {
        animation-duration: 30s;
    }

    .ds-marquee-row--right .ds-marquee-track {
        animation-duration: 35s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ds-marquee-track {
        animation-play-state: paused !important;
    }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++ Testimonials Section End +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++ Services Showcase Start +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

@keyframes dsTabFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.ds-services {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f0f6fc 40%, #fff 100%);
}

.ds-services-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */

.ds-services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.ds-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f0fe;
    color: #074B7B;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    opacity: 0;
    animation: heroFadeInUp 0.6s ease forwards;
}

.ds-services-badge svg {
    color: #A5B039;
}

.ds-services-title {
    color: #092D4D;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    opacity: 0;
    animation: heroFadeInUp 0.6s ease forwards 0.1s;
}

.ds-services-subtitle {
    color: #5a6d80;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    animation: heroFadeInUp 0.6s ease forwards 0.2s;
}

/* Tab Navigation */

.ds-svc-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    opacity: 0;
    animation: heroFadeInUp 0.6s ease forwards 0.3s;
}

.ds-svc-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #d6e4f0;
    border-radius: 50px;
    background: #fff;
    color: #5a6d80;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.ds-svc-tab:hover {
    border-color: #074B7B;
    color: #074B7B;
}

.ds-svc-tab.active {
    background: #074B7B;
    border-color: #074B7B;
    color: #fff;
    box-shadow: 0 4px 16px rgba(7, 75, 123, 0.25);
}

.ds-svc-tab.active svg {
    stroke: #fff;
}

/* Panels */

.ds-svc-panels {
    opacity: 0;
    animation: heroFadeInUp 0.6s ease forwards 0.4s;
}

.ds-svc-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 2px 16px rgba(9, 45, 77, 0.07), 0 0 0 1px rgba(9, 45, 77, 0.04);
}

.ds-svc-panel.active {
    display: grid;
    animation: dsTabFadeIn 0.3s ease forwards;
}

/* Panel Content */

.ds-svc-panel-stat {
    display: inline-block;
    background: #f0faf0;
    color: #2d7a2d;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.ds-svc-panel-title {
    color: #092D4D;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.25;
}

.ds-svc-panel-desc {
    color: #5a6d80;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 20px;
}

/* Benefits List */

.ds-svc-panel-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.ds-svc-panel-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3a4a5c;
    font-size: 15px;
    font-weight: 400;
    padding: 7px 0;
    line-height: 1.4;
}

.ds-svc-panel-benefits li svg {
    flex-shrink: 0;
}

/* CTA Button */

.ds-svc-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #074B7B;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.ds-svc-panel-cta:hover {
    background: #053a60;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.ds-svc-panel-cta svg {
    transition: transform 0.2s ease;
}

.ds-svc-panel-cta:hover svg {
    transform: translateX(4px);
}

/* Screenshot Visual */

.ds-svc-panel-screenshot {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(9, 45, 77, 0.1);
}

.ds-svc-panel-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stat Cards */

.ds-svc-panel-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ds-svc-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #f0f6fc 0%, #e8f0fe 100%);
    border-radius: 14px;
    padding: 20px 24px;
    transition: transform 0.2s ease;
}

.ds-svc-stat-card:hover {
    transform: translateX(4px);
}

.ds-svc-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #092D4D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.ds-svc-stat-icon svg {
    stroke: #fff;
}

.ds-svc-stat-number {
    font-size: 26px;
    font-weight: 800;
    color: #074B7B;
    line-height: 1.1;
}

.ds-svc-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #5a6d80;
}

/* Services Showcase Responsive */

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

    .ds-services-title {
        font-size: 32px;
    }

    .ds-services-subtitle {
        font-size: 16px;
    }

    .ds-svc-panel {
        padding: 36px;
        gap: 36px;
    }

    .ds-svc-panel-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .ds-services {
        padding: 50px 0;
    }

    .ds-services-header {
        margin-bottom: 32px;
    }

    .ds-services-title {
        font-size: 28px;
    }

    .ds-svc-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        margin-bottom: 28px;
    }

    .ds-svc-tab {
        font-size: 14px;
        padding: 10px 18px;
    }

    .ds-svc-panel {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .ds-svc-panel-visual {
        order: -1;
    }
}

@media (max-width: 550px) {
    .ds-services {
        padding: 40px 0;
    }

    .ds-services-inner {
        padding: 0 16px;
    }

    .ds-services-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .ds-services-title {
        font-size: 24px;
    }

    .ds-services-subtitle {
        font-size: 15px;
    }

    .ds-services-header {
        margin-bottom: 24px;
    }

    .ds-svc-tab {
        font-size: 13px;
        padding: 8px 14px;
        gap: 6px;
    }

    .ds-svc-tab svg {
        width: 16px;
        height: 16px;
    }

    .ds-svc-panel {
        padding: 22px;
        gap: 22px;
        border-radius: 16px;
    }

    .ds-svc-panel-title {
        font-size: 22px;
    }

    .ds-svc-panel-desc {
        font-size: 15px;
    }

    .ds-svc-panel-benefits li {
        font-size: 14px;
    }

    .ds-svc-stat-card {
        padding: 16px 18px;
    }

    .ds-svc-stat-number {
        font-size: 22px;
    }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++ Services Showcase End +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++ price-section start +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.heading {
    font-weight: 700;
    color: #092D4D;
}

.sub-heading {
    font-weight: 500;
    color: #092D4D;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 20px 0 60px;
}

.pricing-card {
    background: #fff;
    border: 2px solid #E2EEF9;
    border-radius: 16px;
    width: 340px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(9, 45, 77, 0.12);
    border-color: #074B7B;
}

.pricing-card--featured {
    border-color: #A5B039;
    box-shadow: 0 4px 20px rgba(165, 176, 57, 0.15);
}

.pricing-card--featured:hover {
    border-color: #A5B039;
    box-shadow: 0 12px 36px rgba(165, 176, 57, 0.2);
}

.pricing-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #A5B039;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
}

.pricing-card__header {
    background: linear-gradient(135deg, #092D4D 0%, #074B7B 100%);
    padding: 28px 28px 24px;
    color: #fff;
}

.pricing-card__service {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
}

.pricing-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-card__starting {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 4px;
}

.pricing-card__currency {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    align-self: flex-start;
    margin-top: 4px;
}

.pricing-card__amount {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.pricing-card__period {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-left: 2px;
}

.pricing-card__original {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-right: 8px;
}

.pricing-card__body {
    padding: 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: #3a4a5c;
    border-bottom: 1px solid #f0f4f8;
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: #E2EEF9;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23074B7B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.pricing-card__cta {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: linear-gradient(135deg, #074B7B, #092D4D);
    color: #fff;
}

.pricing-card__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(7, 75, 123, 0.3);
    color: #fff;
    text-decoration: none;
}

.pricing-card__cta--outline {
    background: transparent;
    color: #074B7B;
    border: 2px solid #074B7B;
}

.pricing-card__cta--outline:hover {
    background: #074B7B;
    color: #fff;
    box-shadow: 0 4px 16px rgba(7, 75, 123, 0.2);
}

.pricing-card--featured .pricing-card__cta {
    background: linear-gradient(135deg, #A5B039, #8a9430);
}

.pricing-card--featured .pricing-card__cta:hover {
    box-shadow: 0 4px 16px rgba(165, 176, 57, 0.35);
}

.pricing-gst-note {
    font-size: 13px;
    color: #7C8B9D;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .pricing-card {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        gap: 20px;
        padding: 10px 0 40px;
    }
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
}

/* +++++++++++++++++++++++++++++++++++ Service Pages Start +++++++++++++++++++++++++++++++++++ */

/* ---------- Service Hero Section ---------- */

.svc-hero {
    background: linear-gradient(135deg, #092D4D, #074B7B);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.svc-hero-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.svc-hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.svc-hero-circle-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

.svc-hero-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
}

.svc-hero-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.svc-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.6;
}

.svc-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.svc-hero-cta {
    display: inline-block;
    background: #A5B039;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-hero-app-btn {
    display: flex;
    align-items: center;
}

.svc-hero-app-btn img {
    height: 48px;
    width: auto;
    transition: opacity 0.2s ease;
}

.svc-hero-app-btn:hover img {
    opacity: 0.85;
}

.svc-hero-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(165, 176, 57, 0.4);
    color: #fff;
}

/* ---------- Service Section Headers ---------- */

.svc-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #092D4D;
    margin-top: 20px;
    margin-bottom: 10px;
}

.svc-section-subtitle {
    font-size: 18px;
    color: #7C8B9D;
    font-weight: 400;
}

/* ---------- Service Feature Cards ---------- */

.svc-features {
    padding: 80px 0;
}

.svc-feature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
}

.svc-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #E2EEF9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.svc-feature-icon svg {
    width: 28px;
    height: 28px;
    color: #074B7B;
}

.svc-feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #092D4D;
    margin-bottom: 10px;
}

.svc-feature-card p {
    font-size: 15px;
    color: #7C8B9D;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ---------- Service Benefits Section ---------- */

.svc-benefits {
    background: #E2EEF9;
    padding: 80px 0;
}

.svc-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-benefit-list li {
    font-size: 17px;
    color: #092D4D;
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.svc-benefit-check {
    color: #A5B039;
    flex-shrink: 0;
    margin-top: 3px;
}

.svc-benefit-check svg {
    width: 22px;
    height: 22px;
}

/* ---------- Service Stat Cards (GBP page) ---------- */

.svc-stat-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    height: 100%;
}

.svc-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #A5B039;
    line-height: 1;
    margin-bottom: 10px;
}

.svc-stat-card p {
    font-size: 15px;
    color: #7C8B9D;
    margin-bottom: 0;
}

/* ---------- Service Process / How It Works ---------- */

.svc-process {
    padding: 80px 0;
}

.svc-process-step {
    text-align: center;
    position: relative;
}

.svc-process-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #092D4D;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.svc-process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: #092D4D;
    margin-bottom: 8px;
}

.svc-process-step p {
    font-size: 14px;
    color: #7C8B9D;
    margin-bottom: 0;
}

.svc-process-connector {
    position: absolute;
    top: 25px;
    left: calc(50% + 35px);
    width: calc(100% - 70px);
    border-top: 2px dashed #A5B039;
}

/* ---------- Service FAQ ---------- */

.svc-faq {
    padding: 80px 0;
    background: #f9f9f9;
}

/* ---------- Service CTA Banner ---------- */

.svc-cta-banner {
    background: linear-gradient(135deg, #092D4D, #074B7B);
    padding: 80px 0;
}

.svc-cta-heading {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.svc-cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 32px;
}

/* ---------- Service Pages Responsive ---------- */

@media (max-width: 992px) {
    .svc-hero {
        padding: 60px 0;
    }

    .svc-hero-title {
        font-size: 34px;
    }

    .svc-section-title {
        font-size: 30px;
    }

    .svc-features,
    .svc-benefits,
    .svc-process,
    .svc-faq {
        padding: 60px 0;
    }

    .svc-process-connector {
        display: none;
    }

    .svc-process-step {
        margin-bottom: 30px;
    }

    .svc-cta-heading {
        font-size: 30px;
    }

    .svc-stat-number {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .svc-hero {
        padding: 50px 0;
    }

    .svc-hero-title {
        font-size: 28px;
    }

    .svc-hero-subtitle {
        font-size: 16px;
    }

    .svc-section-title {
        font-size: 26px;
    }

    .svc-features,
    .svc-benefits,
    .svc-process,
    .svc-faq {
        padding: 50px 0;
    }

    .svc-cta-banner {
        padding: 50px 0;
    }

    .svc-cta-heading {
        font-size: 26px;
    }

    .svc-feature-card {
        padding: 24px;
    }
}

@media (max-width: 550px) {
    .svc-hero {
        padding: 40px 0;
    }

    .svc-hero-title {
        font-size: 24px;
    }

    .svc-hero-subtitle {
        font-size: 14px;
    }

    .svc-hero-cta {
        padding: 12px 24px;
        font-size: 14px;
    }

    .svc-hero-app-btn img {
        height: 42px;
    }

    .svc-section-title {
        font-size: 22px;
    }

    .svc-section-subtitle {
        font-size: 15px;
    }

    .svc-features,
    .svc-benefits,
    .svc-process,
    .svc-faq {
        padding: 40px 0;
    }

    .svc-cta-banner {
        padding: 40px 0;
    }

    .svc-cta-heading {
        font-size: 22px;
    }

    .svc-stat-number {
        font-size: 36px;
    }

    .svc-benefit-list li {
        font-size: 15px;
    }
}

/* ---------- Service Feature Showcase (Alternating Layout) ---------- */

.svc-showcase {
    padding: 80px 0;
}

.svc-showcase-alt {
    background: #f9fafb;
}

.svc-showcase-row {
    margin-bottom: 60px;
}

.svc-showcase-row:last-child {
    margin-bottom: 0;
}

.svc-showcase-img {
    text-align: center;
}

.svc-showcase-img img {
    border-radius: 12px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 560px;
}

.svc-showcase-content {
    padding: 0 20px;
}

.svc-showcase-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E2EEF9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.svc-showcase-icon svg {
    width: 22px;
    height: 22px;
    color: #074B7B;
}

.svc-showcase-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #092D4D;
    margin-bottom: 12px;
}

.svc-showcase-content p {
    font-size: 16px;
    color: #7C8B9D;
    line-height: 1.7;
    margin-bottom: 16px;
}

.svc-showcase-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-showcase-bullets li {
    font-size: 15px;
    color: #092D4D;
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
}

.svc-showcase-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    background: #A5B039;
    border-radius: 50%;
}

/* Hero screenshot */
.svc-hero-screenshot {
    max-width: 520px;
    border-radius: 12px;
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.25);
}

/* ---------- Service Showcase Responsive ---------- */

@media (max-width: 992px) {
    .svc-showcase {
        padding: 60px 0;
    }

    .svc-showcase-row {
        margin-bottom: 40px;
    }

    .svc-showcase-content h3 {
        font-size: 22px;
    }

    .svc-showcase-img img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .svc-showcase {
        padding: 50px 0;
    }

    .svc-showcase-content {
        padding: 0;
    }

    .svc-showcase-content h3 {
        font-size: 20px;
    }

    .svc-showcase-content p {
        font-size: 15px;
    }
}

@media (max-width: 550px) {
    .svc-showcase {
        padding: 40px 0;
    }

    .svc-showcase-row {
        margin-bottom: 30px;
    }

    .svc-showcase-content h3 {
        font-size: 18px;
    }
}

/* +++++++++++++++++++++++++++++++++++ Service Pages End +++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++++++++++++++++ Callback Widget Start +++++++++++++++++++++++++++++++++++ */

.cb-widget {
    background: linear-gradient(135deg, #092D4D 0%, #074B7B 100%);
    padding: 56px 0;
}

.cb-widget-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cb-widget-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cb-widget-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    max-width: 420px;
}

.cb-widget-form-wrap {
    flex-shrink: 0;
    min-width: 420px;
}

.cb-widget-input-group {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cb-widget-input-group input[type="tel"] {
    flex: 1;
    padding: 14px 18px;
    border: none;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: #092D4D;
    outline: none;
    min-width: 0;
}

.cb-widget-input-group input[type="tel"]::placeholder {
    color: #9aa8b8;
}

.cb-widget-input-group button {
    padding: 14px 28px;
    background: #A5B039;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.cb-widget-input-group button:hover {
    background: #8e9a2e;
}

.cb-widget-input-group button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cb-widget-error {
    display: none;
    font-size: 13px;
    color: #f5c6cb;
    margin-top: 8px;
}

.cb-widget-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(165, 176, 57, 0.15);
    border-radius: 10px;
    padding: 14px 20px;
}

.cb-widget-success svg {
    color: #A5B039;
    flex-shrink: 0;
}

.cb-widget-success span {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 992px) {
    .cb-widget {
        padding: 44px 0;
    }

    .cb-widget-inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .cb-widget-subtitle {
        max-width: 100%;
    }

    .cb-widget-form-wrap {
        min-width: 0;
        width: 100%;
        max-width: 480px;
    }
}

@media (max-width: 550px) {
    .cb-widget {
        padding: 36px 0;
    }

    .cb-widget-title {
        font-size: 22px;
    }

    .cb-widget-input-group {
        flex-direction: column;
        border-radius: 10px;
        overflow: hidden;
    }

    .cb-widget-input-group input[type="tel"] {
        border-radius: 10px 10px 0 0;
    }

    .cb-widget-input-group button {
        border-radius: 0 0 10px 10px;
        padding: 14px;
    }
}

/* +++++++++++++++++++++++++++++++++++ Callback Widget End +++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++++++++++++++++ Footer Start +++++++++++++++++++++++++++++++++++ */

.ds-footer {
    background: #092D4D;
    padding: 80px 0 0;
}

.ds-footer-brand img {
    max-width: 180px;
    height: auto;
    margin-bottom: 16px;
}

.ds-footer-tagline {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ds-footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer social icons */
.ds-footer-social {
    display: flex;
    gap: 10px;
}

.ds-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s ease, transform 0.2s ease;
}

.ds-footer-social a:hover {
    background: #A5B039;
    transform: translateY(-2px);
}

/* Footer headings */
.ds-footer-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.ds-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #A5B039;
    border-radius: 2px;
}

/* Footer links */
.ds-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ds-footer-links ul li {
    margin-bottom: 12px;
}

.ds-footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.ds-footer-links ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

/* Footer contact items */
.ds-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.ds-footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.ds-footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ds-footer-contact-item a:hover {
    color: #fff;
}

/* Footer bottom bar */
.ds-footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.ds-footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-align: center;
    margin: 0;
}

/* Footer responsive */
@media (max-width: 992px) {
    .ds-footer {
        padding: 60px 0 0;
    }

    .ds-footer-bottom {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .ds-footer {
        padding: 50px 0 0;
    }

    .ds-footer-brand {
        margin-bottom: 10px;
    }
}

@media (max-width: 550px) {
    .ds-footer {
        padding: 40px 0 0;
    }

    .ds-footer-heading {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .ds-footer-links ul li a {
        font-size: 13px;
    }

    .ds-footer-contact-item {
        font-size: 13px;
    }
}

/* +++++++++++++++++++++++++++++++++++ Footer End +++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++++++++++++++++ App Badges +++++++++++++++++++++++++++++++++++ */
.app-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.app-badges--inline { flex-direction: row; align-items: center; }
.app-badge img { height: 44px; width: auto; transition: opacity 0.2s; }
.app-badge img:hover { opacity: 0.85; }

.ds-footer-app { margin-top: 20px; }
.ds-footer-app-heading { color: rgba(255, 255, 255, 0.7); font-size: 13px; font-weight: 500; margin-bottom: 8px; }
.ds-footer-app .app-badges { margin-top: 0; }
.ds-footer-app .app-badge img { height: 38px; }

/* +++++++++++++++++++++++++++++++++++ Legal Pages Start +++++++++++++++++++++++++++++++++++ */

.legal-hero {
    background: linear-gradient(135deg, #092D4D, #074B7B);
    padding: 70px 0;
    text-align: center;
}

.legal-hero-title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.legal-content {
    padding: 60px 24px;
}

.legal-inner {
    max-width: 800px;
    margin: 0 auto;
}

.legal-inner h3 {
    font-size: 22px;
    font-weight: 700;
    color: #092D4D;
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 4px solid #A5B039;
}

.legal-inner h4 {
    font-size: 17px;
    font-weight: 600;
    color: #092D4D;
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-inner p {
    font-size: 15px;
    color: #5a6d80;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: left;
}

.legal-inner ul {
    margin: 0 0 16px 20px;
    padding: 0;
}

.legal-inner ul li {
    font-size: 15px;
    color: #5a6d80;
    line-height: 1.8;
    margin-bottom: 10px;
    list-style-type: disc;
}

.legal-inner ul li::marker {
    color: #A5B039;
}

.legal-inner hr {
    border: none;
    border-top: 1px solid #e8ecf0;
    margin: 40px 0;
}

/* ---------- Legal Pages Responsive ---------- */

@media (max-width: 768px) {
    .legal-hero {
        padding: 50px 0;
    }

    .legal-hero-title {
        font-size: 30px;
    }

    .legal-content {
        padding: 40px 20px;
    }

    .legal-inner h3 {
        font-size: 20px;
    }
}

@media (max-width: 550px) {
    .legal-hero {
        padding: 40px 0;
    }

    .legal-hero-title {
        font-size: 26px;
    }

    .legal-content {
        padding: 32px 16px;
    }

    .legal-inner h3 {
        font-size: 18px;
        padding-left: 12px;
    }

    .legal-inner p,
    .legal-inner ul li {
        font-size: 14px;
    }
}

/* +++++++++++++++++++++++++++++++++++ Legal Pages End +++++++++++++++++++++++++++++++++++ */
