/* Table of Contents:
1. Import Statements
2. Keyframes and Property Animations    
3. Custom Properties
4. Global Styles
5. Typography Styles
6. Heading and Subheadings
7. Form and Inputs
8. Maps Elements
9. Header and Navbar
10. Section and Container
11. Background and Setting Color
12. Swiper Setting
13. Button and Links
14. Overlay
15. Utility Classes
16. Social and Contact Setting
17. Breadcrumb
18. Spesific Media Queries
19. Card Setting
20. Progress and Rating 
21. Accordion
*/

/* ---------------------------- */
/* Import Statements            */
/* ---------------------------- */
@import url('../css/vendor/fonts.css');
@import url('../css/vendor/bootstrap.min.css');
@import url('../css/vendor/fontawesome.css');
@import url('../css/vendor/brands.css');
@import url('../css/vendor/regular.css');
@import url('../css/vendor/solid.css');
@import url('../css/vendor/swiper-bundle.min.css');
@import url('../css/vendor/rtmicons.css');

/* ---------------------------- */
/* Keyframes and Property Animations            */
/* ---------------------------- */
@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        transform-origin: center;
        border-width: 13px;
    }
}

/* ---------------------------- */
/*  Custom Properties            */
/* ---------------------------- */
:root {
    --primary: #FFFFFF;
    --text-color: #002140;
    --text-color-2: #494F54;
    --background-color: #F1F6FA;
    --accent-color: #0F447A;
    --accent-color-2: rgba(0, 117, 223, 0.2);
    --accent-color-3: #0075DF;
    --accent-color-4: #EAF5FF;
    --font-1: "Be Vietnam Pro", sans-serif;
    --font-2: "Cabin", sans-serif;

}


/* ---------------------------- */
/* Global Styles                */
/* ---------------------------- */
body {
    font-family: var(--font-1);
    color: var(--text-color);
    background-color: var(--primary);
}


/* ---------------------------- */
/* Typography                   */
/* ---------------------------- */
h1 {
    font-size: 66px;
}

h2 {
    font-size: 56px;
}

h3 {
    font-size: 44px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

button,
a {
    font-size: 16px;
    font-family: var(--font-2);
}

p {
    font-size: 16px;
    font-family: var(--font-2);
}

ul {
    list-style: none;
}

.list-circle {
    list-style: disc var(--accent-color);
}

li {
    font-size: 16px;
}

img {
    object-fit: cover;
}

/* ---------------------------- */
/* Headings and Subheadings      */
/* ---------------------------- */
.banner-heading {
    font-size: 5.5rem;
}

.sub-heading {
    color: var(--accent-color);
}

.text-color {
    color: var(--text-color);
}

.text-color-2 {
    color: var(--text-color-2);
}

/* ---------------------------- */
/* Forms and Inputs             */
/* ---------------------------- */
.form-control {
    padding: 15px 24px;
}

.form textarea {
    background-color: transparent;
    border: solid 1px var(--accent-color);
    border-radius: 30px;
    color: var(--text-color);
    outline: none;
    font-family: var(--font-2);
}

.form input,
.form select {
    background-color: transparent;
    border: solid 1px var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    outline: none;
    font-family: var(--font-2);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    box-shadow: none;
    border: solid 1px var(--accent-color-2);
    background-color: transparent;
    color: var(--accent-color);
}

.form input:autofill,
.form input:autofill:focus {
    color: var(--accent-color);
    transition: background-color 5000s ease-in-out;
    -webkit-text-fill-color: var(--accent-color);
    font-family: var(--font-2);
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--accent-color);
    font-family: var(--font-2);
}

.form .form-select {
    color: var(--accent-color);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-xl" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
    background-color: transparent;
    border: 1px solid gray;
}

.form input.form-check-input:checked {
    border: 1px solid blue;
    color: blue;
}

.form .submit_form {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    background-color: var(--accent-color);
    color: white;
    border-radius: 5px;
    border: solid 1px var(--accent-color);
}

.submit_form:hover {
    background-color: transparent;
}

.submit_form-subscribe {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: transparent;
    border-radius: 5px;
}

.submit_form-subscribe:hover {
    background-color: transparent;
    color: white;
    filter: none;
}

/* ---------------------------- */
/* Map Elements       */
/* ---------------------------- */
.maps {
    width: 100%;
    height: 480px;
    transition: filter 0.5s;
    display: block;
}


/* ---------------------------- */
/* Header and Navbar       */
/* ---------------------------- */
#header {
    transition: all 0.5s ease;
}

.logo-container {
    max-width: 180px;
}

.logo-partner {
    filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
    transition-duration: 0.5s;
}

.logo-partner:hover {
    filter: none;
}

.navbar-nav .nav-link:focus {
    color: var(--accent-color);
    text-align: center;
}

.navbar-nav .nav-link.show {
    color: var(--accent-color);
}

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: 1.1rem;
    font-family: var(--font-2);
    padding-block: 1.2rem;
    color: var(--accent-color);
    text-align: center;
}

.nav-link:hover {
    color: var(--accent-color-3);
    text-align: center;
}

.nav-link.active {
    color: var(--accent-color-3) !important;
    text-align: center;
}

.navbar-toggler {
    border: none;
    color: var(--accent-color-2);
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: transparent;
    color: var(--accent-color-2);
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    padding: 0;
    width: 200px;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    padding-block: 0.75rem;
    color: var(--accent-color);
    font-family: var(--font-1);
    font-size: 0.95rem;
    font-weight: 400;
    padding-left: 10px !important;
    text-align: left;
}

.dropdown-item.active {
    color: var(--accent-color-3);
    background-color: transparent;
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: white;
}

.dropdown-item:focus {
    color: var(--accent-color);
}

/* ---------------------------- */
/* Section and Container       */
/* ---------------------------- */
.section {
    padding: 6em 2em 6em 2em;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.r-container {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}


/* ---------------------------- */
/* Background and Setting Color      */
/* ---------------------------- */
.bg-accent-primary {
    background-color: var(--primary);
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.bg-accent-color-2 {
    background-color: var(--accent-color-2);
}

.bg-accent-color-3 {
    background-color: var(--accent-color-3);
}

.bg-accent-color-4 {
    background-color: var(--accent-color-4);
}

.bg-accent {
    background-color: var(--background-color);

}

.bg-text-color {
    background-color: var(--text-color);
}

.bg-text-color-2 {
    background-color: var(--text-color-2);
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.bg-dark-transparent {
    background-color: #232323b7;
}

.accent-color {
    color: var(--accent-color);
}

.accent-color-2 {
    color: var(--accent-color-2);
}

.accent-color-3 {
    color: var(--accent-color-3);
}

.accent {
    color: var(--background-color);
}

.border-accent-2 {
    border-color: var(--accent-color-2) !important;
}

.border-testimonial {
    border-right: 5px solid var(--accent-color-2);
}

.border-bottom-hover:hover {
    border-bottom: 2px solid var(--accent-color);
}

.border-accent-color {
    border-color: var(--text-color);
}

.custom-border {
    border-width: 5px;
    border-style: solid;
    border-color: white;
    border-radius: 20px;
}

.outline {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--accent-color);
}

.text-gray {
    color: grey !important;
}

.text-accent {
    font-size: 18px;
    background: -webkit-linear-gradient(99.79deg, #2F4A9D 0%, #A502A8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------------------------- */
/* Swiper Setting              */
/* ---------------------------- */
.swiperImage {
    overflow: visible;
}

.swiperTestimonials {
    overflow: visible;
}

.swiper-pagination {
    margin-block: 1rem;
    position: relative;
}

.swiper-slide {
    padding: 0.5rem;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: black;
}

/* ---------------------------- */
/* Buttons & Links              */
/* ---------------------------- */
button {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
}

button:hover {
    color: var(--text-color);
}

a {
    text-decoration: none;
}

.w-max-content {
    width: max-content;
}

.read-more {
    color: var(--accent-color);
    transition: all 0.5s;
}

.read-more:hover {
    color: var(--accent-color-3);
}

.btn {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-2);

}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    transition: all 0.5s;
    border: 1px solid transparent;
}

.btn-accent:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-accent-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-accent-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-white-accent {
    background-color: white;
    color: var(--accent-color);
    border: 3px solid transparent;
}


.btn-white-accent:hover {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-white-outline {
    background-color: transparent;
    border-color: white;
    color: white;
    border-width: 3px;
}

.btn-white-outline-hover:hover {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-white-outline:hover {
    background-color: white;
    color: var(--accent-color);
}

.card .link {
    color: var(--accent-color);
    transition: color 0.5s;
}

.card .link:hover {
    color: var(--primary);
}

.link.accent-color {
    color: var(--accent-color);
    transition: color 0.5s;
}

.link.accent-color:hover {
    color: var(--dark-bg);
}

.link {
    color: var(--accent-color);
}

.link:hover {
    color: var(--accent-color-3);
}

.link-white {
    color: white;
}

.link-white:hover {
    color: var(--accent-color);
}

/* ---------------------------- */
/* Overlay                      */
/* ---------------------------- */
.blog-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(179.87deg, rgba(21, 12, 28, 0) 0.12%, rgba(65, 66, 96, 0.86) 107.53%);
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(0deg, rgba(234, 245, 255, 0.95), rgba(234, 245, 255, 0.95));

}

.overlay {
    color: var(--accent-color-2);
    opacity: 0.3;
}

.bg-overlay {
    background: linear-gradient(0deg, rgba(0, 33, 64, 0.67), rgba(0, 33, 64, 0.67));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.bg-overlay-2 {
    background: linear-gradient(0deg, rgba(0, 33, 64, 0.5), rgba(0, 33, 64, 0.5));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.testimonial-overlay {
    background: linear-gradient(0deg, rgba(255, 239, 225, 0.96), rgba(255, 239, 225, 0.96));
    position: absolute;
    width: 75%;
    height: 100%;
    top: 0;
    right: 0;
}

.bg-accent-opacity {
    background: linear-gradient(0deg, rgba(43, 43, 43, 0.86), rgba(43, 43, 43, 0.86));
}

.linear-gradient {
    padding: 14px 42px;
    background: linear-gradient(145deg, #1f2e4e, #1d3365);
    border-radius: 50px;
    width: max-content;
}

.cta-overlay {
    background: linear-gradient(90deg, #0B0C0E 0%, rgba(97, 59, 255, 0.3) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.video-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(4, 56, 63, 0.144) 0%, rgba(4, 56, 63, 0.72) 100%);
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* ---------------------------- */
/* Utility Classes              */
/* ---------------------------- */
.hover-transform:hover {
    transform: translateY(-10px);
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}

.linear-gradient span {
    color: #D4AF37 !important;
}

.ls-2 {
    letter-spacing: 2px;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.fs-very-large {
    font-size: 4.125rem;
}

.fw-black {
    font-weight: 900 !important;
}

.team-detail {
    background-color: var(--background-color);
    color: var(--accent-color);
    transition: all 0.5s;
}

.team-detail:hover {
    background-color: var(--accent-color);
    color: var(--primary);
}

.divider {
    display: flex;
    align-items: center;
}

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid #8692af;
    max-width: 30px;
    min-width: 30px;
}


.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

.image-infinite-bg {
    height: 90vh;
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.bg-attach-fixed {
    background-attachment: fixed;
}

.bg-attach-cover {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.character-img {
    position: relative;
    z-index: 2;
}

.w-70 {
    width: 70%;
}

.stock-img {
    position: relative;
    z-index: 20;
}

.customer-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 19px;
    width: 3rem;
    height: 3rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color-3);
    color: var(--text-color-2);
    border: 2px solid var(--accent-color-3);
    margin-left: -6px;
    overflow: hidden;
}

.testimonial-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 19px;
    width: 5rem;
    height: 5rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    margin-left: -6px;
    overflow: hidden;
}

.bg-box {
    bottom: 0;
    right: 0;
    height: 60%;
    width: 50%;
    border: solid 3px var(--accent-color-2);
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
}

.icon-box-2 {
    display: flex;
    font-size: 24px;
    justify-content: center;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    border-radius: 50%;
    height: 4rem;
    padding: 1px;
    transition: all 0.5s;
}

.author-box {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 15rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -6px;
    overflow: hidden;
}

.post-button {
    background-color: transparent;
    color: var(--accent-color) !important;
    border: none !important;
}

.post-button:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    transform: scale(1.15);
}

.position-xl-absolute {
    position: absolute;
}

.w-60 {
    width: 60% !important;
}

.shadow-double {
    box-shadow: 40px -40px 0px -4px var(--accent-color), -54px 44px 0px -3px var(--text-color-2);
}

.shadow-single-left {
    box-shadow: -54px 44px 0px -3px var(--accent-color);
}

.shadow-single-right {
    box-shadow: 40px -40px 0px -4px var(--accent-color);
}

.shadow-accent-2 {
    -webkit-box-shadow: -90px -23px 0px 0px var(--accent-color);
    -moz-box-shadow: -90px -23px 0px 0px var(--accent-color);
    box-shadow: -90px -23px 0px 0px var(--accent-color);
}

.text-404 {
    font-size: 12rem;
    font-weight: 700;
}

.rounded-end {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.floating-image {
    position: absolute;
}


.floating-banner {
    position: absolute;
    width: 50%;
    padding-right: 5rem;
}

.floating-top {
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;

}

.floating-top-1 {
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
}

.floating-bottom {
    position: absolute;
    top: -6rem;
    left: -5.5em;
}

.floating-bottom-1 {
    position: absolute;
    bottom: 5rem;
    right: 0;
    margin-right: -5rem;
}

.d-inline-block {
    display: inline-block;
}

.position-responsive {
    position: absolute;
}

.list .icon-box {
    width: 4.3rem;
    height: 4.3rem;
}

.list-flush-horizontal {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 1rem;
}

.list-flush-horizontal .list-item:first-child,
.list-flush-horizontal .list-item {
    border-right: 1px solid white;
}

.list-flush-horizontal .list-item:last-child {
    border-left: 1px solid white;
    border-right: none;
}

.list-flush-horizontal .list-item:nth-last-child(2) {
    border: none;
}

.list-group-item {
    background-color: transparent;
    border-radius: 10px;
}

.list-group .list-group-item .link {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    transition: all 0.5s;
}

.list-group .list-group-item .link:hover {
    border-color: var(--accent-color) !important;
    color: white !important;
    background-color: var(--accent-color);
}

.list-group .list-group-item.active {
    background-color: var(--accent-color-2);
    color: var(--accent-color);
}

.list-group .list-group-item.list-group-item-action:hover {
    background-color: var(--accent-color-2);
    color: white;
}

.list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    padding-inline: 0.5rem;
}

.list .link {
    font-weight: 400;
    text-wrap: nowrap;
}

.list li {
    padding: 0;
    font-size: 16px;
    font-family: var(--font-2);
}

.list li .link {
    transition: all 0.5s;
    color: var(--text-color-2);
}

.list li i {
    transition: all 0.5s;
    color: var(--accent-color);
}

.list.text-black i {
    color: #131313;
}

.list li .link:hover,
.list li .link:hover i {
    color: var(--accent-color);
}

/* ---------------------------- */
/* Social and Contact Setting    */
/* ---------------------------- */
.customer-container {
    display: flex;
    flex-direction: row-reverse;
}

.customer-item:nth-child(1) {
    z-index: 6;
}

.customer-item:nth-child(2) {
    z-index: 5;
}

.customer-item:nth-child(3) {
    z-index: 4;
}

.customer-item:nth-child(4) {
    z-index: 3;
}

.subscribe-container {
    box-sizing: border-box;
    margin-bottom: -8em;
}

.contact-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 40px;
    height: 2rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}


.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 19px;
    width: 2rem;
    height: 2rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    border: 1px solid var(--primary);
    background-color: transparent;
}

.social-item-2 {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 19px;
    width: 2rem;
    height: 2rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    background-color: transparent;
}

.social-item-3 {
    border-radius: 0;
    aspect-ratio: 1/1;
    font-size: 19px;
    width: 2rem;
    height: 2rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: var(--accent-color-2);
    border: 1px solid var(--accent-color-2);
}

.social-container.accent .social-item {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.social-container.accent .social-item:hover {
    background-color: var(--accent-color);
    color: white;

}

.social-container.share .social-item {
    background-color: var(--accent-color);
    color: white;
}

.social-container.share .social-item:hover {
    background-color: var(--accent-color);
    color: white;
    border: 1px solid var(--accent-color);
}


.social-container.team .social-item {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 16px;
}


.social-item:hover {
    background-color: var(--primary);
    color: var(--accent-color);
    border: solid 1px var(--primary);
}

.social-item-2:hover {
    background-color: var(--accent-color);
    color: var(--primary);
    border: solid 1px var(--primary);
}

.social-item-3:hover {
    background-color: transparent;
    color: var(--accent-color-2);
    border: solid 1px var(--accent-color-2);
}

.social-container .share-button {
    background-color: var(--accent-color-1);
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.share-button:hover {
    background-color: var(--accent-color-2);
}

/* ---------------------------- */
/* Breadcrumb    */
/* ---------------------------- */
.breadcrumb {
    align-items: center;
    font-family: var(--font-2);
}

.breadcrumb .breadcrumb-item>a {
    color: var(--primary);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--primary);
    font-family: var(--font-2);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--primary);
}

/* ---------------------------- */
/* Specific Media Queries       */
/* ---------------------------- */
.video-e119 {
    width: 60%;
    margin-bottom: -3rem;
    margin-left: -3rem;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.video-container {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 5px solid white;
    border-radius: 10px;
}

.video-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 4rem;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 2rem;
    color: white;
    border: none;
    opacity: 0.7;
}

.video-btn:hover {
    opacity: 1;
    color: white;
}

.request-loader {
    position: relative;
    height: 50px;
    border-radius: 50% !important;
    border: solid 1px var(--accent-color);
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 25px;
    aspect-ratio: 1/1;
}

.request-loader.accent {
    position: relative;
    height: 50px;
    border-radius: 50% !important;
    border: solid 1px var(--primary);
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    font-size: 25px;
    aspect-ratio: 1/1;
}

.request-loader:hover {
    border: solid 2px var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
}

.request-loader.accent:hover {
    border: solid 2px var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.request-loader.accent::after,
.request-loader.accent::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--primary);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}


/* ---------------------------- */
/* card Setting       */
/* ---------------------------- */
.card {
    border: none;
    border-radius: 10px;
    transition: all 0.5s;
    background-color: var(--primary);
}

.card-accent {
    color: var(--accent-color);
    position: relative;
    background-size: cover;
    background-position: center;
    border-width: 1px;
    border-style: solid;
    border-radius: 10px;
    border-image: linear-gradient(to left, #A502A8, #2F4A9D)1;
}

.card-service {
    color: var(--accent-color);
    position: relative;
    background-size: cover;
    background-position: center;
}

.card-service:hover {
    color: var(--text-color);
    border: none;
}

.background-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.card-service:hover .background-hover {
    opacity: 1;
    background: linear-gradient(118.48deg, rgba(47, 74, 157, 0.4) 0%, rgba(165, 2, 168, 0.4) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    border-radius: 10px;

}

.card-service.img-hover:hover {
    background-image: var(--url-image);
}

.image-hover {
    opacity: 0;
    position: absolute;
}

.card-service:hover .image-hover {
    opacity: 100%;
}


.card-testimonial {
    border: none;
    border-radius: 20px;
    transition: all 0.5s;
    background-color: var(--accent-color-3);

}

.card .icon-box.bg-accent-color {
    background-color: var(--accent-color);
    color: var(--accent-color);
}

.card .icon-box.accent-color-2 {
    color: var(--accent-color-2);
    font-size: 4rem;
}

.card:hover .icon-box.accent-color-2 {
    color: var(--accent-color-2);
}

.card:hover {
    transform: translateY(-5px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card-testimonial:hover {
    transform: translateY(-20px);
    box-shadow: 0px 0px 0px 2px var(--accent-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card.card-pricing-hover {
    background-color: transparent;
    font-family: var(--font-2);
    color: var(--text-color);
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.card.card-pricing-hover i {
    color: var(--accent-color-2);
}


.card.card-pricing-hover:hover {
    background-color: transparent;
    box-shadow: 0px 0px 0px 2px var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.05);
}

.card-pricing-hover-middle {
    transform: scale(1.04);
    flex: 1.00;
    background-color: var(--accent-color);
    box-shadow: 0px 0px 0px 2px var(--accent-color);
    color: white;
}


.card.card-pricing-hover:hover .btn-accent {
    background-color: var(--accent-color-2);
    border-color: var(--accent-color-2);
    color: white;
}

.card:hover .icon-box.bg-accent-color {
    background-color: var(--accent-color);
    color: var(--accent-color-2);

}

.card.card-outline-hover {
    box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .13), 0 1px 4px 0 rgba(0, 0, 0, .11);
    color: var(--accent-color);
}

.card.blog {
    background-color: var(--background-color);
}

.card.blog:hover {
    border: solid 1px var(--accent-color-2);
    border-radius: 10px;
}

.card.card-outline-hover:hover {
    border: 1px solid var(--accent-color);
    color: var(--text-color);

}

.card-overlay .card-body {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(4, 56, 63, 0) 0%, rgba(4, 56, 63, 0.72) 100%);
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.5s;
}

.card-overlay:hover .card-body {
    opacity: 1;
    transform: scaleY(1);
}

.card:hover .icon-box.bg-accent-color {
    background-color: white;
    color: var(--accent-color);
}

.card:hover p {
    transition: all 0.5s;
}

.card .link {
    color: var(--accent-color);
}

.card:hover .link {
    color: white;
}

.card.with-border-bottom {
    border-bottom: 5px solid var(--accent-color) !important;
}

.testimonial-container {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    /* box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1); */
}

.testimonial-container:hover {
    box-shadow: 0px 0px 0px 1px var(--accent-color);
    transition: all 0.5s;
}

.services-container {
    background-color: transparent;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
}

/* ---------------------------- */
/* Progress and Rating       */
/* ---------------------------- */
.r-progress {
    --value: 17;
    --progress-color: var(--accent-color);
    --secondary-progress-color: var(--accent-color-3);
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 12px;
    background-color: var(--secondary-progress-color);
    display: flex;
    border-radius: 10px;
    /* overflow: hidden; */
}

.r-progress-bar .progress-value {
    height: 100%;
    width: calc(var(--progress) * 1%);
    background-color: var(--progress-color);
    position: relative;
    border-radius: 10px;
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    left: calc((var(--progress) * 1%));
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    font-size: 18px;
    line-height: 1.2;
    /* font-weight: 700; */
    font-family: var(--font-1);
    bottom: calc(100% + 0.5rem);
}

.rating {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.rating li {
    color: #f1c644;
}

.rating li.inactive {
    color: #d9d9d9;
}

.glass-effect {
    background: #a55950d5;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

/* ---------------------------- */
/* Accordion                    */
/* ---------------------------- */
.accordion .accordion-item {
    background-color: transparent;
    border: none;
    color: var(--text-color-2);
    outline: none;
    border-radius: 20px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-button {
    background-color: var(--primary);
    border: none;
    color: var(--text-color-2);
    outline: none;
    border-radius: 20px !important;
    font-weight: 500;
    font-family: var(--font-1);
    font-size: 18px;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding-block: 1.2rem;
    color: var(--text-color);
}

.accordion .accordion-button.accent {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}


.accordion-button::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23002140" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708"/></svg>');
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23002140" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708"/></svg>');
}

.accordion .accordion-button:not(.collapsed) {
    color: var(--text-color);
    font-weight: 500;
    background-color: var(--primary);
    border: none;
    border: none;
    border-left: solid 5px var(--accent-color);
    color: var(--text-color);
    outline: none;
    border-radius: 20px !important;
}


@media only screen and (max-width:993px) {

    /* ---------------------------- */
    /* Typography                   */
    /* ---------------------------- */
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 14px;
    }

    span,
    p,
    button,
    a {
        font-size: 13px;
    }

    /* ---------------------------- */
    /* Button and Links Setting     */
    /* ---------------------------- */
    .btn {
        font-size: 13px;
        width: 100%;
    }

    /* ---------------------------- */
    /* Header and Navigation Setting  */
    /* ---------------------------- */
    .logo-container {
        max-width: 100px;
    }

    .nav-link {
        padding-block: 0.2rem;
        text-align: center;
    }

    #header {
        background: #a55950d5;
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    /* ---------------------------- */
    /* Utility Classes              */
    /* ---------------------------- */
    .w-max-content {
        width: 100%;
    }

    .section {
        padding: 4em 2em 4em 2em;
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .text-404 {
        font-size: 8rem;
        font-weight: 700;
    }

    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }


    .border-custom {
        border-width: 0px 0px 1px 0px;
    }

    .outer-margin {
        margin-right: 0;
    }

    .banner-image {
        margin: 0;
        transform: none;
    }

    .testimonial-img {
        margin: 0;
        margin-bottom: 1rem;
    }

    .dropdown-menu {
        width: 100%;
        box-shadow: none;
    }

    .video-e119 {
        width: 85%;
        margin-left: -1.5rem;
    }

    .dropdown-item {
        padding-block: 0.35rem;
    }

    .floating-image {
        position: inherit;
    }

    .floating-price {
        top: -2rem;
        right: -4.8rem;
    }

    .floating-banner {
        position: inherit;
        padding-right: 0;
        margin-bottom: 2rem;
        width: 100%;
    }

    .floating-top {
        position: absolute;
        top: -0.6rem;
        left: 0;

    }

    .floating-top-1 {
        position: absolute;
        top: -0.6rem;
        left: -0.2rem;
    }

    .floating-bottom {
        position: initial;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    .floating-bottom-1 {
        position: initial;
        bottom: 0;
        right: 0;
        left: 0;
        margin-right: 0;
    }

    .border-testimonial {
        border-right: none;
    }

    .service-container {
        background-color: transparent;
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .appointment-box {
        top: -2rem;
        bottom: 0;
        left: 0;
        right: 0;
        height: 8rem;
    }

    .w-md-70 {
        width: 70%;
    }

    .w-md-60 {
        width: 60%;
    }

    .position-responsive {
        position: relative;
    }



    .form-appointment-container {
        position: relative;
        transform: translateY(0);
    }

    .list-flush-horizontal {
        flex-direction: column;
    }

    .list-flush-horizontal .list-item:first-child,
    .list-flush-horizontal .list-item {
        border-right: none;
        border-bottom: 1px solid white;
    }

    .list-flush-horizontal .list-item:last-child {
        border-left: none;
        border-bottom: none;
        border-top: 1px solid white;
    }

    .position-xl-absolute {
        position: static;
    }

    .banner-heading {
        font-size: 2.5rem;
    }


}

a.navbar-brand img {
    height: auto;
    width: 100px !important;
}

.cm-footer-logo img {
    height: auto;
    width: 150px !important;
}





/* Premium Color Variables */
:root {
  --bg-dark: #0A111F;      /* Deep Midnight Navy */
  --card-bg: #121B2E;      /* Rich Secondary Blue */
  --gold-primary: #D4AF37; /* Metallic Gold */
  --gold-glow: #F3E5AB;    /* Soft Champagne */
  --text-main: #FFFFFF;
  --text-muted: #8E9BAE;
}

.vawealth-why-choose-us {
  background-color: var(--bg-dark);
  color: var(--text-main);
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header styling */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.tagline {
  color: var(--gold-primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 300; /* Ultra clean luxurious weight */
  letter-spacing: 1px;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 20px auto 0;
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Luxurious Card Styling */
.luxury-card {
  background: linear-gradient(145deg, var(--card-bg), #0f1626);
  border: 1px solid rgba(212, 175, 55, 0.1); /* Subtle gold border tint */
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

/* Hover Effects */
.luxury-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              0 0 25px rgba(212, 175, 55, 0.05);
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  color: var(--gold-primary);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.luxury-card:hover .icon-wrapper {
  transform: scale(1.1);
}

.luxury-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.luxury-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* --- Smooth Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Class to trigger when element enters viewport */
.fade-up.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delays for Grid Cards */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title { font-size: 32px; }
  .grid-container { grid-template-columns: 1fr; }
}


/* Color Palette Extracted From Screenshot */
:root {
  --vw-bg-light: #EBF3FA;    /* Exact light background tint from screenshot */
  --vw-navy-dark: #0C2B52;   /* Main button & header deep navy text */
  --vw-navy-bright: #0B3C73; /* Top header background & hover state accent */
  --vw-gold: #B38F35;        /* Sub-accent gold text from logo styling */
  --vw-text-gray: #4A5568;   /* Clean readable body text color */
}

.vawealth-investment-process {
  background-color: var(--vw-bg-light);
  color: var(--vw-navy-dark);
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.process-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Elements */
.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-tagline {
  color: var(--vw-gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.process-title {
  font-size: 40px;
  color: var(--vw-navy-dark);
  font-weight: 700;
}

.accent-line {
  width: 50px;
  height: 3px;
  background-color: var(--vw-navy-bright);
  margin: 18px auto 0;
  border-radius: 2px;
}

/* Timeline Layout */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  position: relative;
}

/* Card Step Component */
.process-step {
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(12, 43, 82, 0.04);
  border: 1px solid rgba(11, 60, 115, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(12, 43, 82, 0.08);
  border-color: rgba(11, 60, 115, 0.15);
}

/* Number Circle Container */
.step-number-box {
  width: 60px;
  height: 60px;
  background-color: var(--vw-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background-color 0.3s ease;
}

.step-number {
  color: var(--vw-navy-bright);
  font-weight: 700;
  font-size: 20px;
}

.process-step:hover .step-number-box {
  background-color: var(--vw-navy-bright);
}

.process-step:hover .step-number {
  color: #FFFFFF;
}

/* Typography Inside Cards */
.step-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--vw-navy-dark);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--vw-text-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* --- Entrance Reveal Effect --- */
.fade-up {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.appear {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Incremental Staggering */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }

@media (max-width: 768px) {
  .process-timeline { grid-template-columns: 1fr; gap: 25px; }
  .process-title { font-size: 30px; }
  .linear-gradient {
    padding: 1px 10px !important;
    background: linear-gradient(145deg, #1f2e4e, #1d3365);
    border-radius: 50px;
    width: 100% !important;
    text-align: center !important;
}
h2.fw-semibold {
    font-size: 22px !important;
}
    .section {
        padding: 4em 10px 4em 10px !important;
    }

.vawealth-contact-section {
    background-color: #FFFFFF;
    padding: 100px 6px !important;
    font-family: 'Inter', sans-serif;
}

    .luxury-form {
        padding: 30px 10px !important;
    }

img.img-fluid.w-100.position-absolute {
    padding-left: 10px !important;
}

.floating-bottom-1 {
    padding-left: 9px !important;
}
}

/* Color System Integration */
:root {
  --vw-bg-light: #EBF3FA;    
  --vw-navy-dark: #0C2B52;   
  --vw-navy-bright: #0B3C73; 
  --vw-gold: #B38F35;        
  --vw-text-gray: #4A5568;   
  --form-input-border: #D2E3F0;
}

.vawealth-contact-section {
  background-color: #FFFFFF; /* Pure background to give breathing room from process section */
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

/* --- Left Side Typography & Style --- */
.contact-tagline {
  color: var(--vw-gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.contact-title {
  font-size: 38px;
  color: var(--vw-navy-dark);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.contact-description {
  color: var(--vw-text-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Contact Info Items */
.info-items-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 46px;
  height: 46px;
  background-color: var(--vw-bg-light);
  color: var(--vw-navy-bright);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 22px;
  height: 22px;
}

.info-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--vw-navy-dark);
  margin-bottom: 4px;
}

.info-text p {
  color: var(--vw-text-gray);
  font-size: 14px;
  line-height: 1.5;
}

/* --- Right Side Luxury Form --- */
.luxury-form {
  background-color: var(--vw-bg-light);
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(12, 43, 82, 0.03);
  border: 1px solid rgba(11, 60, 115, 0.05);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
}

.luxury-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--vw-navy-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--form-input-border);
  background-color: #FFFFFF;
  color: var(--vw-navy-dark);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
  outline: none;
  border-color: var(--vw-navy-bright);
  box-shadow: 0 0 0 3px rgba(11, 60, 115, 0.1);
}

/* Premium Navigation Style Button */
.form-submit-btn {
  background-color: var(--vw-navy-dark);
  color: #FFFFFF;
  border: none;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px; /* pill shape matches header buttons */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.form-submit-btn:hover {
  background-color: var(--vw-navy-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 60, 115, 0.2);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .luxury-form {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-title {
    font-size: 30px;
  }
  .linear-gradient {
    padding: 1px 10px;
    background: linear-gradient(145deg, #1f2e4e, #1d3365);
    border-radius: 50px;
    width: 100%;
    text-align: center;
}
}

/* Color Palette Sync */
:root {
  --vw-bg-light: #EBF3FA;    
  --vw-navy-dark: #0C2B52;   
  --vw-navy-bright: #0B3C73; 
  --vw-gold: #B38F35;        
  --vw-text-gray: #4A5568;   
  --google-yellow: #F4B400;  /* Google standard review star color */
  --review-text-color: #3C4043;
}

.vawealth-reviews-section {
  background-color: #FFFFFF;
  padding: 100px 20px;
  font-family: 'Roboto', 'Inter', sans-serif;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 60px;
  align-items: start;
}

/* --- Left Column Sidebar Layout --- */
.reviews-summary-side {
  position: sticky;
  top: 40px;
  background-color: var(--vw-bg-light);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(11, 60, 115, 0.08);
  text-align: center;
}

.google-brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  color: var(--vw-text-gray);
  font-size: 14px;
}

.google-g-icon {
  width: 18px;
  height: 18px;
}

.summary-rating-title {
  font-size: 24px;
  color: var(--vw-navy-dark);
  font-weight: 700;
  margin: 15px 0 5px;
}

.rating-big-number {
  font-size: 64px;
  font-weight: 700;
  color: var(--vw-navy-dark);
  line-height: 1;
  margin-bottom: 10px;
}

.star-rating-row {
  color: var(--google-yellow);
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.total-reviews-count {
  font-size: 13px;
  color: var(--vw-text-gray);
  margin-bottom: 30px;
}

/* Review Bar Bars Layout */
.review-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 12px;
  color: var(--vw-navy-dark);
  width: 40px;
  text-align: left;
  font-weight: 500;
}

.bar-bg {
  flex-grow: 1;
  height: 8px;
  background-color: #D2E3F0;
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background-color: var(--google-yellow);
  border-radius: 4px;
}

/* --- Right Column Reviews Grid Feed --- */
.reviews-feed-side {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
}

.google-review-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.google-review-card:hover {
  border-color: rgba(11, 60, 115, 0.25);
  box-shadow: 0 10px 25px rgba(12, 43, 82, 0.06);
  transform: translateY(-4px);
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
  width: 100%;
}

/* Dynamic Avatar Background System */
.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.avatar-r { background-color: #EA4335; }
.avatar-p { background-color: #34A853; }
.avatar-a { background-color: #4285F4; }
.avatar-n { background-color: #F4B400; }
.avatar-s { background-color: #AB47BC; }
.avatar-an { background-color: #00ACC1; }

.reviewer-details h4 {
  font-size: 15px;
  font-weight: 600;
  color: #202124;
  margin: 0 0 3px 0;
}

.review-sub-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-stars {
  color: var(--google-yellow);
  font-size: 14px;
  letter-spacing: 1px;
}

.review-date {
  font-size: 11px;
  color: #70757A;
}

.card-google-logo {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.8;
}

.review-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--review-text-color);
  margin: 0;
  font-style: italic;
}

/* --- Responsive Layout Configurations --- */
@media (max-width: 992px) {
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reviews-summary-side {
    position: relative;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 576px) {
  .reviews-feed-side {
    grid-template-columns: 1fr;
  }
}
.cm-testimonials-sections {
    padding: 6em 2em 2em 2em !important;
}


/* Color Palette Sync */
:root {
  --vw-bg-light: #EBF3FA;    
  --vw-navy-dark: #0C2B52;   
  --vw-navy-bright: #0B3C73; 
  --vw-gold: #B38F35;        
  --vw-text-gray: #4A5568;   
}

.vawealth-counter-section {
  background-color: var(--vw-bg-light);
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.counter-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.counter-header {
  text-align: center;
  margin-bottom: 60px;
}

.counter-tagline {
  color: var(--vw-gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.counter-title {
  font-size: 40px;
  color: var(--vw-navy-dark);
  font-weight: 700;
}

.accent-line {
  width: 50px;
  height: 3px;
  background-color: var(--vw-navy-bright);
  margin: 18px auto 0;
  border-radius: 2px;
}

/* Counter Grid Styling */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.counter-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(11, 60, 115, 0.05);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(12, 43, 82, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 43, 82, 0.08);
  border-color: rgba(11, 60, 115, 0.15);
}

/* Icon Container */
.counter-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--vw-bg-light);
  color: var(--vw-navy-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.counter-icon-box svg {
  width: 28px;
  height: 28px;
}

.counter-card:hover .counter-icon-box {
  background-color: var(--vw-navy-bright);
  color: #FFFFFF;
  transform: scale(1.05);
}

/* Numbers & Text System */
.counter-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--vw-navy-dark);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.counter-label {
  color: var(--vw-text-gray);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* --- Entrance Reveal Effects --- */
.fade-up {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.appear {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Incremental Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive break points */
@media (max-width: 768px) {
  .counter-title { font-size: 32px; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
  .counter-grid { grid-template-columns: 1fr; }
}

.floating-contact{
    position:fixed;
    left:20px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:99999;
}

.float-btn{
    width:58px;
    height:58px;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:24px;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    transition:.35s ease;
    overflow:hidden;
    white-space:nowrap;
}

.float-btn span{
    max-width:0;
    overflow:hidden;
    opacity:0;
    transition:.35s ease;
    font-size:15px;
    font-weight:600;
    margin-left:10px;
}

.float-btn:hover{
    width:180px;
    justify-content:flex-start;
    padding-left:18px;
}

.float-btn:hover span{
    max-width:120px;
    opacity:1;
}

.whatsapp{
    background:#25D366;
}

.email{
    background:#0F4C81;
}

.call{
    background:#D4AF37;
    color:#fff;
}

.float-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

a.float-btn i {
    margin-left: 10px !important;
}

/* Mobile */
@media(max-width:768px){

    .floating-contact{
        right:15px;
        bottom:15px;
    }

    .float-btn{
        width:52px;
        height:52px;
        font-size:21px;
    }

    .float-btn:hover{
        width:52px;
        padding-left:0;
        justify-content:center;
    }

    .float-btn:hover span{
        display:none;
    }

}



/* --- Premium Luxury Design System Variables --- */
    :root {
      --vw-bg-light: #EBF3FA;    
      --vw-navy-dark: #0C2B52;   
      --vw-navy-bright: #0B3C73; 
      --vw-gold: #B38F35;        
      --vw-text-gray: #4A5568;   
      --luxury-gold-glow: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38F35 50%, #FBF5B7 75%, #AA771C 100%);
    }

    body {
      margin: 0;
      padding: 0;
      background-color: #F8FAFC;
      font-family: 'Inter', sans-serif;
    }

    .luxury-calculator-section {
      padding: 80px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      /* Smooth Entrance Load Animation */
      animation: luxuryFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes luxuryFadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .calc-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      background-color: #FFFFFF;
      border-radius: 32px;
      box-shadow: 0 30px 70px rgba(12, 43, 82, 0.08);
      border: 1px solid rgba(11, 60, 115, 0.06);
      overflow: hidden;
    }

    /* --- Left Controls Side --- */
    .calc-controls-side {
      padding: 60px;
    }

    .calc-tagline {
      color: var(--vw-gold);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 4px;
      font-weight: 700;
      display: block;
      margin-bottom: 10px;
    }

    .calc-title {
      font-size: 36px;
      color: var(--vw-navy-dark);
      font-weight: 800;
      margin: 0 0 12px 0;
    }

    .calc-subtitle {
      color: var(--vw-text-gray);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    /* Individual Input Cards */
    .input-card {
      background-color: var(--vw-bg-light);
      padding: 24px;
      border-radius: 16px;
      margin-bottom: 24px;
      border: 1px solid rgba(11, 60, 115, 0.03);
      transition: border-color 0.3s ease;
    }

    .input-card:focus-within {
      border-color: var(--vw-navy-bright);
    }

    .input-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }

    .input-header label {
      font-size: 14px;
      font-weight: 700;
      color: var(--vw-navy-dark);
    }

    .input-value-wrapper {
      background: #FFFFFF;
      border-radius: 8px;
      padding: 6px 12px;
      display: flex;
      align-items: center;
      border: 1px solid #D2E3F0;
    }

    .input-value-wrapper input {
      border: none;
      font-size: 16px;
      font-weight: 700;
      color: var(--vw-navy-dark);
      width: 90px;
      text-align: right;
      outline: none;
    }

    /* Remove default input arrows */
    .input-value-wrapper input::-webkit-outer-spin-button,
    .input-value-wrapper input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    .input-value-wrapper span {
      font-size: 14px;
      font-weight: 600;
      color: var(--vw-text-gray);
      margin: 0 4px;
    }

    /* Luxury Sliders Chrome & Safari */
    .luxury-slider {
      -webkit-appearance: none;
      width: 100%;
      height: 6px;
      border-radius: 3px;
      background: #D2E3F0;
      outline: none;
    }

    .luxury-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--vw-navy-dark);
      border: 2px solid #FFFFFF;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(12, 43, 82, 0.3);
      transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .luxury-slider::-webkit-slider-thumb:hover {
      transform: scale(1.2);
      background: var(--vw-navy-bright);
    }

    .slider-limits {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: var(--vw-text-gray);
      margin-top: 8px;
      font-weight: 500;
    }

    /* --- Right Output Dashboard Side --- */
    .calc-display-side {
      background: linear-gradient(135deg, #0C2B52 0%, #061831 100%);
      padding: 60px;
      display: flex;
      align-items: center;
      position: relative;
    }

    .calc-display-side::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 250px;
      height: 250px;
      background: var(--vw-gold);
      filter: blur(120px);
      opacity: 0.15;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .dashboard-card {
      width: 100%;
      color: #FFFFFF;
      z-index: 1;
    }

    .live-indicator {
      font-size: 11px;
      font-weight: 700;
      background: rgba(52, 168, 83, 0.15);
      color: #4AF27A;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 1.5px;
      display: inline-block;
      margin-bottom: 15px;
    }

    .dashboard-header h3 {
      font-size: 22px;
      font-weight: 300;
      margin: 0 0 40px 0;
      letter-spacing: 0.5px;
    }

    .main-wealth-display {
      margin-bottom: 40px;
    }

    .display-label {
      font-size: 13px;
      color: #8E9BAE;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      display: block;
      margin-bottom: 8px;
    }

    .total-wealth-amount {
      font-size: 48px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: linear-gradient(120deg, #FFFFFF, #EBF3FA);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Metrics Split Grid Boxes */
    .metrics-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }

    .metric-box {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      padding: 20px;
      border-radius: 12px;
    }

    .metric-box.highlighted {
      border-color: rgba(179, 143, 53, 0.3);
      background: rgba(179, 143, 53, 0.03);
    }

    .box-label {
      font-size: 12px;
      color: #8E9BAE;
      display: block;
      margin-bottom: 6px;
    }

    .box-number {
      font-size: 18px;
      font-weight: 700;
    }

    .metric-box.highlighted .box-number {
      color: #FCF6BA;
    }

    /* Progress Visual Track Balance Split */
    .wealth-progress-container {
      margin-bottom: 45px;
    }

    .progress-bar-labels {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: #8E9BAE;
      margin-bottom: 8px;
    }

    .progress-track {
      width: 100%;
      height: 6px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 3px;
      overflow: hidden;
      display: flex;
    }

    .progress-fill-invested {
      height: 100%;
      background-color: #FFFFFF;
      width: 0%; /* Adjusted via JS dynamically */
      transition: width 0.5s cubic-bezier(0.1, 1, 0.1, 1);
    }

    /* Action CTA Button Control */
    .invest-now-btn {
      width: 100%;
      background: var(--luxury-gold-glow);
      color: #0C2B52;
      border: none;
      padding: 16px;
      border-radius: 30px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 10px 25px rgba(179, 143, 53, 0.25);
    }

    .invest-now-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 30px rgba(179, 143, 53, 0.4);
    }

    .invest-now-btn svg {
      width: 16px;
      height: 16px;
    }

    /* Responsive Grid Breakpoints */
    @media (max-width: 992px) {
      .calc-container { grid-template-columns: 1fr; gap: 0; }
      .calc-controls-side, .calc-display-side { padding: 40px; }
    }
    
    .section.cm-about-us.pt-0 {
    margin-top: 85px;
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all .3s ease;
        margin-top: 0;
    }

    .navbar .dropdown-toggle::after {
        transition: .3s;
    }

    .navbar .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }

}

.key-benefits {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}

.key-benefits h2 {
    font-size: 32px;
    color: #0b3d91;
    margin-bottom: 20px;
}

.key-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-benefits ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.key-benefits ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0b3d91;
    font-size: 18px;
    font-weight: bold;
}


.mf-services{
    padding:50px 0;
    background:#f7f9fc;
    overflow:hidden;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading span{
    color:#0A4D9C;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.section-heading h2{
    font-size:42px;
    margin:15px 0;
    color:#18233f;
}

.section-heading p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-box{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    position:relative;
    overflow:hidden;
    transition:.45s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    animation:fadeUp .8s ease both;
}

.service-box::before{
    content:'';
    position:absolute;
    width:0;
    height:100%;
    background:linear-gradient(180deg,#0A4D9C,#0F7BFF);
    left:0;
    top:0;
    transition:.45s;
    z-index:0;
}

.service-box:hover::before{
    width:8px;
}

.service-box:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.service-icon{
    width:75px;
    height:75px;
    border-radius:18px;
    background:linear-gradient(135deg,#0A4D9C,#2D9CFF);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    color:#fff;
    font-size:30px;
    transition:.4s;
}

.service-box:hover .service-icon{
    transform:rotateY(180deg) scale(1.08);
}

.service-box h3{
    font-size:23px;
    color:#1d2848;
    margin-bottom:15px;
    position:relative;
}

.service-box p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    position:relative;
}

.service-box:hover h3{
    color:#0A4D9C;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(50px);
}

to{
opacity:1;
transform:translateY(0);
}

}

@media(max-width:768px){

.section-heading h2{
font-size:32px;
}

.service-box{
padding:30px 25px;
}

}

.faq-section{
    padding:100px 0;
    background:#f8fbff;
}

.faq-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:start;
    margin-top:60px;
}

.faq-item{
    background:#fff;
    padding:30px;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-left:5px solid #0A4D9C;
    transition:.35s;
}

.faq-item:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.faq-item h4{
    font-size:22px;
    margin-bottom:12px;
    color:#0A4D9C;
}

.faq-item p{
    color:#666;
    line-height:1.8;
}

.cta-box{
    background:linear-gradient(135deg,#0A4D9C,#1268D8);
    color:#fff;
    padding:45px 35px;
    border-radius:20px;
    position:sticky;
    top:30px;
    box-shadow:0 20px 50px rgba(10,77,156,.35);
}

.cta-box .tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.15);
    border-radius:30px;
    font-size:13px;
    margin-bottom:18px;
}

.cta-box h3{
    font-size:32px;
    margin-bottom:20px;
    color:#fff;
}

.cta-box p{
    line-height:1.8;
    margin-bottom:18px;
    color:rgba(255,255,255,.9);
}

.cta-btn{
    display:inline-block;
    margin-top:15px;
    background:#fff;
    color:#0A4D9C;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.cta-btn:hover{
    transform:translateY(-4px);
    background:#f2f2f2;
}

@media(max-width:991px){

.faq-wrapper{
grid-template-columns:1fr;
}

.cta-box{
position:relative;
top:0;
}

}