/* Global Mobile Reset - Prevent All Overflow */
* {
    box-sizing: border-box;
}



body {
    font-family: "Raleway", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow-x: hidden;
    /* Critical: Prevent horizontal scroll */
    width: 100%;
    max-width: 100%;
}

/* Mobile Body Reset */
@media (max-width: 768px) {
    body {
        padding: 0 !important;
        margin: 0 !important;
        overflow-x: hidden !important;
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }

    .blog-page .blog-grid {
        padding: 1rem 15px !important;
    }
}

#cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #f36f21;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        width 0.2s,
        height 0.2s;
}

#cursor-trail {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(243, 111, 33, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

.cur-lg #cursor {
    width: 28px;
    height: 28px;
}

a {
    text-decoration: none;
}


.btn-primary {
    display: inline-block;
    padding: 10px;
    background: #072658;
    border: none;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    z-index: 1;
    position: relative;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    overflow: hidden;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.btn-primary:hover {
    transform: translateY(-5px);
    background-color: #f59043;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
}

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

.btn-secondary {
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #f59043;
    box-shadow: 0 12px 35px rgba(74, 74, 74, 0.3);
}

.banner-btn {
    background: #f59043;

}

.banner-btn:hover {
    background: #050441;
    border: none;
}

header {
    width: 100%;
    color: rgb(26, 20, 20);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    /* Subtlest elevation */
    transition: all 0.3s ease;
}

.navbar-expand-lg {
    padding: 0px;
}

.home-page header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    color: white;
    background: transparent;
    box-shadow: none;
    /* No shadow to maintain visual merge with banner */
}

.home-page .navbar {
    background-color: transparent;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

.home-page .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: larger;
    color: rgb(12, 2, 2);
    position: relative;
    padding: 7px 0px;
    transition: color 0.3s ease;
}

.home-page .navbar-nav .nav-link {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Make text pop against the banner image */
}

/* Elegant growing underline on hover */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0px;
    left: 50%;
    background-color: #ff7a00;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.nav-link.dropdown-toggle::after {
    margin-left: 8px;
}

.navbar-collapse {
    background-color: #d4731854;
    flex-grow: 0;
    /* display: flex; */
    padding: 3px 17px;
    border-radius: 25px;

}

.home-page #navbarNav,
.home-page .header-phone {
    background-color: #ffffff33;
    padding: 3px 17px;
    border-radius: 25px;
    border: 2px solid white;
}

.nav-item {
    padding: 0px 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ff7707;
    transform: translateY(-1px);
    /* Micro-elevation */
}

.navbar-logo {
    height: 100px;
    /* sets fixed height */
    width: auto;
    /* maintains aspect ratio */

}

.header-cta {
    display: flex;
    align-items: center;

}

.phone-widget {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 12px;
    transition: border-color 0.2s ease;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f9f0e6;
    letter-spacing: 0.5px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: #fff4ea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 111, 33, 0.15);
    border-color: #f36f21;
}

.home-page .header-phone {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: none;
}

.home-page .header-phone:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}



.call-icon {
    /* width: 38px;
    height: 38px; */
    /* border-radius: 50%; */
    /* border: 1.5px solid #e91e8c; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}






.call-icon {
    /* display: inline-block; */
    font-size: 20px;
    /* margin-right: 6px; */
    animation: heartbeat 3s infinite;
    color: #ff4d4d;
}

/* Heartbeat keyframes */
@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.2);
    }
}


.phone-number {
    color: #161f61;
    letter-spacing: 1px;
}

.home-page .phone-number {
    color: #ffffff;
}

.header-quote-btn,
.footer-quote-btn {
    padding: 0.5rem 1rem;
    font-weight: 600;
}

/* Premium Dropdown Styling */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav .dropdown:hover .dropdown-menu {
    font-weight: 600;
    /* display: block; */
}

/* Basic Menu Styling (for old menu if needed) */
nav {
    background: #f9f0e6;
    padding: 1rem 2rem;
    font-family: Arial, sans-serif;
}

.dropdown-menu {
    border: none;
    border-bottom: 3px solid #ff7a00;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
    background: #ffffff;
    padding: 12px;
    min-width: 240px;
}

.dropdown-menu li {
    text-align: start;
    position: relative;
    padding: 6px 15px 6px 30px;
    /* Space for the arrow */
    border-radius: 8px;
    /* For smooth individual item highlight */
    margin-bottom: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-menu li:hover {
    background-color: #fff4ea;
    /* Premium soft background */
    transform: translateX(5px);
}

.dropdown-menu li::before {
    content: "→";
    color: #ff7a00;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

/* Show arrow when hovering over the li */
.dropdown-menu li:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(2px);
}

/* Dropdown items transparent normally */
.dropdown-menu .dropdown-item {
    background: transparent;
    padding: 2px 0;
    font-weight: 500;
    color: #333;
}

.dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: #ff7a00;
}

/* Desktop → hover opens dropdown with animation */
@media (min-width: 992px) {
    .navbar-nav {
        width: 100%;
    }

    /* DEFAULT: always in DOM but hidden */
    .nav-item.dropdown .dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(12px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;

    }

    /* HOVER: smoothly reveal */
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    /* .nav-item.dropdown .dropdown-menu {
        display: none;
    } */


}

.nav-link-wrapper {
    display: flex;
    align-items: center;

}

.nav-link-wrapper .dropdown-toggle-btn {
    border: none;
    background: transparent;
}

/* ========== MOBILE ========== */
@media (max-width: 991px) {
    .navbar {
        position: relative;
        /* anchor for the absolute collapse */
    }

    header {
        position: sticky;
        /* keep sticky — don't touch it */
        top: 0;
    }

    .navbar-collapse {
        background-color: #ffffff;
        position: absolute;
        top: 100%;
        /* Auto-adjusts to any navbar height */
        left: 3%;
        width: 94%;
        z-index: 999;
        border-radius: 16px;
        border-bottom: 3px solid #ff7a00;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        padding: 10px;
        overflow: hidden;
        /* Needed for Bootstrap height animation to clip */
    }

    /* Let Bootstrap's collapse animate height smoothly */
    .navbar-collapse.collapsing {
        transition: height 0.35s ease !important;
    }

    /* Reset desktop dropdown styles on mobile */
    .nav-item.dropdown .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        background: transparent;
        transform: none;
        transition: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-item.dropdown.show .dropdown-menu,
    .nav-item.dropdown .dropdown-menu.show {
        display: block !important;
    }

    /* Disable translateX hover effect on mobile — causes layout glitch */
    .dropdown-menu li:hover {
        transform: none;
    }

    .navbar-nav .nav-link {
        font-size: inherit;
    }

    .navbar-collapse .nav-item {
        border-radius: 8px;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
        margin-bottom: 3px;
        padding: 1px 10px;
    }

    .navbar-collapse .nav-item:hover {
        border-bottom: 2px solid #ff7a00;
        background-color: #fff9f2;
    }

    .navbar-collapse .nav-item .nav-link {
        padding: 2px 0;
        text-align: start;
        transform: none !important;
        /* Disable micro-elevation on mobile */
    }

    .navbar-collapse .nav-item .nav-link:not(.dropdown-toggle)::after {
        display: none;
    }

    /* Phone widget — stack nicely on small screens */
    .header-phone {
        font-size: 14px;
        padding: 6px 12px;
    }

    .dropdown-menu li {
        padding: 3px 0px 1px 0px;
        /* Space for the arrow */



    }


    /* The small arrow button */
    .dropdown-toggle-btn {
        background: none;
        border: none;
        padding: 0px;
        cursor: pointer;
        color: inherit;
        font-size: 14px;
        line-height: 1;
        transition: transform 0.3s ease;
    }

    /* Rotate arrow when dropdown is open */
    .nav-item.dropdown.show .dropdown-toggle-btn {
        transform: rotate(180deg);
    }

    .nav-link-wrapper span.nav-link {
        cursor: default;
        /* No pointer cursor since it's not clickable */
        user-select: none;
    }
}

/* Desktop — whole wrapper triggers hover */
@media (min-width: 992px) {
    .dropdown-toggle-btn {
        color: rgb(12, 2, 2);
    }

    .home-page .dropdown-toggle-btn {
        color: white;
    }
}

/* Mobile — make sure button inherits nav color */
@media (max-width: 991px) {
    .dropdown-toggle-btn {
        color: #161f61;
    }

    .nav-link-wrapper .nav-link {
        flex: 1;
        /* Link takes full available space */
    }

    .dropdown-menu li::before {
        display: none;
    }
}


/*  */

/* .body-div {
 
} */
.home-banner-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

.body-div::before {
    content: "";
    position: absolute;
    /* inset: 0; */
    width: 100%;
    height: 550px;
    background: linear-gradient(to left bottom, rgba(255, 255, 255, 0.08) 0%, rgb(0 0 0 / 48%) 55%, rgb(16 16 16 / 82%) 100%);
    z-index: 1;
}

.slide-content-inner {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(35%);
    color: white;
    text-align: left;
    z-index: 10;
}

.slider-heading {
    font-size: 53px;
    font-weight: 700;
    text-align: start;
    color: #ffffff;
    margin-top: 50px;
}

.service-slider-heading {
    position: absolute;
    font-size: clamp(22px, 4vw, 48px);
    transform: translateY(150%);
    z-index: 10;
}

.heading-content {
    display: inline-block;
    opacity: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeIn 3s ease forwards;
}

.moveza-3d {
    color: orange;
    font-size: 128px;
    font-weight: 700;
    text-shadow: 1px 1px 0 #d35400, 2px 2px 0 #000000, 3px 3px 0 #000000, 4px 4px 0 #000000, 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.right-quote-form {
    border-radius: 24px;
    display: block;
    position: absolute;
    top: 0;
    transform: translateY(31%);
    background: white;
    right: 6%;
    color: white;
    text-align: left;
    z-index: 10;
}

.modal-body {
    padding: 0;
}

.modal-content {
    /* color: var(--bs-modal-color); */
    pointer-events: auto;
    /* background-color: var(--bs-modal-bg); */
    /* background-clip: padding-box; */
    border: none;
    border-radius: 24px;
    outline: 0;
}

.wrapper {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 40px 120px rgba(28, 28, 30, 0.18),
        0 8px 32px rgba(28, 28, 30, 0.08);
    animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RIGHT PANEL */
.panel-right {
    background: #ffffff;
    padding: 2.75rem 3rem 3rem;
    overflow-y: auto;
}

.form-header {
    margin-bottom: 2rem;
    animation: rise 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.form-header .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FF7A00;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header h2 {

    font-size: 3rem;
    font-weight: 700;
    color: #1c1c1e;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.form-header h2 em {
    font-style: italic;
    color: #c6a75e;
}




/* STEPS */
.steps {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1.5px solid #e5e5ea;
    color: #7a7a82;
    background: #ffffff;
}

.step.active .step-num {
    background: #FF7A00;
    border-color: #FF7A00;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(201, 79, 44, 0.3);
}

.step.done .step-num {
    background: #1c1c1e;
    border-color: #1c1c1e;
    color: #ffffff;
}

.step-label {
    font-size: 16px;
    color: #7a7a82;
}

.step.active .step-label {
    color: #FF7A00;
}

.step.done .step-label {
    color: #1c1c1e;
}

.step-line {
    flex: 1;
    height: 1px;
    background: #e5e5ea;
    margin: 0 0.75rem;
    max-width: 40px;
}

/* FORM */
.form-section {
    display: none;
}

.form-section.visible {
    display: block;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.field label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #7a7a82;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #e5e5ea;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #1c1c1e;
    background: #f7f3ed;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        background 0.2s;
    outline: none;
}

.field textarea {
    resize: vertical;
    min-height: 90px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: #FF7A00;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(201, 79, 44, 0.1);
}

/* BUTTONS */
.btn-next,
.btn-submit {
    flex: 1;
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: 10px;
    background: #FF7A00;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(201, 79, 44, 0.25);
}

.btn-next:hover,
.btn-submit:hover {
    background: #FF7A00;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 79, 44, 0.35);
}

.btn-submit {
    background: #FF7A00;
    font-size: 1rem;
}

/* SUCCESS */
.success-icon {
    width: 72px;
    height: 72px;
    background: #FF7A00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 32px;
}

.success-state h3 {
    font-size: 1.6rem;
    color: #1c1c1e;
}

.success-state p {
    color: #7a7a82;
    font-size: 0.9rem;
}

.form-section {
    display: none;
}

.form-section.visible {
    display: block;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field label {
    font-size: 12px;
    margin-bottom: 5px;
}

.field input,
.field select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.field.span2 {
    grid-column: span 2;
}

.form-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 1.5rem;
    border-top: 1px solid #d5cec3;
    gap: 1rem;
}

.btn-next,
.btn-submit {
    background: #FF7A00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-back {
    background: #eee;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.progress-bar {
    height: 4px;
    background: #ddd;
    margin: 20px 0;
}

.progress-fill {
    height: 4px;
    background: #FF7A00;
    width: 33%;
}

.success-state {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-state.visible {
    display: block;
}

.success-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: white;
}

.error {
    color: red;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

input.error-border,
select.error-border {
    border: 1px solid red;
}

/* Responsive */
@media (max-width: 760px) {
    .wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .panel-left {
        padding: 2rem;
    }

    .info-cards {
        display: none;
    }

    .panel-right {
        padding: 2rem 1.5rem;
    }

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

    .field.span2 {
        grid-column: auto;
    }
}

.right-quote-form .panel-right {
    padding: 19px 38px;
}

.right-quote-form .form-header h2 {

    font-size: 2rem;
}

.right-quote-form .field textarea {
    min-height: 68px;
}

.right-quote-form .steps {
    margin-bottom: 1rem;
}

/* Keyframes for fade-in */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
        /* slightly move from below */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

main h2 {
    font-weight: 700;
    color: #333;
    position: relative;
}

/* SECTION SPACING */
section {
    padding: 10px 0;
}

/* CARDS */
.card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

/* SERVICES */
.card-title {
    font-weight: 600;
    color: #fd7e14;
    /* Bootstrap orange */
}

.card-text {
    font-size: 15px;
    color: #555;
}

/* BLOG IMAGES */
.card-img-top {
    border-radius: 10px 10px 0 0;
    height: 200px;
    object-fit: cover;
}

/* BUTTONS */

/* service section */

.flip-card {
    background: transparent;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    position: relative;
}

.card-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    /* ✅ sits on top of everything */
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 350px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    border-radius: 8px;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* ✅ key fix */
    backface-visibility: hidden;
    overflow: hidden;
}

.flip-card-front {
    font-size: larger;
}

.flip-card-front .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgb(255 255 255 / 0%) 0%,
            rgb(0 0 0 / 75%) 100%);
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(rgb(197 154 147 / 42%), rgb(79 22 18 / 81%));
    color: #ffffff;

    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card-back h4,
.flip-card-back h2 {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.reveal {
    opacity: 0;
    transform: translateY(15px);
    animation: revealText 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.9s;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flip-card:hover .reveal,
.flip-card:active .reveal {
    animation-play-state: running;
}

.reveal {
    animation-play-state: paused;
}

.flip-card-back .btn {
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    border-width: 2px;
}

.cardtext {
    bottom: 20px;
}

.about-section {
    padding: 20px 0;
    overflow: hidden;
    /* important for animation */
}

/* Layout */
.about-container {
    padding: 10px 0;
    align-items: center;
    overflow: hidden;
    /* prevents scrollbars during animation */
}

.about-image {
    opacity: 0;
    transform: translateX(-50px);
    animation: img-anim-left 1.1s forwards cubic-bezier(0.65, 0.05, 0.36, 1);
    animation-delay: 0.3s;
}

.about-content {
    opacity: 0;
    transform: translateX(50px);
    animation: img-anim-right 1.1s forwards cubic-bezier(0.65, 0.05, 0.36, 1);
    animation-delay: 0.3s;
}

/* Keyframes */
@keyframes img-anim-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes img-anim-right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Image */
.about-image img {
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
}

.about-content p {
    text-align: justify;
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.about-content {
    position: relative;
}

.about-content .stats-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s ease forwards;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.stat-card:nth-child(1) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.7s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.9s;
}

.stat-card:nth-child(4) {
    animation-delay: 1.1s;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 20px;
    margin-bottom: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #4169e1, #ff6b3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.section-title {
    position: relative;
    text-align: center;
    padding: 0 0 50px 0;
    overflow: hidden;
}

/* BIG outlined background text */
.section-title>p,
.section-title>.title-back {
    font-size: clamp(64px, 10vw, 130px);
    letter-spacing: 0.05em;
    font-family: Arial, Helvetica, sans-serif;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(12, 17, 88, 0.09);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

/* Small visible title */
.section-title>h2 {
    font-family: "Manrope", sans-serif;
    /* font-family: "Amarna", sans-serif; */

    top: 37px;
    font-size: clamp(32px, 5vw, 50px);

    font-weight: 800;
    background: linear-gradient(135deg, rgb(11, 31, 59), #FF7A00);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .section-title>h2 {
        top: 5px;
    }

    .section-title {
        margin: 0px;
        padding: 0px 0 11px 0;
    }

}

/* RESPONSIVE */

footer {
    background: #1a1a2e;
    color: #fff;
    padding: 54px 40px 24px;
}


.footer-wrapper {
    background: linear-gradient(140deg, #081426, #2F2A24, #A84300);
    background-size: cover;
    color: white;

}

.logo-icon img {
    height: clamp(105px, 10vw, 150px);

    filter: brightness(1.4) contrast(1.15);
}

.newsletter-section {
    margin: 0 auto;
    padding: 0 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    align-items: center;
    font-size: xxx-large;
    font-weight: 600;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 2rem 0;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
}

.brand-tagline {
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    color: #ffffff;
    font-size: x-large;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-links {
    padding: 0;
    list-style: none;
}

.footer-links li {
    font-weight: 600;
    color: #ffffff;

    font-size: 16px;
    margin-bottom: 0.75rem;
}

/* Footer links */
.footer-links li {
    position: relative;
    transition:
        transform 0.3s ease,
        color 0.3s ease;

    cursor: pointer;
}

/* Hover: move li text left with a small delay */
.footer-links li:hover {
    transform: translateX(-8px);
    color: #ff6b35;
    transition-delay: 0.15s;
    /* moves slightly after arrow appears */
}

.footer-links a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-bottom {
    /* background: rgba(0, 0, 0, 0.2); */
    padding: 1.5rem 0;
}

.footer-bottom-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-label {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition:
        background 0.3s,
        transform 0.3s;
}

.social-icon:hover {
    background: #e55a28;
    transform: translateY(-3px);
}

.scroll-top {
    width: 45px;
    height: 45px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    margin-left: 1rem;
    border: none;
    font-size: 1.2rem;
    transition:
        background 0.3s,
        transform 0.3s;
}

.scroll-top:hover {
    background: #e55a28;
    transform: translateY(-3px);
}

.footer-contact {
    padding: 18px 10px;
    display: flex;
    justify-content: space-evenly;
    border-radius: 15px;
    border-bottom: #e96b0c 4px solid;
    gap: 1rem;
    perspective: 1000px;
}

.icon-div img {
    height: 30px;
}

/* Mobile Footer Contact - Fully Optimized */
@media (max-width: 768px) {
    .about-section {
        padding: 10px 0;
    }

    .footer-contact {
        gap: 0.25rem;
        padding: 12px 6px;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 1;
        min-width: 0;
        /* Allow shrink */
        margin-bottom: 0.75rem;
    }

    .icon-div img {
        height: 18px;
    }

    .icon-div {
        padding: 0.5rem;
    }

    .email-div span:first-child,
    .contact-us span:first-child,
    .address-div span:first-child {
        font-size: 10px;
    }

    .email-div span:last-child,
    .contact-us span:last-child,
    .address-div span:last-child {
        font-size: 12px;
        line-height: 1.2;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .footer-contact {
        padding: 10px 4px;
        gap: 0.2rem;
    }

    .contact-item {
        padding: 0.25rem;
    }

    .icon-div {
        padding: 0.4rem;
    }


}

.contact-item {
    display: flex;
    text-align: center;
}

.icon-div {
    padding: 1rem;
    border: 2px white dotted;
    border-radius: 40px;
}



.email-div,
.contact-us,
.address-div {
    font-weight: 600;
    padding: 10px 8px;
    text-align: start;
}

.email-div a,
.contact-us a,
.address-div a {
    color: #ffffff;
}

.social-media {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fd8001;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    text-decoration: none;

    transition: all 0.35s ease;
    position: relative;
}

/* Hover animation */
.social-icon:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Glow ring effect */
.social-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.social-icon:hover::after {
    opacity: 1;
}

/* Brand colors */
.facebook:hover {
    background: #1877f2;
}

.facebook:hover::after {
    box-shadow: 0 0 15px #1877f2;
}

.twitter:hover {
    background: #000000;
}

.twitter:hover::after {
    box-shadow: 0 0 15px #000000;
}

.instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.instagram:hover::after {
    box-shadow: 0 0 15px #dd2a7b;
}

.social-icon.youtube:hover {
    background: #FF0000;
}

.social-icon.youtube:hover::after {
    box-shadow: 0 0 15px #FF0000;
}

.email-div span:first-child,
.contact-us span:first-child,
.address-div span:first-child {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    /* color: #FF7A00; */
}

.email-div span:last-child,
.contact-us span:last-child,
.address-div span:last-child {
    font-size: 18px;
    font-weight: 500;
    /* color: #333; */
}


.footer-quote-btn {
    position: fixed;
    bottom: 12px;
    left: 10px;
}

/* ================= TABLET (992px) ================= */
@media (max-width: 992px) {
    .footer-main {
        display: flex;
        flex-direction: column;
        gap: block;
        align-items: center;
        gap: 15px;
        padding: 10px 0;
    }

    .footer-contact {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0px;
        align-items: center;
    }

    .contact-item {
        padding: 0;
        gap: 0;
    }


    .email-div,
    .contact-us,
    .address-div {
        text-align: center;
    }




}

/* ================= MOBILE (768px) ================= */
@media (max-width: 768px) {

    .email-div span:first-child,
    .contact-us span:first-child,
    .address-div span:first-child {
        letter-spacing: normal;
    }

    .social-media {
        justify-content: center;
    }

    .newsletter-section {
        flex-direction: column;
        padding: 1px;

    }

    .brand-tagline {
        font-size: 17px;
        margin: 5px 0;
    }

    .footer-quote-btn {
        display: none;
    }

    .footer-bottom-content {
        margin: 1rem 0;
        flex-direction: column;
        gap: 10px;
    }
}

/* ================= SMALL MOBILE (480px) ================= */
@media (max-width: 480px) {
    .footer-bottom {
        padding: 2px 10px 26px 10px;
    }

    .footer-bottom-content {
        padding: 0 10px;
    }

    .brand-tagline {
        font-size: 15px;
    }

    .footer-wrapper {
        padding: 25px 0;
    }

    .icon-div {
        padding: 10px;
    }

    .contact-item {
        margin: 0 auto;
        gap: 10px;
    }

    .email-div span:last-child,
    .contact-us span:last-child,
    .address-div span:last-child {
        font-size: 12px;
    }
}

.about-content .about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 18px 0;
}

.about-content .stat-item {
    text-align: center;
    padding: 18px;
    background: #0a2066;
    background: linear-gradient(1deg,
            rgba(10, 32, 102, 0.47) 0%,
            rgba(255, 255, 255, 0.57) 50%);
    border-radius: 2px;
    /* border: 2px outset #000; */
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.25),
        -6px -6px 12px rgba(255, 255, 255, 0.6);
    transform: translateZ(0);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.about-content .stat-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow:
        12px 12px 25px rgba(0, 0, 0, 0.35),
        -6px -6px 14px rgba(255, 255, 255, 0.5);
}

.about-content .stat-item i {
    font-size: 40px;
    color: #0c1158;
    margin-bottom: 10px;
    display: inline-block;
    animation: floatIcon 2.5s ease-in-out infinite;
}

.about-content .stat-item {
    animation: floatCard 5s ease-in-out infinite;
}

.about-content .stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.about-content .stat-item:nth-child(3) {
    animation-delay: 0.8s;
}

.about-content .stat-item:nth-child(4) {
    animation-delay: 1.2s;
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* stagger animation for each icon */
.about-content .stat-item:nth-child(2) i {
    animation-delay: 0.3s;
}

.about-content .stat-item:nth-child(3) i {
    animation-delay: 0.6s;
}

.about-content .stat-item:nth-child(4) i {
    animation-delay: 0.9s;
}

.about-content .stat-item h4 {
    font-size: 26px;
    font-weight: 700;
    margin: 5px 0;
    color: #000;
}

.about-content .stat-item span {
    font-size: 14px;
    color: #555;
}

/* mobile-version */
/* icon continuous movement */
@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ===============================
   CLIENT TESTIMONIAL SECTION
================================ */

.client-section {
    background: url("../images/slider-back-img.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

/* ===============================
   SLIDER CONTAINER
================================ */

.testimonial-slider {
    overflow: hidden;
    width: 100%;
    margin: 20px 0;
}

/* ===============================
   TRACK
================================ */

.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

/* ===============================
   AUTO SCROLL ANIMATION
================================ */

.testimonial-slider:not(.reverse) .testimonial-track {
    animation: scrollLeft 30s linear infinite;
}

.testimonial-slider.reverse .testimonial-track {
    animation: scrollRight 35s linear infinite;
}

/* ===============================
   CARD DESIGN
================================ */

.testimonial-card {
    flex: 0 0 18%;
    background: #ffffff;
    border: 2px solid #0b2a4a;
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: #ff7a00;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.25);
}

/* ===============================
   HEADER
================================ */

.cardheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.info {
    flex: 1;
}

/* ===============================
   TEXT
================================ */

.name {
    color: #0b2a4a;
    font-size: 18px;
    font-weight: 700;
}

.title {
    color: #ff7a00;
    font-size: 14px;
}

.quote {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

/* ===============================
   AVATAR
================================ */

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a00, #ffa44d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.avatar i {
    color: #fff;
}

/* ===============================
   ANIMATION KEYFRAMES
================================ */

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

    100% {
        transform: translateX(0);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff7a00;
    border: none;
    color: #fff;
    font-size: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-btn:hover {
    background: #ffa44d;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* ===============================
   MOBILE CAROUSEL
================================ */

@media (max-width: 768px) {
    .right-quote-form {
        display: none;
    }

    .testimonial-track {
        animation: none !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .testimonial-slider {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 40px 20px 40px;
    }

    .testimonial-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        min-width: 70%;
        flex: 0 0 auto;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        padding: 20px;
    }

    .slider-btn {
        display: flex;
        top: 50%;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .slider-btn.prev {
        left: 5px;
    }

    .slider-btn.next {
        right: 5px;
    }

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

    .testimonial-card .title {
        font-size: 12px;
    }

    .testimonial-card .quote {
        font-size: 14px;
        /* keep text readable */
        line-height: 1.5;
        /* spacing between lines */
        white-space: normal;
        /* allow wrapping */
        word-wrap: break-word;
        /* break long words if needed */
        overflow-wrap: break-word;
    }

    .testimonial-card .avatar {
        width: 40px;
        height: 40px;
    }

    .testimonial-card .avatar i {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    /* .navbar-collapse{
    top:77px;
 } */

    .testimonial-slider {
        padding: 10px 35px 15px 35px;
    }

    .testimonial-card {
        min-width: 85%;
        flex: 0 0 auto;
        padding: 15px;
    }

    .name {
        font-size: 14px;
    }

    .title {
        font-size: 11px;
    }

    .quote {
        font-size: 13px;
    }

    .avatar {
        width: 35px;
        height: 35px;
    }



    .right-quote-form {
        display: none;
        right: 0%;
        left: 0%;
    }

    .right-quote-form .form-header h2 {
        font-size: 16px;
        text-align: center;
    }

    .form-header {
        margin-bottom: 5px;
    }

    .right-quote-form .steps {
        margin-bottom: 10px;
    }

    .step-num {
        height: 20px;
        width: 20px;
    }

    .step-label {
        font-size: 12px;
    }

    .field-grid {
        gap: 3px;
        margin-bottom: 1px;
    }

    .right-quote-form .panel-right {
        padding: 12px 26px;
    }

    .right-quote-form {

        transform: translateY(17%);
    }

    .form-nav {
        margin-top: 0px;
        padding-top: 10px;
    }


    .form-header h2 {
        font-size: 23px;
        margin-bottom: 15px;
    }

    .steps {
        margin-bottom: 15px;
    }

    .progress-bar {
        margin: 0;
    }
}

/* ===============================
   MOBILE CAROUSEL
================================ */

@media (max-width: 768px) {
    .testimonial-track {
        animation: none !important;
    }

    .testimonial-slider {
        overflow-x: auto;
    }
}

/* FAQ Section Styling */
/* FAQ Section Styling */

/* Image Section */
.faq-image-wrapper {
    position: sticky;
    top: 40px;
}

.image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.1) 0%,
            rgba(255, 140, 90, 0.1) 100%);
    z-index: 1;
}

.faq-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.badge-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.badge-stat {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
}

/* Bootstrap Accordion Customization */
.accordion {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    background: transparent;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    padding: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #ff6b35;
    background: transparent;
    box-shadow: none;
}

.accordion-button:hover {
    color: #ff6b35;
}

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

.accordion-button::after {
    content: "\f078";
    /* fa-chevron-down */
    font-weight: 900;
    /* solid icon */
    font-family: "Font Awesome 6 Free";
    /* src: url('/assets/webfonts/fa-solid-900.woff2') format('woff2');   */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #072658;
    /* icon color */

    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 10px;

    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* hover */
.accordion-button:hover::after {
    background-color: #ffe5d9;
}

/* when open */
.accordion-button:not(.collapsed)::after {
    content: "\f078";
    /* same icon rotate */
    font-family: "Font Awesome 6 Free";
    /* src: url('/assets/webfonts/fa-solid-900.woff2') format('woff2'); */
    font-weight: 900;

    background: linear-gradient(135deg, #ff8c5a 0%, #ff6b35 100%);
    color: #fff;
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 60px 24px 0;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.accordion-collapse {
    border: none;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .header-cta {
        display: none;
    }

    .faq-image-wrapper {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .faq-image {
        height: 400px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .accordion {
        padding: 24px;
    }

    .accordion-button {
        font-size: 16px;
    }

    .accordion-body {
        padding-right: 0;
    }

    .faq-image {
        height: 300px;
    }

    .image-badge {
        bottom: 20px;
        left: 20px;
        padding: 16px 20px;
    }

    .badge-stat {
        font-size: 24px;
    }

    .about-container {
        display: block;
        text-align: center;
        padding: 0px;
    }

    .workshop-section {
        padding: 40px 20px;
    }

    .contact-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .home-page #navbarNav {
        text-align: start;
        background-color: #000000;
    }

    .header-cta {
        margin-top: 1rem;
    }

    .slider-heading {
        font-size: 30px;

        margin-top: auto;
    }

    .moveza-3d {
        color: orange;
        font-size: 64px;
    }

    .about-content .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-sidebar {
        position: relative;
        top: 0;
        flex: 1;
        max-height: none;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {

    .home-banner-img,
    .body-div::before {
        height: 350px;
    }

    .slide-content-inner {
        top: 38px;
        left: auto;
        transform: translateY(41%);
    }

    .navbar-toggler-icon {
        width: 16px;
        height: 23px;
    }

    .service-home-banner-img {
        width: 100%;
        height: 190px;
        object-fit: cover;
    }

    .faq-section,
    section {
        margin: 10px 0;
    }

    .faq-section {
        margin: 10px 0;
    }

    /* .testimonial-card {
        flex: 0 0 67%;
        padding: 32px 24px;
    } */

    .name {
        font-size: 24px;
    }

    .title {
        font-size: 14px;
    }

    .quote {
        font-size: 18px;
    }

    .avatar {
        width: 56px;
        height: 56px;
    }

    .about-content .about-stats {
        grid-template-columns: 1fr;
    }

    .newsletter-title {
        font-size: 15px;
    }

    .accordion {
        padding: 14px;
    }
}

@media (max-width: 768px) {
    main h2 {
        font-size: 24px;
    }

    .newsletter-form {
        width: 100%;
    }



    .form-row {
        grid-template-columns: 1fr;
    }
}

/* // services-section Page // */


.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}



.service-section {
    background: transparent;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
    margin: 3rem 0;
    padding: 0 15px;
}

.service-section .service-card {
    padding: 0 0 80px 0;
    position: relative;
    border-radius: 20px;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: block;
}

.service-section .service-card:hover {
    transform: translateY(-10px);
}

/* Card Image Container */
.service-section .cardimage {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    height: 350px;
    box-shadow:
        0 -12px 25px rgba(0, 0, 0, 0.18),
        8px 0 20px rgba(0, 0, 0, 0.1),
        -8px 0 20px rgba(0, 0, 0, 0.1);
}

.service-section .cardimage img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-section .service-card:hover .cardimage img {
    transform: scale(1.1);
}

/* Orange Gradient Overlay */
.service-section .cardimage::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(to top,
            #ff8c42,
            rgba(255, 140, 66, 0.7),
            transparent 70%,
            transparent 100%);
    transition: bottom 0.4s ease;
    pointer-events: none;
}

.service-section .service-card:hover .cardimage::after {
    bottom: 0;
}

/* Icon Circle */
.service-section .icon-circle {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.service-section .service-card:hover .icon-circle {
    transform: rotate(360deg);
    background-color: #0a2540;
}

.service-section .icon-circle svg {
    width: 45px;
    height: 45px;
    transition: filter 0.3s ease;
}

.service-section .service-card:hover .icon-circle svg {
    filter: brightness(0) invert(1);
}

/* Card Content */
.service-section .cardcontent {
    background: linear-gradient(135deg, #ff8c42 0%, #ffa45c 100%);
    position: absolute;
    border-radius: 14px;
    padding: 31px 23px 33px;
    right: 0;
    transform: translate(-5%, -65%);
    width: 70%;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
}

.service-section .service-card:hover .cardcontent {
    border-left: 6px solid #0a2540;
    border-bottom: 6px solid #0a2540;
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.4);
}

/* Card Title */
.service-section .card-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: transform 0.3s ease;
}

.service-section .service-card:hover .card-title {
    transform: translateX(5px);
}

/* Card Description */
.service-section .card-description {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* Button Styling */
.service-section .cardcontent .btn {
    background: #0a2540;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-section .cardcontent .btn:hover {
    background: #162d4a;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(10, 37, 64, 0.3);
}

/* Responsive Breakpoints */

/* Desktop - Always keep max 2 cards per row */
@media (min-width: 992px) {
    .service-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 991px) {
    .service-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
    }

    .service-section .cardimage {
        height: 300px;
    }

    .service-section .card-title {
        font-size: 24px;
    }

    .service-section .cardcontent {
        width: 75%;
        padding: 25px 20px;
    }

    .service-section .icon-circle {
        width: 60px;
        height: 60px;
        bottom: 25px;
        left: 25px;
    }

    .service-section .icon-circle svg {
        width: 40px;
        height: 40px;
    }
}

/* Tablet Portrait & Large Mobile */
@media (min-width: 576px) and (max-width: 767px) {
    .service-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 500px;
        margin: 3rem auto;
    }

    .service-section .cardimage {
        height: 320px;
    }

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

    .service-section .cardcontent {
        width: 80%;
        padding: 28px 22px;
    }

    .service-section .card-description {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 575px) {


    .logo-icon,
    .brand-tagline,
    .footer-column h3,
    .footer-column li {
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h3 {
        text-align: center;
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
        padding-bottom: 8px;
        letter-spacing: 0.5px;
    }

    .footer-column h3::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background: #ffb703;
        /* accent color */
        border-radius: 10px;
    }

    .footer-links li {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .navbar-logo {
        height: 70px;
    }

    .service-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 2rem 0;
        padding: 0 10px;
    }

    .service-section .service-card {
        padding: 0 0 60px 0;
    }

    .service-section .cardimage {
        height: 280px;
    }

    .service-section .cardcontent {
        width: 85%;
        padding: 20px 18px 25px;
        transform: translate(-5%, -55%);
    }

    .service-section .card-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .service-section .card-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .service-section .icon-circle {
        display: none;
        width: 46px;
        height: 46px;
        bottom: 55px;
        right: 25px;
        left: auto;
    }


    .service-section .icon-circle svg {
        width: 30px;
        height: 30px;
    }

    .service-section .cardcontent .btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .service-section {
        gap: 2.5rem;
    }

    .service-section .cardimage {
        height: 250px;
    }

    .service-section .cardcontent {
        width: 90%;
        padding: 18px 15px 20px;
    }

    .service-section .card-title {
        font-size: 20px;
    }

    .service-section .card-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .service-section .icon-circle {
        display: none;
        width: 50px;
        height: 50px;
        bottom: 18px;
        right: 18px;
        left: auto;

    }


}

/* Fix Bootstrap Column Issues */
.service-section .service-card.col-5 {
    width: auto !important;
    flex: none !important;
    max-width: none !important;
}

/* Ensure Proper Link Behavior */
.service-section .service-card.text-decoration-none:hover {
    text-decoration: none !important;
}

.service-section .service-card.text-reset {
    color: inherit !important;
}

/* Loading State (Optional Enhancement) */
.service-section .cardimage img:not([src]) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: service-loading 1.5s infinite;
}

@keyframes service-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.service-card:active::before {
    width: 500px;
    height: 500px;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-title {
        font-size: 24px;
    }

    .banner-text .word {
        padding: 0px 10px;
    }
}

.service-body-div {
    position: relative;
    width: 100%;
}

.service-home-banner-img {
    width: 100%;
    /* height: auto; */
    display: block;
}

.service-body-div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* overlay color */
    z-index: 1;
}


.banner-text {
    width: 100%;
    position: absolute;
    top: 40%;
    left: auto;
    right: auto;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 1;
}

.banner-text .word {
    font-size: clamp(26px, 5vw, 48px);

    opacity: 0;
    transform: translateY(20px);

    animation: wordFade 1s ease forwards;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;

    text-shadow:
        1px 1px 0 #575353,
        2px 2px 0 #4b4747,
        2px 2px 0 #555252,
        2px 2px 0 #6b6767,
        2px 2px 5px rgba(0, 0, 0, 0.8);
}

.banner-text .word:nth-child(1) {
    animation-delay: 0.3s;
}

.banner-text .word:nth-child(2) {
    animation-delay: 0.9s;
}

.banner-text .word:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes wordFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-text p{
      color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgb(18 18 18), 0 0 10px rgb(255 255 255 / 0%), 2px 2px 8px rgba(0, 0, 0, 0.9);
    display: inline-block;
    padding: 10px 18px;
    border-radius: 12px;
}

.section-heading {
    text-align: center;
    margin: 2rem 0 0 0;
}

.section-heading h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 1rem 0 0 0;
}

.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4169e1, #ff6b3d);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff8b5c, #4169e1);
    border-radius: 50%;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #2849c5, #ff6b3d);
    border-radius: 50%;
    bottom: 10%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }

    50% {
        transform: translate(0, -100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, -50px) rotate(270deg);
    }
}

.creative-quote {
    background: linear-gradient(135deg, #fd7b00, rgb(7 38 88));
    padding: 28px;
    border-radius: 18px;
    color: #fff;
}

.creative-quote h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.quote-subtext {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.creative-quote .form-control,
.creative-quote .form-select {
    /* color: white; */
    border-radius: 12px;
    border: none;
    padding: 12px 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group.split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px;
}

.btn-quote {
    color: #000;
    font-weight: 600;
    padding: 14px;
    border-radius: 14px;
    border: none;
}


.trust-text {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    align-items: center;
    padding: 10px 15px 15px;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-tag {
    color: black;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {

    font-size: 4rem;
    font-weight: 600;
    color: black;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.card-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 1s;
}

.floating-card h4 {

    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.floating-card p {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    /* background: white; */
}

.services-section p {
    text-align: start;
    margin: auto 0;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 2fr;

    margin: 0 auto;
}

.services-sidebar {
    position: sticky;
    padding: 0 10px;
    flex: 0 0 380px;
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #f4f4f4;
    border-radius: 20px;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-sidebar h2 {

    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 15px 0;
    color: var(--secondary);
    font-size: 1rem;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.service-list li:hover {
    padding-left: 40px;
}

.service-list li:hover::before {
    transform: translateX(5px);
}

.services-content {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.service-item {
    margin-bottom: 100px;
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.service-item:nth-child(1) {
    animation-delay: 0.5s;
}

.service-item:nth-child(2) {
    animation-delay: 0.7s;
}

.service-item:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image {
    transform: scale(1.02);
}

.service-item h3 {

    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-item p {
    color: var(--secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 700px;
}

/* CTA Section */
.cta-section {
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, #5a5a5a 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {

    font-size: 3.5rem;
    margin-bottom: 25px;
    animation: fadeIn 0.8s ease-out;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.cta-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-form input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;

}

.cta-form button {
    background: var(--accent);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;

}

.cta-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.services-section-hero {
    display: flex;
    margin: 0 auto;
}

.hero-content-section {
    margin-top: 20px;
}


@media (max-width: 991px) {
    .services-sidebar {
        display: none;
    }

    .services-section-hero {
        display: block;
    }

    .services-section-hero .hero-section {
        display: block;
    }

    .services-section-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content-section>p,
    .services-content>p {

        text-align: justify;
    }

}

@media (max-width: 575px) {
    .services-section-hero {
        display: block;
    }

    .hero-content-section {
        margin-top: 0px;
    }
}

/* .hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
} */

.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.services-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-content {
    padding-left: 20px;
}

.services-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.services-description {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.section-header h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: rgb(11, 31, 59);
}

.section-header p {
    text-align: center;
}

.section-header h2 .gradient-text {
    background: linear-gradient(135deg, rgb(11, 31, 59), #f36f21);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-section {
    margin: 0 auto;
}

.solutions-section .hero-section {
    /* display: flex; */
    gap: 20px;
}

/* Animate both */
.solutions-section .services-image,
.solutions-section .services-content {
    transition: all 0.5s ease;
}

/* Default */
.solutions-section .services-image {
    flex: 1;
    opacity: 1;
}

.solutions-section .services-content {
    flex: 1;
}

/* 🔥 When NO image */
.solutions-section .hero-section.no-image .services-image {
    flex: 0;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.solutions-section .hero-section.no-image .services-content {
    flex: 2;
}

.image-container {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    height: 500px;
}

.content-container {
    padding-left: 20px;
}

/* blog home page */

.blog-page .hero {
    padding: 4rem 2rem;
    text-align: center;
    background: #ffffff;
}

.blog-page .hero-title {

    font-size: clamp(16px, 8vw, 60px);

    line-height: 1.1;

    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0a2540 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-page .hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.blog-page .categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: center;
}

.blog-page .category-tag {
    padding: 0.5rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-page .category-tag:hover,
.blog-page .category-tag.active {
    background: #ff8c42;
    color: white;
    border-color: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.blog-page .blog-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

.blog-page .blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    animation: blogSlideUp 0.6s ease-out both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.blog-page .blog-card:nth-child(2) {
    animation-delay: 0.1s;
}

.blog-page .blog-card:nth-child(3) {
    animation-delay: 0.2s;
}

.blog-page .blog-card:nth-child(4) {
    animation-delay: 0.3s;
}

.blog-page .blog-card:nth-child(5) {
    animation-delay: 0.4s;
}

.blog-page .blog-card:nth-child(6) {
    animation-delay: 0.5s;
}

.blog-page .blog-card:nth-child(7) {
    animation-delay: 0.6s;
}

@keyframes blogSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-page .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-page .blog-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-page .blog-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-page .blog-content {
    padding: 2rem;
}

.blog-page .blog-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.blog-page .blog-category {
    color: #ff8c42;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.blog-page .blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-page .blog-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;

    color: #0a2540;
    transition: color 0.3s ease;
}

.blog-page .blog-card:hover .blog-title {
    color: #ff8c42;
}

.blog-page .blog-title a {
    color: black;
}

.blog-page .blog-excerpt {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-page .blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.blog-page .author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-page .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c42 0%, #ffa45c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.blog-page .author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0a2540;
}

.blog-page .read-time {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.blog-page .featured-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    background: linear-gradient(135deg, #ff8c42 0%, #072658 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.blog-page .featured-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at top right,
            rgba(255, 140, 66, 0.15) 0%,
            transparent 70%);
}

.blog-page .featured-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-page .featured-tag {
    display: inline-block;
    background: #ff8c42;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.blog-page .featured-title {
    color: white;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;

}

.blog-page .featured-title a {
    text-decoration: none;
    color: white;
}

.blog-page .featured-excerpt {
    line-height: 1.8;
    opacity: 0.9;
}

.blog-page .featured-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.blog-page .featured-image-container {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
}

.blog-page .featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.6s ease;
}

.blog-page .featured-card:hover .featured-image {
    transform: scale(1.05);
}

.blog-page .load-more {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
    text-align: center;
}

.blog-page .load-more-btn {
    background: #ff8c42;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-page .load-more-btn:hover {
    background: #0a2540;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.4);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .blog-page .featured-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-page .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .blog-page .hero {
        padding: 3rem 1.5rem;
    }

    .blog-page .hero-title {
        font-size: 2.5rem;
    }

    .blog-page .blog-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .blog-page .featured-title {
        font-size: 2rem;
    }

    .blog-page .featured-card {
        padding: 2rem;
    }

    .blog-page .blog-title {
        font-size: 1.5rem;
    }

    .blog-page .categories {
        gap: 0.75rem;
    }

    .blog-page .category-tag {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .solutions-section .hero-section {
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 24px;
    }

    .services-content h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .services-content {
        padding: 10px;
        padding-bottom: 0px;
    }

    .blog-page .hero-title {
        font-size: 2rem;
    }

    .blog-page .hero-subtitle {
        font-size: 1rem;
    }

    .blog-page .featured-title {
        font-size: 1.75rem;
    }

    .blog-page .featured-excerpt {
        font-size: 1rem;
    }

    .blog-page .featured-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-page .blog-image {
        height: 220px;
    }

    .blog-page .blog-content {
        padding: 1.5rem;
    }

    .blog-page .blog-title {
        font-size: 1.35rem;
    }

    .blog-page .load-more-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

/* blog-sidbar */
/* Article Container */
.article-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin: 2rem 0 4rem;
}

/* Main Article */
.article-main {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.article-header {
    padding: 30px 30px 20px;
}

.article-category {
    display: inline-block;
    background: #FF7A00;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
}

.article-meta {
    display: flex;
    gap: 2rem;
    color: #6c757d;
    font-size: 0.95rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-featured-image {
    width: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.article-content {
    padding: 1.2rem;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: #2d3748;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
}

.article-content blockquote {
    border-left: 4px solid #FF7A00;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #4a5568;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.article-content code {
    background: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;

    font-size: 0.9em;
    color: #e83e8c;
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    position: sticky;
    top: 110px;
    /* distance from top when scrolling */
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 0.8rem;
}

.share-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s;
    text-align: center;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.facebook {
    background: #4267b2;
}

.share-btn.youtube {
    background: #0077b5;
}

/* Related Posts */
.related-post {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f5;
}

.related-post:last-child {
    border-bottom: none;
}

.related-post-title {
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-decoration: none;
    display: block;
}

.related-post-title:hover {
    color: #FF7A00;
}

.related-post-date {
    color: #adb5bd;
    font-size: 0.85rem;
}

.newsletter-form-blog input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.newsletter-form-blog button {
    padding: 0.8rem 1.5rem;
    background: #FF7A00;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.newsletter-form-blog button:hover {
    background: #FF7A00;
}

.newsletter-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* quote-form */
/* ─── QUOTE FORM CARD ─── */

.model-content {
    background-color: red !important;
}

.slider-content-right {
    position: relative;
    /* remove absolute positioning */
    margin: 0 auto;
    /* horizontally center */
    z-index: 1;
    padding: 20px;
    background: transparent;
    /* border-radius: 16px; */
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.15s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-content-right .card-header {
    background: #1a2456;
    padding: 13px 15px;
    padding-bottom: 1px;
    text-align: center;
}

.slider-content-right .card-header h2 {

    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
    margin: 0;
}

.slider-content-right .card-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-top: 1px;
}

.card-body {
    padding: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    font-size: 12px;
    font-weight: 700;
    /* color: #666; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

input,
select,
textarea {
    border: 1.5px solid #dde1ec;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    background: #f4f5f8;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    outline: none;
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #f5a623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
    background: #fff;
}

textarea {
    resize: vertical;
    min-height: 50px;
}

.btn-submit {
    width: 100%;
    /* background: #f5a623; */
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.1s;
    margin-top: 4px;
}

.btn-submit:hover {
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .article-container {
        grid-template-columns: 1fr;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .form-div-content {
        padding: 100px 20px 60px;
        flex-direction: column;
    }

    .quote-card {
        flex: 0 0 auto;
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .slider-content-right {
        width: 90%;
        max-width: none;
    }
}

/* ================================
   TESTIMONIAL SECTION (FINAL)
================================ */

/* =========================================
   TESTIMONIAL SECTION – FINAL VERSION
========================================= */
/* Wrapper */
.detail-faqs-wrapper {
    max-width: 1100px;
    width: 100%;
    overflow: hidden;
    margin: auto;
    padding: 20px 0;
}

/* Track */
.detail-faqs-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}

/* Card */
.detail-faqs-card {
    min-width: calc(50% - 15px);
    background: #0f172a;
    padding: 35px;
    border-radius: 22px;
    position: relative;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
    color: #e2e8f0;
    border: 2px solid #1e293b;
    /* Dark navy border */
}

/* Subtle Gradient Border Glow */
.detail-faqs-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 22px;

    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.detail-faqs-card:hover {
    transform: translateY(-6px);
    border-color: #f97316;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(249, 115, 22, 0.25);
}

.detail-faqs-card:hover::before {
    opacity: 1;
}

/* Quote mark */
.detail-faqs-qmark {
    font-size: 70px;
    color: #f97316;
    opacity: 0.08;
    position: absolute;
    top: 10px;
    left: 20px;
}

/* Stars */
.detail-faqs-stars {
    color: #fb923c;
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
}

/* Text */
.detail-faqs-text {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Author Section */
.detail-faqs-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-faqs-name {
    font-weight: 600;
    color: #ffffff;
}

.detail-faqs-role {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 3px;
}

/* Industry Tag */
.detail-faqs-tag {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    transition: 0.3s ease;
}

.detail-faqs-card:hover .detail-faqs-tag {
    background: #f97316;
    color: #0f172a;
}

/* Navigation */
.detail-faqs-nav {
    text-align: center;
    margin-top: 45px;
}

/* Buttons */
.detail-faqs-nav button {
    background: linear-gradient(135deg, #f97316, #fb923c);
    border: none;
    color: #0f172a;
    padding: 13px 28px;
    margin: 0 12px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.detail-faqs-nav button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
}

.detail-faqs-nav button:active {
    transform: scale(0.95);
}

/* Dots Container */
.detail-faqs-nav {
    text-align: center;
    margin-top: 40px;
}

.detail-faqs-dots {
    display: inline-flex;
    gap: 12px;
}

/* Each Dot */
.detail-faqs-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #334155;
    /* dark navy */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.detail-faqs-dot:hover {
    background: #f97316;
    transform: scale(1.2);
}

/* Active Dot */
.detail-faqs-dot.active {
    background: #f97316;
    width: 28px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0;
    }

    .detail-faqs-card {
        min-width: 100%;
    }
}





.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(7 38 88 / 42%),
            /* navy blue semi-transparent top */
            rgb(249 92 10 / 36%)
            /* orange semi-transparent bottom */
        );
    z-index: 0;
}

/* ── Service Areas Section ── */
.service-areas-section {
    position: relative;
    background: #F6F7FB;
    padding: 10px 13px;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

/* Dot pattern */
.service-areas-section .sa-dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(10, 22, 40, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Glow */
.service-areas-section .sa-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(249, 92, 10, 0.10) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.service-areas-section .sa-wrapper {
    position: relative;
    z-index: 1;
}

/* Header */
.service-areas-section .sa-header {
    margin-bottom: 32px;
}





.service-areas-section .sa-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.service-areas-section .sa-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px, 5vw, 50px);
    line-height: 0.95;
    color: #0A1628;
    letter-spacing: 1px;
    margin: 0;
}

.service-areas-section .sa-title em {
    font-style: normal;
    color: #F95C0A;
}

/* Separator */
.service-areas-section .sa-sep {
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, #F95C0A 0%, rgba(249, 92, 10, 0.2) 35%, #E4E8F0 100%);
    margin-bottom: 28px;
    border-radius: 2px;
}

/* Card */
.service-areas-section .sa-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border: 2px solid rgba(11, 31, 75, 0.08);
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
    color: #0B1F4B;
}

.service-areas-section .sa-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #F05A1A;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .25s ease;
    border-radius: 4px 0 0 4px;
}

.service-areas-section .sa-card:hover {
    border-color: #F05A1A;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11, 31, 75, 0.12);
    color: #0B1F4B;
    text-decoration: none;
}

.service-areas-section .sa-card:hover::before {
    transform: scaleY(1);
}

.service-areas-section .sa-card::after {
    content: '→';
    position: absolute;
    right: 20px;
    bottom: 24px;
    width: 28px;
    height: 28px;
    background: #F05A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    line-height: 28px;
    text-align: center;
    opacity: 0;
    transform: translateX(8px);
    transition: all .25s ease;
}

.service-areas-section .sa-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.service-areas-section .sa-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #F05A1A;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.service-areas-section .sa-name {
    font-size: 20px;
    font-weight: 700;
    color: #0B1F4B;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-areas-section .sa-sub {
    font-size: 11px;
    color: rgba(11, 31, 75, 0.4);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.service-areas-section .sa-footer {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
    border-top: 1.5px solid #E4E8F0;
}

.service-areas-section .sa-footer-left {
    font-size: 13px;
    color: #8A95A8;
}

.service-areas-section .sa-footer-left strong {
    color: #F95C0A;
    font-weight: 600;
}

.service-areas-section .sa-footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.service-areas-section .sa-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8A95A8;
    padding: 5px 12px;
    border: 1.5px solid #E4E8F0;
    border-radius: 4px;
    background: #fff;
}

.service-areas-section .sa-tag--navy {
    background: #0A1628;
    border-color: #0A1628;
    color: #fff;
}

.service-areas-section .sa-tag--orange {
    background: rgba(249, 92, 10, 0.08);
    border-color: rgba(249, 92, 10, 0.25);
    color: #F95C0A;
}


.mobile-info {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    padding: 10px 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    gap: 10px;
}

.mobile-info button {
    background: #072658;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    flex: 1;
}

.mobile-info button:hover {
    background: #423535;
}

.mobile-info .mob-phone-link {
    text-decoration: none;
    flex: 1;
}

.mobile-info .mob-phone-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ff8c42;
    color: #fff;
    padding: 10px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.mobile-info .mob-phone-wrap:hover {
    background: #414040;
}

.mobile-info .mob-call-icon {
    font-size: 16px;
}

.mobile-info .mob-phone-num {
    font-size: 16px;
}



/* // privacy policy page  */


.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    color: #fff;
    padding: 84px 40px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    animation: orbPulse 5s ease-in-out infinite;
}

.orb1 {
    width: 440px;
    height: 440px;
    background: rgba(244, 121, 32, 0.09);
    top: -110px;
    right: -90px;
    animation-delay: 0s;
}

.orb2 {
    width: 320px;
    height: 320px;
    background: rgba(244, 121, 32, 0.07);
    bottom: -110px;
    left: -70px;
    animation-delay: 2.5s;
}

.orb3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
    top: 45%;
    left: 48%;
    transform: translate(-50%, -50%);
    animation-delay: 1.2s;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-tag {
    display: inline-block;
    background: rgba(244, 121, 32, 0.18);
    border: 1px solid rgba(244, 121, 32, 0.45);
    color: #ffaa66;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 22px;
    animation: fadeDown 0.65s ease both;
}

.hero h1 {
    font-size: 50px;
    color: white;
    font-weight: 800;
    margin-bottom: 18px;
    animation: fadeDown 0.65s 0.12s ease both;
}

.hero h1 em {
    color: #f47920;
    font-style: normal;
    position: relative;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f47920;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineIn 0.7s 0.9s ease forwards;
}

@keyframes underlineIn {
    to {
        transform: scaleX(1);
    }
}

.hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.68);
    max-width: 540px;
    margin: 0 auto 28px;
    animation: fadeDown 0.65s 0.24s ease both;
}

.progress-wrap {
    position: sticky;
    top: 68px;
    height: 3px;
    background: #ebebeb;
    z-index: 99;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f47920, #ffb347);
    transition: width 0.08s linear;
    border-radius: 0 2px 2px 0;
}

.page-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 56px 40px 96px;
    display: grid;
    grid-template-columns: 244px 1fr;
    gap: 52px;
}

.sidebar {
    position: sticky;
    top: 116px;
    align-self: start;
}

.sidebar-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #aaa;
    font-weight: 600;
    margin-bottom: 14px;
}

.toc {
    list-style: none;
}

.toc li {
    border-left: 2px solid #ebebeb;
    transition: border-color 0.3s;
}

.toc li.active {
    border-left-color: #f47920;
}

.toc a {
    display: block;
    padding: 7px 14px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.22s, padding-left 0.22s;
}

.toc a:hover,
.toc li.active a {
    color: #f47920;
    font-weight: 600;
    padding-left: 20px;
}

.contact-card {
    margin-top: 28px;
    background: #fff8f2;
    border: 1px solid #fde0c4;
    border-radius: 12px;
    padding: 18px;
    transition: transform 0.28s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.28s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(244, 121, 32, 0.16);
}

.contact-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.contact-card a {
    display: block;
    color: #f47920;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 4px;
}

.content {
    min-width: 0;
}

.intro-box {
    background: #fff8f2;
    border-left: 4px solid #f47920;
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin-bottom: 40px;
    font-size: 14px;
    color: #555;
    animation: slideLeft 0.55s ease both;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.privacy {
    display: contents;
}

.section {
    margin-bottom: 28px;
    scroll-margin-top: 100px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 28px 30px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.52s ease, transform 0.52s ease, box-shadow 0.3s, border-color 0.3s;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.09);
    border-color: #fde0c4;
}

.section-hd {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.sec-num {
    background: #f47920;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(244, 121, 32, 0.32);
    transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

.section:hover .sec-num {
    transform: rotate(-10deg) scale(1.12);
}

.section h2 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
}

.section p {
    color: #444;
    margin-bottom: 12px;
    font-size: 14px;
}

.section ul {
    margin: 10px 0 14px;
    padding-left: 0;
    list-style: none;
}

.section ul li {
    padding: 8px 8px 8px 28px;
    position: relative;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #f8f8f8;
    transition: background 0.2s, padding-left 0.2s;
}

.section ul li:hover {
    background: #fffaf5;
    padding-left: 34px;
}

.section ul li::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 17px;
    width: 8px;
    height: 8px;
    background: #f47920;
    border-radius: 50%;
    transition: transform 0.22s;
}

.section ul li:hover::before {
    transform: scale(1.5);
}

.section ul li:last-child {
    border-bottom: none;
}

.hbox {
    border-radius: 10px;
    padding: 18px 22px;
    margin: 16px 0;
    transition: transform 0.22s;
}

.hbox:hover {
    transform: translateX(5px);
}

.hbox.warn {
    background: #fff8f2;
    border: 1px solid #fde0c4;
    border-left: 4px solid #f47920;
}

.hbox.info {
    background: #f0f7ff;
    border: 1px solid #c8e0f8;
    border-left: 4px solid #378add;
}

.hbox.neutral {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-left: 4px solid #bbb;
}

.hbox p {
    margin: 0;
    font-size: 14px;
    color: #444;
}

.hbox strong {
    color: #1a1a2e;
}

.btt {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 48px;
    height: 48px;
    background: #f47920;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(244, 121, 32, 0.42);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.3s, transform 0.3s, background 0.22s;
    z-index: 200;
    border: none;
}

.btt.show {
    opacity: 1;
    transform: translateY(0);
}

.btt:hover {
    background: #d96500;
    transform: translateY(-4px);
}

.btt svg {
    width: 20px;
    height: 20px;
}

.ft-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
    margin-top: 10px;
    line-height: 1.7;
    max-width: 240px;
}

.ft-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.32);
    margin-bottom: 14px;
}

.ft-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s, padding-left 0.22s;
}

.ft-col a:hover {
    color: #f47920;
    padding-left: 6px;
}

.ft-bottom {
    max-width: 1120px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
}

.ft-bottom a {
    color: #f47920;
    text-decoration: none;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-120px) scale(1);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .page-wrap {
        grid-template-columns: 1fr;
        padding: 17px 16px 17px;
    }

    .sidebar {
        display: none;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 50px 20px 40px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .section {
        padding: 20px;
    }

    .detail-faqs-nav {
        margin-top: 17px;
    }
}



/* =========================
   LOADING WRAPPER
========================= */
#loading {
    display: none;
    text-align: center;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    color: #555;
}

/* =========================
   SPINNER
========================= */
.loader {
    width: 40px;
    height: 40px;
    margin: 10px auto;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6600;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================
   LOADING TEXT ANIMATION
========================= */
.loading-text {
    font-size: 14px;
    font-weight: 500;
    color: #777;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}